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] + + +
+

+ + Logo + + +

+ + Circle + +

+ +

+ 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 @@ +  (22.6ms) SELECT sqlite_version(*) +  (178.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY) +  (103.3ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to CreateMeets (20200423152906) +  (0.1ms) begin transaction +  (2.7ms) CREATE 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) + primary::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200423152906"]] +  (183.9ms) commit transaction +Migrating to CreateMeetings (20200423153710) +  (3.6ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to CreateMeetings (20200423153710) +  (0.1ms) begin transaction +  (1.4ms) CREATE 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") +) +  (0.2ms) CREATE INDEX "index_meetings_on_meet_id" ON "meetings" ("meet_id") + primary::SchemaMigration Create (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200423153710"]] +  (96.9ms) commit transaction + ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) begin transaction + ActiveRecord::InternalMetadata Create (1.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2020-04-23 15:41:09.732847"], ["updated_at", "2020-04-23 15:41:09.732847"]] +  (86.0ms) commit transaction +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (4.5ms) SELECT sqlite_version(*) +  (3.4ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to CreateUsers (20200423170104) +  (0.1ms) begin transaction +  (4.9ms) CREATE 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") +) +  (0.2ms) CREATE INDEX "index_users_on_meeting_id" ON "users" ("meeting_id") + primary::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200423170104"]] +  (134.8ms) commit transaction + ActiveRecord::InternalMetadata Load (0.8ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.2ms) SELECT sqlite_version(*) +  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (3.6ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]] +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]] +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]] +  (0.2ms) SELECT sqlite_version(*) +  (0.1ms) SELECT sqlite_version(*) +  (0.3ms) DROP TABLE IF EXISTS "meetings" +  (105.6ms) CREATE 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) +  (83.7ms) CREATE INDEX "index_meetings_on_meet_id" ON "meetings" ("meet_id") +  (0.7ms) DROP TABLE IF EXISTS "meets" +  (96.7ms) CREATE 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) +  (1.1ms) DROP TABLE IF EXISTS "users" +  (88.3ms) CREATE 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) +  (102.1ms) CREATE INDEX "index_users_on_meeting_id" ON "users" ("meeting_id") +  (0.1ms) begin transaction +  (0.2ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.1ms) PRAGMA foreign_keys = OFF +  (0.6ms) CREATE 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) +  (0.3ms) CREATE INDEX "tindex_ameetings_on_meet_id" ON "ameetings" ("meet_id") +  (0.1ms) INSERT 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" +  (2.3ms) DROP TABLE "meetings" +  (0.3ms) CREATE 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") +) +  (0.2ms) CREATE INDEX "index_meetings_on_meet_id" ON "meetings" ("meet_id") +  (0.1ms) INSERT 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" +  (0.2ms) DROP TABLE "ameetings" +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (154.0ms) commit transaction +  (0.1ms) begin transaction +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.1ms) PRAGMA foreign_keys = OFF +  (0.7ms) CREATE 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) +  (0.4ms) CREATE INDEX "tindex_ausers_on_meeting_id" ON "ausers" ("meeting_id") +  (0.2ms) INSERT 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" +  (3.0ms) DROP TABLE "users" +  (0.5ms) CREATE 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") +) +  (0.4ms) CREATE INDEX "index_users_on_meeting_id" ON "users" ("meeting_id") +  (0.2ms) INSERT 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" +  (0.3ms) DROP TABLE "ausers" +  (0.3ms) PRAGMA defer_foreign_keys = 0 +  (0.3ms) PRAGMA foreign_keys = 1 +  (86.8ms) commit transaction +  (87.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY) +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (102.8ms) INSERT INTO "schema_migrations" (version) VALUES (20200423170104) +  (92.3ms) INSERT INTO "schema_migrations" (version) VALUES +(20200423152906), +(20200423153710); + + +  (89.6ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL) + ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) begin transaction + ActiveRecord::InternalMetadata Create (1.8ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2020-04-23 17:01:54.579741"], ["updated_at", "2020-04-23 17:01:54.579741"]] +  (163.3ms) commit transaction + ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) begin transaction + ActiveRecord::InternalMetadata Update (2.9ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2020-04-23 17:01:54.756628"], ["key", "environment"]] +  (104.1ms) commit transaction + ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "schema_sha1"], ["LIMIT", 1]] +  (0.1ms) begin transaction + ActiveRecord::InternalMetadata Create (1.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "schema_sha1"], ["value", "046fd482539f9ae8f1a51fb656e675fe897af175"], ["created_at", "2020-04-23 17:01:54.877702"], ["updated_at", "2020-04-23 17:01:54.877702"]] +  (105.0ms) commit transaction +  (3.3ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to AddCreatedByToMeets (20200423170909) +  (0.1ms) begin transaction +  (5.3ms) ALTER TABLE "meets" ADD "created_by" varchar + primary::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200423170909"]] +  (140.1ms) commit transaction + ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (1.5ms) SELECT sqlite_version(*) +  (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Started GET "/" for 127.0.0.1 at 2020-04-23 16:38:59 -0300 +  (27.7ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +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 + Meet Load (1.0ms) SELECT "meets".* FROM "meets" + ↳ app/controllers/concerns/response.rb:3:in `json_response' +Completed 200 OK in 127ms (Views: 38.2ms | ActiveRecord: 2.9ms | Allocations: 3039) + + +  (3.7ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to AddUserToMeets (20200423194413) +  (0.1ms) begin transaction +  (0.2ms) ALTER TABLE "meets" ADD "user_id" integer NOT NULL +  (0.1ms) rollback transaction +  (4.7ms) SELECT sqlite_version(*) +  (0.2ms) SELECT COUNT(*) FROM "meets" + User Load (0.4ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 11]] +  (0.4ms) SELECT COUNT(*) FROM "meets" +  (4.8ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to AddUserToMeets (20200423194413) +  (0.1ms) begin transaction +  (5.2ms) ALTER TABLE "meets" ADD "user_id" integer +  (0.3ms) CREATE INDEX "index_meets_on_user_id" ON "meets" ("user_id") +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.1ms) PRAGMA foreign_keys = OFF +  (0.2ms) CREATE 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) +  (0.2ms) CREATE INDEX "tindex_ameets_on_user_id" ON "ameets" ("user_id") +  (0.2ms) INSERT 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" +  (0.4ms) DROP TABLE "meets" +  (0.2ms) CREATE 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") +) +  (0.2ms) CREATE INDEX "index_meets_on_user_id" ON "meets" ("user_id") +  (0.1ms) INSERT 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" +  (1.2ms) DROP TABLE "ameets" +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 + primary::SchemaMigration Create (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200423194413"]] +  (108.1ms) commit transaction + ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.2ms) SELECT sqlite_version(*) +  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (3.9ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) SELECT sqlite_version(*) +  (5.4ms) SELECT sqlite_version(*) + User Load (0.3ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 11]] +  (0.4ms) SELECT COUNT(*) FROM "users" + User Load (0.3ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 11]] +  (3.7ms) SELECT sqlite_version(*) +  (0.1ms) begin transaction + User Create (0.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) rollback transaction +  (3.6ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to ChangeMeetingIdToNotNullInUsers (20200423200426) +  (0.1ms) begin transaction +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.1ms) PRAGMA foreign_keys = OFF +  (0.2ms) CREATE 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) +  (0.2ms) CREATE INDEX "tindex_ausers_on_meeting_id" ON "ausers" ("meeting_id") +  (0.1ms) INSERT 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" +  (5.0ms) DROP TABLE "users" +  (0.3ms) CREATE 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") +) +  (0.2ms) CREATE INDEX "index_users_on_meeting_id" ON "users" ("meeting_id") +  (0.1ms) INSERT 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" +  (0.3ms) DROP TABLE "ausers" +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.0ms) PRAGMA foreign_keys = 1 + primary::SchemaMigration Create (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200423200426"]] +  (176.2ms) commit transaction + ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (3.9ms) SELECT sqlite_version(*) +  (0.1ms) begin transaction + User Create (0.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) rollback transaction +  (3.6ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC + ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (3.7ms) SELECT sqlite_version(*) +  (145.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY) +  (89.0ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to CreateMeets (20200423152906) +  (0.1ms) begin transaction +  (1.5ms) CREATE 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) + primary::SchemaMigration Create (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200423152906"]] +  (104.3ms) commit transaction +Migrating to CreateMeetings (20200423153710) +  (0.2ms) begin transaction +  (3.2ms) CREATE 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") +) +  (0.5ms) CREATE INDEX "index_meetings_on_meet_id" ON "meetings" ("meet_id") + primary::SchemaMigration Create (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200423153710"]] +  (93.1ms) commit transaction +Migrating to CreateUsers (20200423170104) +  (0.2ms) begin transaction +  (3.4ms) CREATE 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") +) +  (0.6ms) CREATE INDEX "index_users_on_meeting_id" ON "users" ("meeting_id") + primary::SchemaMigration Create (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200423170104"]] +  (128.4ms) commit transaction +Migrating to AddCreatedByToMeets (20200423170909) +  (0.2ms) begin transaction +  (3.8ms) ALTER TABLE "meets" ADD "created_by" varchar + primary::SchemaMigration Create (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200423170909"]] +  (92.3ms) commit transaction + ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) begin transaction + ActiveRecord::InternalMetadata Create (1.7ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2020-04-23 20:14:52.520362"], ["updated_at", "2020-04-23 20:14:52.520362"]] +  (86.0ms) commit transaction +  (0.2ms) SELECT sqlite_version(*) +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (3.6ms) SELECT sqlite_version(*) +  (0.1ms) begin transaction + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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"]] +  (101.0ms) commit transaction +  (0.4ms) SELECT COUNT(*) FROM "users" + User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."created_by" = ? LIMIT ? [["created_by", "1"], ["LIMIT", 11]] +  (13.2ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to AddPictureToUsers (20200423203320) +  (0.2ms) begin transaction +  (149.7ms) ALTER TABLE "users" ADD "picture" varchar + primary::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200423203320"]] +  (195.4ms) commit transaction + ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Started GET "/meets" for ::1 at 2020-04-23 17:44:58 -0300 +  (3.8ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +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 +  (0.1ms) SELECT sqlite_version(*) +Processing by MeetsController#index as HTML + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ app/controllers/concerns/response.rb:3:in `json_response' +Completed 200 OK in 62ms (Views: 49.5ms | ActiveRecord: 0.8ms | Allocations: 3127) + + +  (4.0ms) SELECT sqlite_version(*) + User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."created_by" = ? LIMIT ? [["created_by", "1"], ["LIMIT", 11]] +Started GET "/auth/login" for ::1 at 2020-04-23 17:54:25 -0300 +  (0.1ms) SELECT sqlite_version(*) + +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' + User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] + User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] +  (0.1ms) begin transaction + User Update (2.1ms) UPDATE "users" SET "email" = ?, "updated_at" = ? WHERE "users"."id" = ? [["email", "don@mail.com"], ["updated_at", "2020-04-23 20:55:32.373290"], ["id", 1]] +  (141.2ms) commit transaction + User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] + User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["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 +  (3.9ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC + +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 + Meet Load (0.7ms) SELECT "meets".* FROM "meets" + ↳ 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 + Meet Load (0.4ms) SELECT "meets".* FROM "meets" + ↳ app/controllers/concerns/response.rb:3:in `json_response' +Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.4ms | Allocations: 796) + + +  (3.5ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) SELECT sqlite_version(*) +  (0.1ms) begin transaction + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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"]] +  (115.1ms) commit transaction +  (0.1ms) begin transaction + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (112.3ms) commit transaction +  (3.6ms) SELECT sqlite_version(*) + User Load (0.3ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 11]] + User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."created_by" = ? LIMIT ? [["created_by", "2"], ["LIMIT", 11]] +Started GET "/meets/" for ::1 at 2020-04-23 18:07:56 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ app/controllers/concerns/response.rb:3:in `json_response' +Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 1.0ms | Allocations: 7717) + + +  (3.6ms) SELECT sqlite_version(*) + Meet Load (0.2ms) SELECT "meets".* FROM "meets" ORDER BY "meets"."id" ASC LIMIT ? [["LIMIT", 1]] + Meeting Load (0.5ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? LIMIT ? [["meet_id", 1], ["LIMIT", 11]] +  (0.1ms) begin transaction + Meeting Create (1.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "First meeting"], ["meet_id", 1], ["created_at", "2020-04-23 21:10:54.111383"], ["updated_at", "2020-04-23 21:10:54.111383"]] +  (126.8ms) commit transaction +Started GET "/meets/" for ::1 at 2020-04-23 18:10:58 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 +  (0.1ms) SELECT sqlite_version(*) +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) + +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"} + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + ↳ app/controllers/meetings_controller.rb:41:in `set_meet' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + ↳ app/controllers/meetings_controller.rb:41:in `set_meet' + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["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"} + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + ↳ app/controllers/meetings_controller.rb:41:in `set_meet' + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) + + + User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] + User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] +  (0.1ms) begin transaction + User Update (4.8ms) UPDATE "users" SET "picture" = ?, "updated_at" = ? WHERE "users"."id" = ? [["picture", "https://fakeimg.pl/100x100/?text=AD&font=lobster&font_size=36"], ["updated_at", "2020-04-23 21:20:51.784416"], ["id", 1]] +  (129.3ms) commit transaction + User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] + User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] +  (0.1ms) begin transaction + User Update (4.7ms) UPDATE "users" SET "picture" = ?, "updated_at" = ? WHERE "users"."id" = ? [["picture", "https://fakeimg.pl/100x100/?text=SA&font=lobster&font_size=36"], ["updated_at", "2020-04-23 21:21:41.824082"], ["id", 2]] +  (113.8ms) commit transaction +Started GET "/meets/routes" for ::1 at 2020-04-23 18:26:13 -0300 +  (0.1ms) SELECT sqlite_version(*) +Processing by MeetsController#show as HTML + Parameters: {"id"=>"routes"} + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) + +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"=>{}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by AuthenticationController#authenticate as */* + Parameters: {"authentication"=>{}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by AuthenticationController#authenticate as */* + Parameters: {"authentication"=>{}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by AuthenticationController#authenticate as */* + Parameters: {"authentication"=>{}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +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 +  (4.7ms) SELECT sqlite_version(*) +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by AuthenticationController#authenticate as HTML + Parameters: {"email"=>"sarah@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah@mail.com", "password"=>"[FILTERED]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by AuthenticationController#authenticate as HTML + Parameters: {"email"=>"sarah@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah@mail.com", "password"=>"[FILTERED]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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) + + +  (20.8ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to CreateJoinTableUsesMeets (20200424173846) +  (0.1ms) begin transaction + primary::SchemaMigration Create (1.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200424173846"]] +  (108.4ms) commit transaction + ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (4.1ms) SELECT sqlite_version(*) +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC + ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (4.3ms) SELECT sqlite_version(*) +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC + ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) SELECT sqlite_version(*) +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (3.9ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to CreateJoinTableUsesMeets (20200424174528) +  (0.1ms) begin transaction +  (52.8ms) CREATE 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") +) +  (0.2ms) CREATE INDEX "index_user_meets_on_user_id" ON "user_meets" ("user_id") +  (0.1ms) CREATE INDEX "index_user_meets_on_meet_id" ON "user_meets" ("meet_id") + primary::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200424174528"]] +  (101.1ms) commit transaction + ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (4.5ms) SELECT sqlite_version(*) +  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to CreateJoinTableUsesMeetings (20200424174751) +  (0.1ms) begin transaction +  (1.9ms) CREATE 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") +) +  (0.4ms) CREATE INDEX "index_user_meetings_on_user_id" ON "user_meetings" ("user_id") +  (0.2ms) CREATE INDEX "index_user_meetings_on_meeting_id" ON "user_meetings" ("meeting_id") + primary::SchemaMigration Create (1.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200424174751"]] +  (125.7ms) commit transaction + ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (4.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to RemoveMeetingFromUsers (20200424175028) +  (0.1ms) begin transaction +  (0.0ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (0.2ms) CREATE 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) +  (0.2ms) CREATE INDEX "tindex_ausers_on_meeting_id" ON "ausers" ("meeting_id") +  (0.1ms) INSERT 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" +  (1.4ms) DROP TABLE "users" +  (0.2ms) CREATE 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") +) +  (0.1ms) CREATE INDEX "index_users_on_meeting_id" ON "users" ("meeting_id") +  (0.1ms) INSERT 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" +  (0.1ms) DROP TABLE "ausers" +  (0.0ms) PRAGMA defer_foreign_keys = 0 +  (0.0ms) PRAGMA foreign_keys = 1 + primary::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200424175028"]] +  (113.8ms) commit transaction + ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (4.1ms) SELECT sqlite_version(*) + User Load (0.3ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 11]] + User Load (0.4ms) SELECT "users".* FROM "users" +  (0.1ms) begin transaction + User Destroy (2.5ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 1]] +  (112.1ms) commit transaction +  (0.1ms) begin transaction + User Destroy (1.5ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 2]] +  (174.8ms) commit transaction + User Load (0.3ms) SELECT "users".* FROM "users" LIMIT ? [["LIMIT", 11]] + Meet Load (0.5ms) SELECT "meets".* FROM "meets" +  (0.1ms) begin transaction + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + Meeting Destroy (1.2ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] + Meet Destroy (0.2ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (83.7ms) commit transaction + Meeting Load (0.4ms) SELECT "meetings".* FROM "meetings" +  (0.1ms) begin transaction + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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"]] +  (100.1ms) commit transaction +  (0.1ms) SELECT sqlite_version(*) + User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] + User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] +  (0.1ms) SELECT sqlite_version(*) + User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] + Meeting Load (0.5ms) SELECT "meetings".* FROM "meetings" INNER JOIN "user_meetings" ON "meetings"."id" = "user_meetings"."meeting_id" WHERE "user_meetings"."user_id" = ? LIMIT ? [["user_id", 1], ["LIMIT", 11]] +  (0.1ms) SELECT sqlite_version(*) + User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" INNER JOIN "user_meetings" ON "meetings"."id" = "user_meetings"."meeting_id" WHERE "user_meetings"."user_id" = ? LIMIT ? [["user_id", 1], ["LIMIT", 11]] +  (0.1ms) SELECT sqlite_version(*) + User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] + Meet Load (0.3ms) SELECT "meets".* FROM "meets" INNER JOIN "user_meets" ON "meets"."id" = "user_meets"."meet_id" WHERE "user_meets"."user_id" = ? LIMIT ? [["user_id", 1], ["LIMIT", 11]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" INNER JOIN "user_meetings" ON "meetings"."id" = "user_meetings"."meeting_id" WHERE "user_meetings"."user_id" = ? LIMIT ? [["user_id", 1], ["LIMIT", 11]] +  (0.1ms) SELECT sqlite_version(*) + User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] +  (0.1ms) SELECT sqlite_version(*) + User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."created_by" = ? LIMIT ? [["created_by", "1"], ["LIMIT", 11]] +Started GET "/" for 127.0.0.1 at 2020-04-24 16:27:01 -0300 +  (20.1ms) SELECT sqlite_version(*) +  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +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 + User Load (0.4ms) SELECT "users".* FROM "users" + ↳ 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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (10.7ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 +  (0.7ms) SELECT sqlite_version(*) +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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#index as HTML + User Load (0.3ms) SELECT "users".* FROM "users" + ↳ 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 + User Load (0.2ms) SELECT "users".* FROM "users" + ↳ 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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 +  (13.7ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +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 +  (22.8ms) SELECT sqlite_version(*) +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC + +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 + User Load (22.4ms) SELECT "users".* FROM "users" + ↳ 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 +  (30.9ms) SELECT sqlite_version(*) +  (35.8ms) SELECT sqlite_version(*) +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC + +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 +  (5.4ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by UsersController#index as HTML + User Load (250.3ms) SELECT "users".* FROM "users" + ↳ 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"=>"''"}} +Unpermitted parameter: :user +  (0.1ms) begin transaction + ↳ app/controllers/users_controller.rb:4:in `create' + User Create (16.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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' +  (162.0ms) commit transaction + ↳ app/controllers/users_controller.rb:4:in `create' + User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 + User Load (0.2ms) SELECT "users".* FROM "users" + ↳ 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 +  (29.2ms) SELECT sqlite_version(*) +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by AuthenticationController#authenticate as HTML + Parameters: {"email"=>"sarah@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah@mail.com", "password"=>"[FILTERED]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 +  (3.9ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +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 +  (5.0ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by AuthenticationController#authenticate as HTML + Parameters: {"email"=>"sarah@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah@mail.com", "password"=>"[FILTERED]"}} +Unpermitted parameter: :authentication + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication + User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 +  (6.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by AuthenticationController#authenticate as HTML + Parameters: {"email"=>"sarah@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah@mail.com", "password"=>"[FILTERED]"}} +Unpermitted parameter: :authentication + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 + User Load (0.4ms) SELECT "users".* FROM "users" + ↳ 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 + User Load (0.2ms) SELECT "users".* FROM "users" + ↳ 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 + Meet Load (12.5ms) SELECT "meets".* FROM "meets" + ↳ 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 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 + User Load (0.2ms) SELECT "users".* FROM "users" + ↳ 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 +  (0.1ms) SELECT sqlite_version(*) +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]"}} +Unpermitted parameter: :authentication + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by AuthenticationController#authenticate as HTML + Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}} +Unpermitted parameter: :authentication + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by AuthenticationController#authenticate as HTML + Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +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 +  (0.1ms) SELECT sqlite_version(*) +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 +  (0.1ms) SELECT sqlite_version(*) +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 +  (4.0ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +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]"}} + User Load (25.6ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by AuthenticationController#authenticate as */* + Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 +  (4.5ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by AuthenticationController#authenticate as */* + Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by AuthenticationController#authenticate as */* + Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by AuthenticationController#authenticate as */* + Parameters: {"email"=>"sarah02@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah02@mail.com", "password"=>"[FILTERED]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 +  (13.9ms) SELECT sqlite_version(*) +  (36.8ms) SELECT sqlite_version(*) +  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 + Meet Load (17.2ms) SELECT "meets".* FROM "meets" + ↳ 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 +  (0.2ms) SELECT sqlite_version(*) +Processing by MeetsController#index as */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 +  (0.1ms) SELECT sqlite_version(*) +Processing by MeetsController#index as */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.8ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.9ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.1ms) SELECT "meets".* FROM "meets" + ↳ 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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (11.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 +  (0.4ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"1"} + User Load (12.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 +  (0.4ms) SELECT sqlite_version(*) +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"} + User Load (27.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (8.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.5ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 +  (0.5ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"1"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.6ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (45.9ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (2.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (2.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (46.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Started GET "/users/1" for 127.0.0.1 at 2020-04-28 14:41:47 -0300 +  (0.1ms) SELECT sqlite_version(*) + ↳ 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"} + User Load (9.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (2.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (2.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) + + + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) + + + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (2.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (3.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (2.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (2.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (2.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (2.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (2.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (2.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (2.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (2.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (2.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (3.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (2.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (2.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (12.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (2.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (3.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (2.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (3.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (2.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) + + +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' +Processing by UsersController#show as */* + Parameters: {"id"=>"1"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) + + + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (16.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (3.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (2.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (2.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (2.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (2.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Processing by UsersController#show as */* + Parameters: {"id"=>"1"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (2.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (2.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (2.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (4.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (2.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (2.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (14.1ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.6ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (1.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 +  (14.7ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"1"} + User Load (28.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (2.9ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 +  (0.2ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"1"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.5ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.1ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 +  (0.2ms) SELECT sqlite_version(*) +Processing by AuthenticationController#authenticate as */* + Parameters: {"email"=>"sarah01@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"sarah01@mail.com", "password"=>"[FILTERED]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (24.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (22.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.1ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.5ms) SELECT "meets".* FROM "meets" + ↳ 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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.1ms) SELECT "meets".* FROM "meets" + ↳ 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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 +  (0.8ms) SELECT sqlite_version(*) +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]"}} +Unpermitted parameters: :password_confirmation, :authentication +Unpermitted parameters: :password_confirmation, :authentication + User Load (74.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "sarah01@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 +  (0.3ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"1"} + User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#index as HTML + User Load (0.3ms) SELECT "users".* FROM "users" + ↳ 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"}} +Unpermitted parameter: :user +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"}} +Unpermitted parameter: :user +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 +  (0.1ms) SELECT sqlite_version(*) +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 + User Load (0.4ms) SELECT "users".* FROM "users" + ↳ 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"=>""}} +Unpermitted parameter: :user +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 +  (0.1ms) SELECT sqlite_version(*) +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 + User Load (0.4ms) SELECT "users".* FROM "users" + ↳ 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 +  (0.1ms) SELECT sqlite_version(*) +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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#create as */* + Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}} +Unpermitted parameter: :user +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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#index as HTML + User Load (0.5ms) SELECT "users".* FROM "users" + ↳ 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"=>""}} +Unpermitted parameter: :user +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 +  (14.5ms) SELECT sqlite_version(*) +  (13.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by UsersController#create as */* + Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}} +Unpermitted parameter: :user +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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#create as */* + Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}} +Unpermitted parameter: :user +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 +  (0.1ms) SELECT sqlite_version(*) +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 + User Load (0.5ms) SELECT "users".* FROM "users" + ↳ 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 +  (0.1ms) SELECT sqlite_version(*) +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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#create as */* + Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}} + User Load (9.7ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#create as */* + Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +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 +  (0.1ms) SELECT sqlite_version(*) +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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#create as */* + Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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"=>""}} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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"=>""}} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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"=>""}} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 + User Load (0.4ms) SELECT "users".* FROM "users" + ↳ 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"=>""}} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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"=>""}} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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"=>""}} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 +  (0.2ms) SELECT sqlite_version(*) +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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#create as */* + Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#index as HTML + User Load (0.3ms) SELECT "users".* FROM "users" + ↳ 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"=>""}} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#create as */* + Parameters: {"email"=>"${formContent.email}", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"${formContent.email}", "picture"=>""}} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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"=>""}} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 +  (0.4ms) SELECT sqlite_version(*) +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"=>""}} + User Load (14.6ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 + User Load (0.5ms) SELECT "users".* FROM "users" + ↳ 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 + User Load (0.2ms) SELECT "users".* FROM "users" + ↳ 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"=>""}} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 +  (14.1ms) SELECT sqlite_version(*) +  (13.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC + +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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#index as HTML + User Load (39.4ms) SELECT "users".* FROM "users" + ↳ 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"=>""}} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 + User Load (0.2ms) SELECT "users".* FROM "users" + ↳ 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 + User Load (0.3ms) SELECT "users".* FROM "users" + ↳ 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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#create as */* + Parameters: {"email"=>"bob@mail.com", "password"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"bob@mail.com", "picture"=>""}} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#create as */* + Parameters: {"email"=>"bob@mail.com", "password"=>"[FILTERED]", "name"=>"Bob", "picture"=>"", "user"=>{"name"=>"Bob", "email"=>"bob@mail.com", "picture"=>""}} +  (0.1ms) begin transaction + ↳ app/controllers/users_controller.rb:6:in `create' + User Create (13.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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' +  (168.8ms) commit transaction + ↳ app/controllers/users_controller.rb:6:in `create' + User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "bob@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 + User Load (0.5ms) SELECT "users".* FROM "users" + ↳ 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 +  (0.1ms) SELECT sqlite_version(*) +  (0.1ms) SELECT sqlite_version(*) +Processing by MeetsController#index as */* +Processing by UsersController#show as */* + Parameters: {"id"=>"1"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) + + + Meet Load (0.7ms) SELECT "meets".* FROM "meets" + ↳ 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"=>""}} +  (0.3ms) begin transaction + ↳ app/controllers/users_controller.rb:6:in `create' + User Create (3.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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' +  (148.7ms) commit transaction + ↳ app/controllers/users_controller.rb:6:in `create' + User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 + User Load (0.3ms) SELECT "users".* FROM "users" + ↳ 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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ app/controllers/concerns/response.rb:3:in `json_response' +Completed 200 OK in 7ms (Views: 3.2ms | ActiveRecord: 0.4ms | Allocations: 1408) + + +  (16.8ms) SELECT sqlite_version(*) + User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] + User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] + Meet Load (0.4ms) SELECT "meets".* FROM "meets" INNER JOIN "user_meets" ON "meets"."id" = "user_meets"."meet_id" WHERE "user_meets"."user_id" = ? LIMIT ? [["user_id", 4], ["LIMIT", 11]] +  (0.1ms) begin transaction + Meet Create (2.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (334.4ms) commit transaction +Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 18:14:49 -0300 +  (0.5ms) SELECT sqlite_version(*) +Processing by AuthenticationController#authenticate as */* + Parameters: {"email"=>"anon@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"anon@mail.com", "password"=>"[FILTERED]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.6ms) SELECT "meets".* FROM "meets" + ↳ 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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#index as HTML + User Load (0.3ms) SELECT "users".* FROM "users" + ↳ 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 + User Load (0.4ms) SELECT "users".* FROM "users" + ↳ 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 +  (0.1ms) SELECT sqlite_version(*) +  (0.1ms) SELECT sqlite_version(*) +Processing by MeetsController#index as */* +Processing by UsersController#show as */* + Parameters: {"id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) + + + Meet Load (0.4ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) + + +  (31.9ms) SELECT sqlite_version(*) +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to ChangeDurationFromMeets (20200428213607) +  (4.2ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to ChangeDurationFromMeets (20200428213607) +  (0.1ms) begin transaction +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (90.2ms) CREATE 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) +  (0.3ms) INSERT 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" +  (2.7ms) DROP TABLE "meets" +  (0.6ms) CREATE 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) +  (0.3ms) INSERT 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" +  (0.3ms) DROP TABLE "ameets" +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 + primary::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200428213607"]] +  (91.7ms) commit transaction + ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (5.9ms) SELECT sqlite_version(*) + Meet Load (0.2ms) SELECT "meets".* FROM "meets" ORDER BY "meets"."id" ASC LIMIT ? [["LIMIT", 1]] + Meet Load (0.4ms) SELECT "meets".* FROM "meets" ORDER BY "meets"."id" ASC LIMIT ? [["LIMIT", 1]] +  (0.1ms) begin transaction + Meet Update (4.8ms) UPDATE "meets" SET "duration" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["duration", 1.5], ["updated_at", "2020-04-28 21:42:41.733870"], ["id", 2]] +  (208.2ms) commit transaction +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 +  (0.4ms) SELECT sqlite_version(*) +  (0.1ms) SELECT sqlite_version(*) +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by UsersController#show as */* + Parameters: {"id"=>"1"} +Processing by MeetsController#index as */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) + + + Meet Load (0.4ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.6ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (1.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (1.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (1.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.9ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.9ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (1.8ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (1.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) + + +  (0.1ms) SELECT sqlite_version(*) + User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] + User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] + Meet Load (0.9ms) SELECT "meets".* FROM "meets" INNER JOIN "user_meets" ON "meets"."id" = "user_meets"."meet_id" WHERE "user_meets"."user_id" = ? LIMIT ? [["user_id", 4], ["LIMIT", 11]] + User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] + Meet Load (0.5ms) SELECT "meets".* FROM "meets" ORDER BY "meets"."id" DESC LIMIT ? [["LIMIT", 1]] + Meet Load (0.4ms) SELECT "meets".* FROM "meets" ORDER BY "meets"."id" DESC LIMIT ? [["LIMIT", 1]] +  (0.1ms) begin transaction + Meet Update (4.8ms) UPDATE "meets" SET "created_by" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["created_by", "4"], ["updated_at", "2020-04-28 22:24:05.799127"], ["id", 2]] +  (131.5ms) commit transaction +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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"1"} + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:43:in `set_meet' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"1"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:43:in `set_meet' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"1"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:43:in `set_meet' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:43:in `set_meet' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:43:in `set_meet' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:43:in `set_meet' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:43:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:43:in `set_meet' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:43:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:43:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:43:in `set_meet' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 +  (0.2ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"1"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.4ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (95.9ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) + + + Meet Load (159.4ms) SELECT "meets".* FROM "meets" ORDER BY "meets"."id" DESC LIMIT ? [["LIMIT", 1]] + Meet Load (23.6ms) SELECT "meets".* FROM "meets" ORDER BY "meets"."id" DESC LIMIT ? [["LIMIT", 1]] +  (27.8ms) begin transaction + Meeting Create (56.3ms) INSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (613.7ms) commit transaction + User Load (1.7ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT ? [["LIMIT", 1]] + User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] + User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] + User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] + User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] +  (0.7ms) begin transaction + User Update (21.0ms) UPDATE "users" SET "picture" = ?, "updated_at" = ? WHERE "users"."id" = ? [["picture", "https://joeschmoe.io/api/v1/female/jane"], ["updated_at", "2020-04-29 00:56:54.721718"], ["id", 4]] +  (99.3ms) commit transaction +Started GET "/users/1" for 127.0.0.1 at 2020-04-28 22:00:43 -0300 +  (35.4ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by UsersController#show as */* + Parameters: {"id"=>"1"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.8ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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 +  (1.9ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"1"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.4ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (1.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (10.5ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.5ms) SELECT "meets".* FROM "meets" + ↳ 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 +  (0.1ms) SELECT sqlite_version(*) +Processing by AuthenticationController#authenticate as */* + Parameters: {"email"=>"anon@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"anon@mail.com", "password"=>"[FILTERED]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' +Unpermitted parameter: :authentication + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 +  (0.1ms) SELECT sqlite_version(*) +  (0.1ms) SELECT sqlite_version(*) +Processing by MeetsController#index as */* +Processing by UsersController#show as */* + Parameters: {"id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) + + + Meet Load (0.9ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' +Unpermitted parameter: :authentication + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' +Unpermitted parameter: :authentication + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' +Unpermitted parameter: :authentication + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' +Unpermitted parameter: :authentication + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' +Unpermitted parameter: :authentication + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.1ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.8ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.5ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' +Unpermitted parameter: :authentication + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) + + + User Update All (167.7ms) UPDATE "users" SET "picture" = ? [["picture", "https://joeschmoe.io/api/v1/random"]] +Started POST "/auth/login" for 127.0.0.1 at 2020-04-28 22:56:55 -0300 +  (0.3ms) SELECT sqlite_version(*) +Processing by AuthenticationController#authenticate as */* + Parameters: {"email"=>"anon@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"anon@mail.com", "password"=>"[FILTERED]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' +Unpermitted parameter: :authentication + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 +  (0.1ms) SELECT sqlite_version(*) +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"=>""}} +  (0.1ms) begin transaction + ↳ app/controllers/users_controller.rb:8:in `create' + User Create (1.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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' +  (95.5ms) commit transaction + ↳ app/controllers/users_controller.rb:8:in `create' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "laila@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "laila@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "laila@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' +Unpermitted parameter: :authentication + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.6ms) SELECT "meets".* FROM "meets" + ↳ app/controllers/concerns/response.rb:3:in `json_response' +Completed 200 OK in 42ms (Views: 15.3ms | ActiveRecord: 19.4ms | Allocations: 10268) + + +  (0.2ms) SELECT sqlite_version(*) + User Load (0.7ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["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 +  (14.7ms) SELECT sqlite_version(*) +  (12.1ms) SELECT sqlite_version(*) +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by MeetsController#index as */* +Processing by UsersController#show as */* + Parameters: {"id"=>"null"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) + + + Meet Load (0.4ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"}} +  (0.1ms) begin transaction + ↳ app/controllers/users_controller.rb:8:in `create' + User Create (5.0ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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' +  (122.5ms) commit transaction + ↳ app/controllers/users_controller.rb:8:in `create' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "depak@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "depak@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "depak@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' +Unpermitted parameter: :authentication + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"}} +  (0.1ms) begin transaction + ↳ app/controllers/users_controller.rb:8:in `create' + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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' +  (90.1ms) commit transaction + ↳ app/controllers/users_controller.rb:8:in `create' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mona@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mona@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "mona@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' +Unpermitted parameter: :authentication + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 +  (0.2ms) SELECT sqlite_version(*) +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"}} +  (0.1ms) begin transaction + ↳ app/controllers/users_controller.rb:8:in `create' + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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' +  (96.4ms) commit transaction + ↳ app/controllers/users_controller.rb:8:in `create' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "leo@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 +  (13.0ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UserMeetsController#index as HTML + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UserMeetsController#index as HTML + UserMeet Load (0.5ms) SELECT "user_meets".* FROM "user_meets" + ↳ app/controllers/concerns/response.rb:3:in `json_response' +Completed 200 OK in 75ms (Views: 6.9ms | ActiveRecord: 1.5ms | Allocations: 2515) + + +  (4.0ms) SELECT sqlite_version(*) + User Load (56.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + Meet Load (0.5ms) SELECT "meets".* FROM "meets" LIMIT ? [["LIMIT", 11]] +Started GET "/user_" for 127.0.0.1 at 2020-04-29 21:25:43 -0300 +  (0.1ms) SELECT sqlite_version(*) + +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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.6ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"8"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.4ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"}} +Unpermitted parameter: :user_meet +  (0.1ms) begin transaction + ↳ app/controllers/user_meets_controller.rb:9:in `create' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/controllers/user_meets_controller.rb:9:in `create' + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/user_meets_controller.rb:9:in `create' + UserMeet Create (24.3ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 8], ["meet_id", 2]] + ↳ app/controllers/user_meets_controller.rb:9:in `create' +  (90.6ms) commit transaction + ↳ 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 + UserMeet Load (0.3ms) SELECT "user_meets".* FROM "user_meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.5ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.4ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"8"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + UserMeet Load (0.3ms) SELECT "user_meets".* FROM "user_meets" + ↳ 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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + UserMeet Load (0.3ms) SELECT "user_meets".* FROM "user_meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + UserMeet Load (0.3ms) SELECT "user_meets".* FROM "user_meets" + ↳ 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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"8"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + UserMeet Load (0.6ms) SELECT "user_meets".* FROM "user_meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"8"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"8"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"8"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"8"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"8"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"8"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" WHERE (8) LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"8"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"8"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"8"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"8"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.3ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? LIMIT ? [["user_id", 8], ["LIMIT", 11]] + ↳ app/controllers/user_meets_controller.rb:16:in `p' + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"8"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"8"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"8"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.3ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"8"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"8"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.3ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"8"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.5ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.5ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.8ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.3ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"8"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.3ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.6ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.3ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.5ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (1.0ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"8"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.5ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.5ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.3ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.5ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.3ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.3ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.3ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.5ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.7ms) SELECT "meets".* FROM "meets" + ↳ 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"} + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.3ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.4ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.3ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.3ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 8]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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 +  (15.7ms) SELECT sqlite_version(*) +  (3.7ms) SELECT sqlite_version(*) +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +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 +  (39.6ms) SELECT sqlite_version(*) +  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +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 +  (4.2ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by AuthenticationController#authenticate as */* + Parameters: {"email"=>"anon@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"anon@mail.com", "password"=>"[FILTERED]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (15.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' +Unpermitted parameter: :authentication + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' +Unpermitted parameter: :authentication + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" + ↳ 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"} + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.5ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"}} +Unpermitted parameter: :user_meet +  (0.1ms) begin transaction + ↳ app/controllers/user_meets_controller.rb:9:in `create' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/user_meets_controller.rb:9:in `create' + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/user_meets_controller.rb:9:in `create' + UserMeet Create (66.7ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 4], ["meet_id", 2]] + ↳ app/controllers/user_meets_controller.rb:9:in `create' +  (100.5ms) commit transaction + ↳ 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"} + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 4]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"}} +Unpermitted parameter: :user_meet +  (0.1ms) begin transaction + ↳ app/controllers/user_meets_controller.rb:9:in `create' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/user_meets_controller.rb:9:in `create' + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/user_meets_controller.rb:9:in `create' + UserMeet Create (9.0ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 4], ["meet_id", 2]] + ↳ app/controllers/user_meets_controller.rb:9:in `create' +  (89.2ms) commit transaction + ↳ 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"} + UserMeet Load (0.3ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 4]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/user_meets_controller.rb:19:in `block in show' + CACHE Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ app/controllers/concerns/response.rb:3:in `json_response' +Completed 200 OK in 8ms (Views: 5.0ms | ActiveRecord: 0.5ms | Allocations: 1637) + + +  (4.6ms) SELECT sqlite_version(*) + Meet Load (0.2ms) SELECT "meets".* FROM "meets" ORDER BY "meets"."id" DESC LIMIT ? [["LIMIT", 1]] +  (4.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) SELECT sqlite_version(*) +  (0.1ms) begin transaction + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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"]] +  (129.2ms) commit transaction +  (0.1ms) begin transaction + User Create (65.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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"]] +  (141.8ms) commit transaction +  (0.0ms) begin transaction + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] + UserMeet Create (0.4ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 9], ["meet_id", 3]] +  (121.4ms) commit transaction +  (0.1ms) begin transaction + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] + UserMeet Create (0.4ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 9], ["meet_id", 4]] +  (78.2ms) commit transaction +  (0.1ms) begin transaction + Meeting Create (1.3ms) INSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (86.3ms) commit transaction +  (0.1ms) begin transaction + Meet Create (2.9ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] + UserMeet Create (0.5ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 9], ["meet_id", 5]] +  (83.1ms) commit transaction +  (0.1ms) begin transaction + Meeting Create (1.4ms) INSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (89.6ms) commit transaction +  (0.1ms) begin transaction + Meet Create (2.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] + UserMeet Create (0.7ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 9], ["meet_id", 6]] +  (100.7ms) commit transaction +  (0.1ms) begin transaction + Meeting Create (8.3ms) INSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (221.4ms) commit transaction +  (0.2ms) begin transaction + Meet Create (2.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] + UserMeet Create (0.7ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 9], ["meet_id", 7]] +  (223.6ms) commit transaction +  (0.2ms) begin transaction + Meeting Create (2.8ms) INSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (442.2ms) commit transaction +  (0.1ms) begin transaction + Meet Create (2.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] + UserMeet Create (0.6ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 9], ["meet_id", 8]] +  (79.7ms) commit transaction +  (0.1ms) begin transaction + Meeting Create (3.0ms) INSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (87.4ms) commit transaction +  (0.1ms) begin transaction + Meet Create (2.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] + UserMeet Create (0.8ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 9], ["meet_id", 9]] +  (88.8ms) commit transaction +  (0.1ms) begin transaction + Meeting Create (2.8ms) INSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (102.4ms) commit transaction +  (0.1ms) begin transaction + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] + UserMeet Create (0.4ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 9], ["meet_id", 10]] +  (117.9ms) commit transaction +  (0.1ms) begin transaction + Meeting Create (2.9ms) INSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (94.8ms) commit transaction +  (0.1ms) begin transaction + Meet Create (2.9ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] + UserMeet Create (0.8ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 9], ["meet_id", 11]] +  (109.7ms) commit transaction +  (0.1ms) begin transaction + Meeting Create (1.3ms) INSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (102.4ms) commit transaction +  (0.1ms) begin transaction + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] + UserMeet Create (0.4ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 9], ["meet_id", 12]] +  (92.1ms) commit transaction +  (0.1ms) begin transaction + Meeting Create (1.4ms) INSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (83.8ms) commit transaction +  (0.1ms) begin transaction + Meet Create (1.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] + UserMeet Create (0.3ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 9], ["meet_id", 13]] +  (93.9ms) commit transaction +  (0.1ms) begin transaction + Meeting Create (2.8ms) INSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (111.3ms) commit transaction +  (0.1ms) begin transaction + Meet Create (2.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] + UserMeet Create (0.6ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 9], ["meet_id", 14]] +  (106.7ms) commit transaction +  (0.1ms) begin transaction + Meeting Create (2.8ms) INSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (121.3ms) commit transaction +  (0.1ms) begin transaction + Meet Create (2.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "members", "max_members", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] + UserMeet Create (0.5ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 9], ["meet_id", 15]] +  (149.4ms) commit transaction +  (0.1ms) begin transaction + Meeting Create (1.6ms) INSERT INTO "meetings" ("title", "description", "date", "confirmed_members", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (143.2ms) commit transaction +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 +  (0.1ms) SELECT sqlite_version(*) +Processing by MeetsController#index as */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) + + +  (4.0ms) SELECT sqlite_version(*) + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."title" = ? LIMIT ? [["title", "First meeting"], ["LIMIT", 1]] + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."title" = ? LIMIT ? [["title", "First meeting"], ["LIMIT", 1]] +  (0.1ms) begin transaction + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 3]] + Meet Destroy (11.4ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 3]] +  (9.4ms) rollback transaction +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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) + + + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."title" = ? LIMIT ? [["title", "First meeting"], ["LIMIT", 1]] + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."title" = ? LIMIT ? [["title", "First meeting"], ["LIMIT", 1]] +  (0.1ms) begin transaction + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 3]] + Meet Destroy (5.3ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 3]] +  (7.1ms) rollback transaction +  (0.1ms) SELECT sqlite_version(*) + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."title" = ? LIMIT ? [["title", "First meeting"], ["LIMIT", 1]] +  (0.1ms) begin transaction + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 3]] + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 3]] + UserMeet Destroy (4.9ms) DELETE FROM "user_meets" WHERE "user_meets"."id" = ? [["id", 4]] + Meet Destroy (0.3ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 3]] +  (122.6ms) commit transaction +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 +  (0.1ms) SELECT sqlite_version(*) +  (0.1ms) SELECT sqlite_version(*) +Processing by MeetsController#index as */* +Processing by UsersController#show as */* + Parameters: {"id"=>"4"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) + + + Meet Load (0.7ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"4"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" + ↳ 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"}} +  (0.1ms) begin transaction + ↳ app/controllers/users_controller.rb:8:in `create' + User Create (28.0ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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' +  (565.7ms) commit transaction + ↳ app/controllers/users_controller.rb:8:in `create' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.8ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) + + +  (5.0ms) SELECT sqlite_version(*) + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by MeetsController#index as HTML + Meet Load (0.4ms) SELECT "meets".* FROM "meets" + ↳ 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 +  (0.1ms) SELECT sqlite_version(*) +Processing by MeetsController#show as HTML + Parameters: {"id"=>"9"} + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:45:in `set_meet' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:19:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) + + + User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 9], ["LIMIT", 1]] + Meet Update All (138.5ms) UPDATE "meets" SET "created_by" = ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:45:in `set_meet' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:19:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + Meet Load (0.6ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 9], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:45:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:19:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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 +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"11"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 9], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"}} +  (0.1ms) begin transaction + ↳ app/controllers/users_controller.rb:8:in `create' + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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' +  (95.5ms) commit transaction + ↳ app/controllers/users_controller.rb:8:in `create' + User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "user@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"}} +Unpermitted parameter: :user_meet +  (0.1ms) begin transaction + ↳ app/controllers/user_meets_controller.rb:9:in `create' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + ↳ app/controllers/user_meets_controller.rb:9:in `create' + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]] + ↳ app/controllers/user_meets_controller.rb:9:in `create' + UserMeet Create (107.9ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 12], ["meet_id", 7]] + ↳ app/controllers/user_meets_controller.rb:9:in `create' +  (70.6ms) commit transaction + ↳ 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"} + UserMeet Load (0.3ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 12]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) + + +  (0.1ms) SELECT sqlite_version(*) + User Load (0.5ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] +  (0.1ms) begin transaction + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 12]] + UserMeet Destroy (5.3ms) DELETE FROM "user_meets" WHERE "user_meets"."id" = ? [["id", 17]] + UserMeeting Load (0.2ms) SELECT "user_meetings".* FROM "user_meetings" WHERE "user_meetings"."user_id" = ? [["user_id", 12]] + User Destroy (0.5ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 12]] +  (131.6ms) commit transaction +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"}} +  (0.1ms) begin transaction + ↳ app/controllers/users_controller.rb:8:in `create' + User Create (30.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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' +  (640.7ms) commit transaction + ↳ app/controllers/users_controller.rb:8:in `create' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "user@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.8ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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"}} +Unpermitted parameter: :user_meet +  (0.1ms) begin transaction + ↳ app/controllers/user_meets_controller.rb:9:in `create' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + ↳ app/controllers/user_meets_controller.rb:9:in `create' + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]] + ↳ app/controllers/user_meets_controller.rb:9:in `create' + UserMeet Create (1.4ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 12], ["meet_id", 7]] + ↳ app/controllers/user_meets_controller.rb:9:in `create' +  (1187.6ms) commit transaction + ↳ 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"} + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? [["user_id", 12]] + ↳ app/controllers/user_meets_controller.rb:18:in `show' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:44:in `set_meet' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/controllers/meets_controller.rb:18:in `show' + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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 +  (0.4ms) SELECT sqlite_version(*) +Processing by AuthenticationController#authenticate as */* + Parameters: {"email"=>"anon@mail.com", "password"=>"[FILTERED]", "authentication"=>{"email"=>"anon@mail.com", "password"=>"[FILTERED]"}} +Unpermitted parameter: :authentication +Unpermitted parameter: :authentication + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "anon@mail.com"], ["LIMIT", 1]] + ↳ app/auth/authenticate_user.rb:18:in `user' +Unpermitted parameter: :authentication + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.6ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.5ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 +  (0.1ms) SELECT sqlite_version(*) +  (0.1ms) SELECT sqlite_version(*) +Processing by UsersController#show as */* + Parameters: {"id"=>"4"} +Processing by MeetsController#index as */* + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (9.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) + + + Meet Load (0.4ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.2ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.3ms) SELECT "meets".* FROM "meets" + ↳ 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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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 */* + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + ↳ app/auth/authorize_api_request.rb:20:in `user' + Meet Load (0.4ms) SELECT "meets".* FROM "meets" + ↳ 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 +  (31.9ms) SELECT sqlite_version(*) +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by MeetsController#index as HTML + Meet Load (0.4ms) SELECT "meets".* FROM "meets" + ↳ 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 +  (0.1ms) SELECT sqlite_version(*) +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 +  (5.3ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +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 +  (0.1ms) SELECT sqlite_version(*) +Processing by MeetsController#search as HTML + Parameters: {"term"=>"a"} + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE (meet_title like '%a%' OR meet_description like '%a%') + ↳ 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 +  (0.1ms) SELECT sqlite_version(*) +Processing by MeetsController#search as HTML + Parameters: {"term"=>"a"} + Meet Load (8.9ms) SELECT "meets".* FROM "meets" WHERE (title like '%a%' OR description like '%a%') + ↳ 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"} + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE (title like '%AA%' OR description like '%AA%') + ↳ 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"} + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE (title like '%Support%' OR description like '%Support%') + ↳ 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"} + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE (title like '%leave%' OR description like '%leave%') + ↳ 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"} + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE (title like '%their home%' OR description like '%their home%') + ↳ app/controllers/concerns/response.rb:3:in `json_response' +Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.3ms | Allocations: 1090) + + +  (87.6ms) SELECT sqlite_version(*) + User Load (0.6ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] + User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] + Meet Load (0.5ms) SELECT "meets".* FROM "meets" ORDER BY "meets"."id" DESC LIMIT ? [["LIMIT", 1]] + User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT ? [["LIMIT", 1]] + Meet Load (0.4ms) SELECT "meets".* FROM "meets" ORDER BY "meets"."id" DESC LIMIT ? [["LIMIT", 1]] + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 15], ["LIMIT", 1]] +  (0.1ms) begin transaction + UserMeet Create (71.5ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 12], ["meet_id", 15]] +  (341.9ms) commit transaction + UserMeet Load (0.4ms) SELECT "user_meets".* FROM "user_meets" LIMIT ? [["LIMIT", 11]] +  (0.4ms) SELECT COUNT(*) FROM "user_meets" +  (0.4ms) SELECT COUNT(*) FROM "user_meets" + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 15], ["LIMIT", 1]] +  (0.2ms) begin transaction + UserMeet Create (2.6ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 12], ["meet_id", 15]] +  (323.6ms) commit transaction +  (0.4ms) SELECT COUNT(*) FROM "user_meets" + UserMeet Load (0.5ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? LIMIT ? [["user_id", 12], ["meet_id", 15], ["LIMIT", 11]] +  (0.4ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 12], ["meet_id", 15]] + UserMeet Load (0.3ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? LIMIT ? [["user_id", 12], ["meet_id", 33], ["LIMIT", 11]] +  (0.4ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 12], ["meet_id", 67]] +  (0.1ms) SELECT sqlite_version(*) +  (0.1ms) begin transaction + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 15], ["LIMIT", 1]] + UserMeet Create (2.1ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 12], ["meet_id", 15]] +  (258.8ms) commit transaction + UserMeet Load (0.5ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? LIMIT ? [["user_id", 21], ["meet_id", 15], ["LIMIT", 11]] +  (0.5ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 21], ["meet_id", 15]] +  (0.1ms) SELECT sqlite_version(*) + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 15], ["LIMIT", 1]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT sqlite_version(*) + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + Meet Load (0.8ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 15], ["LIMIT", 1]] +  (0.2ms) SELECT sqlite_version(*) + User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + Meet Load (0.6ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 15], ["LIMIT", 1]] +  (0.1ms) SELECT sqlite_version(*) + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 15], ["LIMIT", 1]] +  (0.4ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 12], ["meet_id", 15]] +  (0.1ms) begin transaction + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 15], ["LIMIT", 1]] +  (0.2ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 12], ["meet_id", 15]] +  (0.1ms) rollback transaction +  (582.6ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to CreateConversations (20200504200000) +  (0.1ms) begin transaction +  (1.9ms) CREATE TABLE "conversations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL) + primary::SchemaMigration Create (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200504200000"]] +  (1079.6ms) commit transaction +Migrating to CreateMessagems (20200504200114) +  (0.1ms) begin transaction +  (1.6ms) CREATE 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") +) +  (0.3ms) CREATE INDEX "index_messagems_on_conversation_id" ON "messagems" ("conversation_id") + primary::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200504200114"]] +  (447.3ms) commit transaction + ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) SELECT sqlite_version(*) +  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (5.8ms) SELECT sqlite_version(*) +  (5.2ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to ChangeMeetingIdFromUsers (20200505163428) +  (0.1ms) begin transaction +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.1ms) PRAGMA foreign_keys = OFF +  (0.3ms) CREATE 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) +  (0.5ms) CREATE INDEX "tindex_ausers_on_meeting_id" ON "ausers" ("meeting_id") +  (0.2ms) INSERT 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" +  (1.5ms) DROP TABLE "users" +  (0.2ms) CREATE 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") +) +  (0.1ms) CREATE INDEX "index_users_on_meeting_id" ON "users" ("meeting_id") +  (0.1ms) INSERT 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" +  (0.1ms) DROP TABLE "ausers" +  (0.0ms) PRAGMA defer_foreign_keys = 0 +  (0.2ms) PRAGMA foreign_keys = 1 + primary::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200505163428"]] +  (103.4ms) commit transaction + ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (4.2ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to RemoveMeetingIdFromUsers (20200505164423) +  (0.1ms) begin transaction +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (0.2ms) CREATE 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) +  (0.2ms) CREATE INDEX "tindex_ausers_on_meeting_id" ON "ausers" ("meeting_id") +  (0.1ms) INSERT 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" +  (1.9ms) DROP TABLE "users" +  (0.3ms) CREATE 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) +  (0.1ms) INSERT 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" +  (0.1ms) DROP TABLE "ausers" +  (0.0ms) PRAGMA defer_foreign_keys = 0 +  (0.0ms) PRAGMA foreign_keys = 1 + primary::SchemaMigration Create (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200505164423"]] +  (160.1ms) commit transaction + ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC 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 @@ +  (3.6ms) SELECT sqlite_version(*) +  (0.1ms) SELECT sqlite_version(*) +  (3.7ms) SELECT sqlite_version(*) +  (163.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY) +  (103.9ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to CreateMeets (20200423152906) +  (0.1ms) begin transaction +  (1.4ms) CREATE 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) + primary::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200423152906"]] +  (117.2ms) commit transaction +Migrating to CreateMeetings (20200423153710) +  (0.1ms) begin transaction +  (2.8ms) CREATE 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") +) +  (0.5ms) CREATE INDEX "index_meetings_on_meet_id" ON "meetings" ("meet_id") + primary::SchemaMigration Create (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200423153710"]] +  (161.3ms) commit transaction + ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) begin transaction + ActiveRecord::InternalMetadata Create (15.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", "2020-04-23 15:46:06.240845"], ["updated_at", "2020-04-23 15:46:06.240845"]] +  (89.3ms) commit transaction +  (0.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (4.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.1ms) PRAGMA foreign_keys = OFF +  (104.8ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (123.9ms) DELETE FROM "meetings"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (0.2ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (3.9ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (158.4ms) DELETE FROM "meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (1.1ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (279.4ms) DELETE FROM "meetings"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.2ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (3.4ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (243.2ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (117.0ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (2.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-04-23 13:03:50 -0300 +  (0.6ms) ROLLBACK TO SAVEPOINT active_record_1 +  (15.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.9ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-04-23 13:03:50 -0300 +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (10.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1" for 127.0.0.1 at 2020-04-23 13:03:50 -0300 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1" for 127.0.0.1 at 2020-04-23 13:03:50 -0300 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/100" for 127.0.0.1 at 2020-04-23 13:03:50 -0300 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/100" for 127.0.0.1 at 2020-04-23 13:03:50 -0300 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.0ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:03:50 -0300 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:03:50 -0300 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:03:50 -0300 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:03:50 -0300 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1" for 127.0.0.1 at 2020-04-23 13:03:50 -0300 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1" for 127.0.0.1 at 2020-04-23 13:03:50 -0300 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.9ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started DELETE "/meets/1" for 127.0.0.1 at 2020-04-23 13:03:50 -0300 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (4.9ms) rollback transaction +  (3.4ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (170.8ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (142.1ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-04-23 13:06:05 -0300 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (2.9ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-04-23 13:06:05 -0300 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1" for 127.0.0.1 at 2020-04-23 13:06:05 -0300 +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (3.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1" for 127.0.0.1 at 2020-04-23 13:06:05 -0300 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/100" for 127.0.0.1 at 2020-04-23 13:06:05 -0300 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (48.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (3.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/100" for 127.0.0.1 at 2020-04-23 13:06:05 -0300 +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (3.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:06:05 -0300 +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:06:05 -0300 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (2.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:06:05 -0300 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets" for 127.0.0.1 at 2020-04-23 13:06:05 -0300 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (67.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1" for 127.0.0.1 at 2020-04-23 13:06:05 -0300 +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (14.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1" for 127.0.0.1 at 2020-04-23 13:06:05 -0300 +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (14.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.0ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started DELETE "/meets/1" for 127.0.0.1 at 2020-04-23 13:06:05 -0300 +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (27.5ms) rollback transaction +  (3.5ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.2ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (100.5ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (107.0ms) DELETE FROM "meetings"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (22.1ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-04-23 13:11:18 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms | Allocations: 2341) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-04-23 13:11:18 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms | Allocations: 2167) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (39.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (2.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms | Allocations: 533) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 393) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 220) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 214) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 201 Created in 3ms (Views: 1.0ms | ActiveRecord: 0.5ms | Allocations: 737) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 201 Created in 2ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 730) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-04-23 16:11:19.397154"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 772) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.0ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-04-23 16:11:19.425888"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 706) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.2ms) SAVEPOINT active_record_2 + Meeting Load (0.4ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.5ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 225ms (ActiveRecord: 1.3ms | Allocations: 3137) +  (0.6ms) ROLLBACK TO SAVEPOINT active_record_1 +  (15.1ms) rollback transaction +  (3.7ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (372.0ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (106.9ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +Completed 200 OK in 24ms (Views: 9.1ms | ActiveRecord: 0.4ms | Allocations: 6215) +  (0.7ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.6ms) rollback transaction +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.3ms | Allocations: 4182) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (19.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.9ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 217) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (10.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 211) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.2ms | Allocations: 719) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (18.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 690) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 583) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 566) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (10.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms | Allocations: 473) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +Completed 422 Unprocessable Entity in 4ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1131) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (18.6ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +Completed 422 Unprocessable Entity in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1110) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.5ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms | Allocations: 719) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (44.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (7.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms | Allocations: 718) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 567) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 567) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Destroy (0.2ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 716) +  (0.6ms) ROLLBACK TO SAVEPOINT active_record_1 +  (10.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.9ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.9ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-04-23 13:31:03 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.3ms) SELECT "meets".* FROM "meets" +Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.3ms | Allocations: 2234) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (41.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-04-23 13:31:03 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2168) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (35.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (2.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.0ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 392) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (2.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 392) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (2.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 214) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 214) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.0ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 201 Created in 2ms (Views: 0.4ms | ActiveRecord: 0.4ms | Allocations: 731) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 201 Created in 2ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 730) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.3ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-04-23 16:31:03.595967"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.6ms | Allocations: 763) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (2.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.2ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-04-23 16:31:03.626883"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 706) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.2ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 599) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (3.6ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (143.8ms) DELETE FROM "meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (106.0ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (4.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +Completed 200 OK in 21ms (Views: 7.6ms | ActiveRecord: 0.3ms | Allocations: 6219) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.2ms | Allocations: 4183) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 217) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (25.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 211) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.2ms | Allocations: 718) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.1ms | Allocations: 690) +  (0.9ms) ROLLBACK TO SAVEPOINT active_record_1 +  (24.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 583) +  (0.6ms) ROLLBACK TO SAVEPOINT active_record_1 +  (11.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 566) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 201 Created in 4ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1095) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +Completed 422 Unprocessable Entity in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1131) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +Completed 422 Unprocessable Entity in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1110) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.1ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-04-23 16:34:50.385758"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.3ms | Allocations: 1041) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.0ms) SAVEPOINT active_record_2 + Meeting Update (0.1ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-04-23 16:34:50.439256"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.3ms | Allocations: 996) + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 567) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 567) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.0ms) SAVEPOINT active_record_2 + Meeting Destroy (0.1ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 710) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.0ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-04-23 13:34:50 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.2ms | Allocations: 2225) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.9ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-04-23 13:34:50 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.2ms | Allocations: 2168) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.1ms | Allocations: 393) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 393) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 214) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 214) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 201 Created in 2ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 731) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 201 Created in 3ms (Views: 0.5ms | ActiveRecord: 0.3ms | Allocations: 730) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.0ms) SAVEPOINT active_record_2 + Meet Update (0.2ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-04-23 16:34:50.952461"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 725) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.0ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-04-23 16:34:50.979793"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 706) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.2ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.5ms | Allocations: 599) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (4.2ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (106.1ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (112.0ms) DELETE FROM "meetings"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.3ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +Completed 200 OK in 23ms (Views: 8.0ms | ActiveRecord: 0.3ms | Allocations: 6217) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (24.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.2ms | Allocations: 4183) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (19.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 217) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 211) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.5ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.2ms | Allocations: 719) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 691) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 583) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 566) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 201 Created in 4ms (Views: 0.6ms | ActiveRecord: 0.5ms | Allocations: 1095) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +Completed 422 Unprocessable Entity in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1131) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +Completed 422 Unprocessable Entity in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1110) +  (0.7ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.2ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-04-23 16:35:37.614272"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1041) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.1ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-04-23 16:35:37.676707"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.3ms | Allocations: 995) + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.6ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", -1], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 567) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", -1], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 567) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.0ms) SAVEPOINT active_record_2 + Meeting Destroy (0.1ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 710) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (3.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-04-23 13:35:37 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.3ms) SELECT "meets".* FROM "meets" +Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.3ms | Allocations: 2224) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-04-23 13:35:37 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms | Allocations: 2165) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (2.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 393) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.1ms | Allocations: 392) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 214) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 214) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.9ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 201 Created in 2ms (Views: 0.6ms | ActiveRecord: 0.3ms | Allocations: 731) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 201 Created in 3ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 730) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.3ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-04-23 16:35:38.188874"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 725) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.2ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-04-23 16:35:38.219427"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 706) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) SAVEPOINT active_record_2 + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 599) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (4.2ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (143.1ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (77.7ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (109.0ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (4.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +Completed 200 OK in 22ms (Views: 7.6ms | ActiveRecord: 0.3ms | Allocations: 6213) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.2ms | Allocations: 4183) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 217) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 211) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 718) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.1ms | Allocations: 691) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (2.0ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 583) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 566) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 201 Created in 4ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1095) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +Completed 422 Unprocessable Entity in 4ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 1131) +  (0.7ms) ROLLBACK TO SAVEPOINT active_record_1 +  (14.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +Completed 422 Unprocessable Entity in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 1110) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.0ms) SAVEPOINT active_record_2 + Meeting Update (0.2ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-04-23 17:04:09.941299"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 1041) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.3ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-04-23 17:04:09.998308"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 5ms (ActiveRecord: 0.7ms | Allocations: 996) + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.6ms) ROLLBACK TO SAVEPOINT active_record_1 +  (13.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 567) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (10.9ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 567) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Destroy (0.2ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 710) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-04-23 14:04:10 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.2ms | Allocations: 2226) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.9ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-04-23 14:04:10 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms | Allocations: 2166) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 392) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 393) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 214) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (19.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 214) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 201 Created in 3ms (Views: 0.6ms | ActiveRecord: 0.3ms | Allocations: 731) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 201 Created in 2ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 696) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.2ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-04-23 17:04:10.555246"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 724) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.0ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-04-23 17:04:10.585489"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 688) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (10.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.2ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 599) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (3.7ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (140.8ms) DELETE FROM "meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (136.4ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (100.6ms) DELETE FROM "users"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.0ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +Completed 200 OK in 25ms (Views: 8.7ms | ActiveRecord: 0.4ms | Allocations: 6216) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.2ms | Allocations: 4186) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 217) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 211) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 719) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 0.3ms | Allocations: 691) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (2.9ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.5ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 583) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (2.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 566) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 201 Created in 4ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 1127) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +Completed 422 Unprocessable Entity in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1146) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +Completed 422 Unprocessable Entity in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 1125) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.0ms) SAVEPOINT active_record_2 + Meeting Update (0.1ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-04-23 17:07:28.908130"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.3ms | Allocations: 1092) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.0ms) SAVEPOINT active_record_2 + Meeting Update (0.1ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-04-23 17:07:28.965231"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.3ms | Allocations: 1028) + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (45.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 2ms (Views: 0.1ms | ActiveRecord: 0.2ms | Allocations: 567) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (23.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 567) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Destroy (0.1ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 710) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-04-23 14:07:29 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.2ms | Allocations: 2227) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-04-23 14:07:29 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms | Allocations: 2167) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 393) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (2.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 393) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 214) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 214) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 201 Created in 2ms (Views: 0.7ms | ActiveRecord: 0.3ms | Allocations: 731) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (2.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 201 Created in 2ms (Views: 0.6ms | ActiveRecord: 0.3ms | Allocations: 730) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.9ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.0ms) SAVEPOINT active_record_2 + Meet Update (0.2ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-04-23 17:07:29.528975"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 724) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (15.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.2ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-04-23 17:07:29.574557"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 706) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.2ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 599) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (42.8ms) rollback transaction +  (4.2ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (3.7ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (3.7ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to AddCreatedByToMeets (20200423170909) +  (0.1ms) begin transaction +  (55.2ms) ALTER TABLE "meets" ADD "created_by" varchar + primary::SchemaMigration Create (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200423170909"]] +  (166.8ms) commit transaction + ActiveRecord::InternalMetadata Load (0.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (3.5ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.2ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.1ms) PRAGMA foreign_keys = OFF +  (134.0ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (84.7ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (85.7ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (5.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.4ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +Completed 200 OK in 23ms (Views: 8.5ms | ActiveRecord: 0.5ms | Allocations: 6222) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.2ms | Allocations: 4185) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 217) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (26.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 211) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.2ms | Allocations: 719) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 584) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 567) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (2.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 201 Created in 4ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1143) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +Completed 422 Unprocessable Entity in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1147) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +Completed 422 Unprocessable Entity in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1126) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.1ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-04-23 17:13:14.037786"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1092) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.1ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-04-23 17:13:14.100925"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 1012) + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 568) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 568) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Destroy (0.2ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.5ms | Allocations: 711) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-04-23 14:13:14 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.2ms | Allocations: 2378) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.0ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-04-23 14:13:14 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms | Allocations: 2315) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.1ms | Allocations: 408) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 407) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (83.0ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 214) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 214) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (37.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 201 Created in 3ms (Views: 0.8ms | ActiveRecord: 0.3ms | Allocations: 706) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (11.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 201 Created in 3ms (Views: 0.7ms | ActiveRecord: 0.3ms | Allocations: 739) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.9ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.2ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-04-23 17:13:15.564336"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 729) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.9ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.2ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-04-23 17:13:15.668161"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 710) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.7ms) rollback transaction +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.7ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 1.0ms | Allocations: 600) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (10.9ms) rollback transaction +  (3.8ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (211.9ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (102.5ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (105.1ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.2ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (4.9ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +Completed 200 OK in 23ms (Views: 8.0ms | ActiveRecord: 0.4ms | Allocations: 6216) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.3ms | Allocations: 4188) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 217) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 211) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (21.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.3ms | Allocations: 720) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (2.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 584) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 2ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 567) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (26.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.9ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 201 Created in 4ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 1142) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (23.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +Completed 422 Unprocessable Entity in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1147) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (20.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +Completed 422 Unprocessable Entity in 2ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 1126) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.2ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-04-23 17:20:05.194770"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1093) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.0ms) SAVEPOINT active_record_2 + Meeting Update (0.1ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-04-23 17:20:05.261878"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 1029) + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 568) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.4ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 4ms (Views: 0.7ms | ActiveRecord: 0.3ms | Allocations: 568) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "meet_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.0ms) SAVEPOINT active_record_2 + Meeting Destroy (0.1ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 711) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.2ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-04-23 14:20:05 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms | Allocations: 2378) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.9ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-04-23 14:20:05 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.1ms | Allocations: 2317) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 407) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (10.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 408) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 214) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.9ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 214) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +Completed 201 Created in 5ms (Views: 0.9ms | ActiveRecord: 1.0ms | Allocations: 740) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 201 Created in 13ms (Views: 10.7ms | ActiveRecord: 0.3ms | Allocations: 739) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (19.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.2ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-04-23 17:20:06.133699"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 729) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.0ms) SAVEPOINT active_record_2 + Meet Update (0.2ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-04-23 17:20:06.182157"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 710) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.2ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 600) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (3.8ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.1ms) PRAGMA foreign_keys = OFF +  (123.5ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (77.8ms) DELETE FROM "meetings"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (86.1ms) DELETE FROM "users"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.4ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (3.9ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (110.1ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (83.0ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (101.9ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (3.9ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (133.8ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (100.6ms) DELETE FROM "meetings"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (101.0ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (3.8ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (137.6ms) DELETE FROM "meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (1.0ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (92.1ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (118.6ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.3ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (3.7ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (132.6ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (142.6ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (100.3ms) DELETE FROM "users"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (10.5ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (3.5ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to AddPictureToUsers (20200423203320) +  (0.1ms) begin transaction +  (5.1ms) ALTER TABLE "users" ADD "picture" varchar + primary::SchemaMigration Create (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200423203320"]] +  (124.6ms) commit transaction + ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (3.7ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (99.6ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (93.7ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (141.8ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_2 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.2ms) begin transaction +  (0.3ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_2 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.3ms) begin transaction +  (0.4ms) SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (14.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (233.0ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (107.3ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (91.8ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_2 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "foo"], ["LIMIT", 1]] +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_2 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["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"]] +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_2 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (25.2ms) SELECT sqlite_version(*) +  (0.6ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.2ms) SELECT sqlite_version(*) +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (4.9ms) SELECT sqlite_version(*) +  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to CreateJoinTableUsesMeets (20200424174528) +  (0.1ms) begin transaction +  (1.9ms) CREATE 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") +) +  (0.2ms) CREATE INDEX "index_user_meets_on_user_id" ON "user_meets" ("user_id") +  (0.1ms) CREATE INDEX "index_user_meets_on_meet_id" ON "user_meets" ("meet_id") + primary::SchemaMigration Create (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200424174528"]] +  (115.8ms) commit transaction +Migrating to CreateJoinTableUsesMeetings (20200424174751) +  (0.1ms) begin transaction +  (1.1ms) CREATE 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") +) +  (0.2ms) CREATE INDEX "index_user_meetings_on_user_id" ON "user_meetings" ("user_id") +  (0.2ms) CREATE INDEX "index_user_meetings_on_meeting_id" ON "user_meetings" ("meeting_id") + primary::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200424174751"]] +  (80.0ms) commit transaction +Migrating to ChangeDurationFromMeets (20200428213607) +  (0.1ms) begin transaction +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (0.2ms) CREATE 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) +  (0.1ms) INSERT 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" +  (1.1ms) DROP TABLE "meets" +  (0.2ms) CREATE 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) +  (0.1ms) INSERT 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" +  (0.1ms) DROP TABLE "ameets" +  (0.0ms) PRAGMA defer_foreign_keys = 0 +  (0.0ms) PRAGMA foreign_keys = 1 + primary::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200428213607"]] +  (70.1ms) commit transaction +Migrating to CreateConversations (20200504200000) +  (0.1ms) begin transaction +  (1.2ms) CREATE TABLE "conversations" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL) + primary::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200504200000"]] +  (69.8ms) commit transaction +Migrating to CreateMessagems (20200504200114) +  (0.1ms) begin transaction +  (1.4ms) CREATE 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") +) +  (0.2ms) CREATE INDEX "index_messagems_on_conversation_id" ON "messagems" ("conversation_id") + primary::SchemaMigration Create (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200504200114"]] +  (100.8ms) commit transaction + ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (4.3ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (86.3ms) DELETE FROM "meetings"; +  (0.9ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (90.4ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (90.7ms) DELETE FROM "user_meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (110.2ms) DELETE FROM "user_meetings"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (81.1ms) DELETE FROM "meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (103.0ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (99.8ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (0.2ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 + User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "foo"], ["LIMIT", 1]] +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.2ms) rollback transaction +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (5.3ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (72.7ms) DELETE FROM "meetings"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (79.0ms) DELETE FROM "users"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (108.5ms) DELETE FROM "user_meets"; +  (1.0ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.8ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (108.0ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (73.5ms) DELETE FROM "meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (106.6ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (88.7ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (0.2ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (4.2ms) SELECT sqlite_version(*) +  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (94.4ms) DELETE FROM "meetings"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (117.0ms) DELETE FROM "users"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'users'; +  (91.9ms) DELETE FROM "user_meets"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (118.4ms) DELETE FROM "user_meetings"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (83.1ms) DELETE FROM "meets"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (73.3ms) DELETE FROM "conversations"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (72.0ms) DELETE FROM "messagems"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (0.0ms) PRAGMA defer_foreign_keys = 0 +  (0.0ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (4.5ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (125.3ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (79.7ms) DELETE FROM "users"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (108.8ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (102.1ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (91.0ms) DELETE FROM "meets"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (81.7ms) DELETE FROM "conversations"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (106.5ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (5.0ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (173.3ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (146.1ms) DELETE FROM "users"; +  (0.9ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (300.1ms) DELETE FROM "user_meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (322.2ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (97.3ms) DELETE FROM "meets"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (88.0ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (96.3ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (4.0ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (128.1ms) DELETE FROM "meetings"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (142.3ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (310.2ms) DELETE FROM "user_meets"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (188.3ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (94.9ms) DELETE FROM "meets"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (75.6ms) DELETE FROM "conversations"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (123.7ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (0.2ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (4.3ms) SELECT sqlite_version(*) +  (0.7ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (99.8ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (79.4ms) DELETE FROM "users"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'users'; +  (117.5ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (137.3ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (128.4ms) DELETE FROM "meets"; +  (1.0ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (130.5ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (137.3ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (4.3ms) SELECT sqlite_version(*) +  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (81.8ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (74.5ms) DELETE FROM "users"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (73.4ms) DELETE FROM "user_meets"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (79.3ms) DELETE FROM "user_meetings"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (63.9ms) DELETE FROM "meets"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (96.9ms) DELETE FROM "conversations"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (72.2ms) DELETE FROM "messagems"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (4.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (24.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (24.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.9ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (24.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.4ms) SAVEPOINT active_record_2 + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (13.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:17:38 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:17:39 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (2.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.9ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (2.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (4.3ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.2ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (127.3ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (95.5ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (103.6ms) DELETE FROM "user_meets"; +  (0.9ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (120.3ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (203.6ms) DELETE FROM "meets"; +  (1.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (108.9ms) DELETE FROM "conversations"; +  (1.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (111.6ms) DELETE FROM "messagems"; +  (1.0ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:19:19 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:19:19 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (2.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (42.7ms) rollback transaction +  (4.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.1ms) PRAGMA foreign_keys = OFF +  (141.5ms) DELETE FROM "meetings"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (99.2ms) DELETE FROM "users"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (106.8ms) DELETE FROM "user_meets"; +  (1.0ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.8ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (117.3ms) DELETE FROM "user_meetings"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (1.0ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (114.5ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (94.2ms) DELETE FROM "conversations"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (75.6ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.3ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (55.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.8ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:20:49 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:20:49 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (4.9ms) SELECT sqlite_version(*) +  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (240.0ms) DELETE FROM "meetings"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (110.7ms) DELETE FROM "users"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'users'; +  (106.8ms) DELETE FROM "user_meets"; +  (2.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (133.4ms) DELETE FROM "user_meetings"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (57.6ms) DELETE FROM "meets"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (75.6ms) DELETE FROM "conversations"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (74.4ms) DELETE FROM "messagems"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:21:30 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.3ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:21:30 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (10.1ms) rollback transaction +  (4.2ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (76.8ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.9ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (88.5ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (100.8ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (118.2ms) DELETE FROM "user_meetings"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (81.9ms) DELETE FROM "meets"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (94.5ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (86.6ms) DELETE FROM "messagems"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (0.0ms) PRAGMA defer_foreign_keys = 0 +  (0.0ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (4.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:22:51 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:22:51 -0300 +Processing by MeetsController#index as HTML + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (4.0ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (4.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (4.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (124.6ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (80.0ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (101.1ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (106.8ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (101.7ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (97.8ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (89.6ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (19.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (23.0ms) rollback transaction +  (4.0ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.1ms) PRAGMA foreign_keys = OFF +  (127.3ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (97.9ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (116.8ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (94.9ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (88.1ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (98.1ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (87.8ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (0.2ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_2 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_2 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (4.7ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (4.5ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to ChangeMeetingIdFromUsers (20200505163428) +  (0.1ms) begin transaction +  (0.0ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (0.2ms) CREATE 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) +  (0.2ms) CREATE INDEX "tindex_ausers_on_meeting_id" ON "ausers" ("meeting_id") +  (0.1ms) INSERT 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" +  (4.5ms) DROP TABLE "users" +  (0.2ms) CREATE 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") +) +  (0.1ms) CREATE INDEX "index_users_on_meeting_id" ON "users" ("meeting_id") +  (0.1ms) INSERT 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" +  (0.1ms) DROP TABLE "ausers" +  (0.0ms) PRAGMA defer_foreign_keys = 0 +  (0.0ms) PRAGMA foreign_keys = 1 + primary::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200505163428"]] +  (114.8ms) commit transaction + ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) SELECT sqlite_version(*) +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (4.5ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (153.7ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (83.7ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (94.2ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (89.3ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (108.0ms) DELETE FROM "conversations"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (154.0ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (90.6ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.2ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (4.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_2 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_2 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (4.5ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (136.8ms) DELETE FROM "meetings"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (91.5ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (132.5ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (94.4ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (87.4ms) DELETE FROM "conversations"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.9ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (85.9ms) DELETE FROM "messagems"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (76.1ms) DELETE FROM "users"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.0ms) PRAGMA defer_foreign_keys = 0 +  (0.0ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_2 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_2 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (4.2ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (4.2ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to RemoveMeetingIdFromUsers (20200505164423) +  (0.1ms) begin transaction +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (0.2ms) CREATE 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) +  (0.2ms) CREATE INDEX "tindex_ausers_on_meeting_id" ON "ausers" ("meeting_id") +  (0.1ms) INSERT 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" +  (4.6ms) DROP TABLE "users" +  (0.2ms) CREATE 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) +  (0.1ms) INSERT 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" +  (0.2ms) DROP TABLE "ausers" +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 + primary::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20200505164423"]] +  (189.1ms) commit transaction + ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (4.3ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (176.9ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (104.7ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (120.2ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (83.8ms) DELETE FROM "meets"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (111.4ms) DELETE FROM "conversations"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (81.0ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (88.9ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (4.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (22.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (19.1ms) rollback transaction +  (4.1ms) SELECT sqlite_version(*) +  (0.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (136.5ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (101.4ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (176.8ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (88.4ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (89.7ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (99.1ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (95.6ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (4.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (10.9ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (4.4ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (195.9ms) DELETE FROM "meetings"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (99.8ms) DELETE FROM "user_meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (103.4ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (104.6ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (169.9ms) DELETE FROM "conversations"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (126.9ms) DELETE FROM "messagems"; +  (1.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (1.3ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (100.4ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.5ms) SAVEPOINT active_record_2 + Meet Create (15.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.8ms) rollback transaction +  (4.7ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (151.0ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (108.3ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (94.0ms) DELETE FROM "user_meetings"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (81.7ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (79.9ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (91.3ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (78.9ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (43.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (2.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (5.0ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (88.9ms) DELETE FROM "meetings"; +  (1.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (108.2ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (111.1ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (115.4ms) DELETE FROM "meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (87.4ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (97.9ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (64.0ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (70.9ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (54.7ms) rollback transaction +  (4.1ms) SELECT sqlite_version(*) +  (0.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.1ms) PRAGMA foreign_keys = OFF +  (122.8ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (83.9ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (94.6ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (80.8ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (80.5ms) DELETE FROM "conversations"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (89.5ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (113.2ms) DELETE FROM "users"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:53:46 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (22.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:53:46 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (4.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (115.1ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (100.7ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (127.6ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (122.1ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (89.7ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (106.4ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (205.3ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (4.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:57:27 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:57:27 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (4.2ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (83.3ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (108.7ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (139.3ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (127.9ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (113.5ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (98.2ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (88.4ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.2ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:58:49 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 13:58:49 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (4.2ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (4.2ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (4.2ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (84.4ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (101.1ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (143.7ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (97.3ms) DELETE FROM "meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (106.4ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (97.2ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (97.2ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.2ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (4.4ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (133.5ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (156.8ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (152.6ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (100.0ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (97.0ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (114.3ms) DELETE FROM "messagems"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (79.6ms) DELETE FROM "users"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.0ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (4.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (4.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (121.9ms) DELETE FROM "meetings"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (116.0ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (94.4ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (81.5ms) DELETE FROM "meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (83.3ms) DELETE FROM "conversations"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (83.1ms) DELETE FROM "messagems"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (67.8ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (4.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:02:45 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:02:45 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (4.6ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (151.1ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (150.4ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (111.4ms) DELETE FROM "user_meetings"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (89.7ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (72.7ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (188.8ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (80.4ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (4.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:03:38 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:03:38 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:03:38 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:03:38 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:03:38 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:03:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (4.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (133.2ms) DELETE FROM "meetings"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (108.6ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (85.4ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (71.7ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (159.5ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (78.1ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (89.3ms) DELETE FROM "users"; +  (0.9ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.8ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (4.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (10.9ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:04:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:04:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:04:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:04:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:04:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:04:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.3ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (5.6ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (127.3ms) DELETE FROM "meetings"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (92.6ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (110.4ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (122.1ms) DELETE FROM "meets"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (129.5ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (131.8ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (72.8ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:04:42 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.4ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (27.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:04:42 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:04:42 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:04:42 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (2.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:04:42 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:04:42 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (4.2ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (129.8ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (118.2ms) DELETE FROM "user_meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (118.7ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (80.8ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (89.0ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (88.8ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (72.4ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:05:34 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.8ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:05:34 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (4.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:05:34 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:05:34 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:05:34 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (33.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.4ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:05:35 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (4.5ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (196.8ms) DELETE FROM "meetings"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (109.6ms) DELETE FROM "user_meets"; +  (0.9ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (101.2ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (64.2ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (82.0ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (64.0ms) DELETE FROM "messagems"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (64.7ms) DELETE FROM "users"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.0ms) PRAGMA defer_foreign_keys = 0 +  (0.0ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (33.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:06:06 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.8ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:06:06 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:06:06 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (1.9ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:06:06 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (45.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:06:06 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.4ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:06:06 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (4.5ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (151.3ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (126.6ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (77.4ms) DELETE FROM "user_meetings"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (82.0ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (89.9ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (89.0ms) DELETE FROM "messagems"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (80.0ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (38.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.7ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (17.5ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:06:43 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:06:44 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:06:44 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:06:44 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:06:44 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:06:44 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (10.5ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (150.9ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (116.8ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (169.9ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (133.0ms) DELETE FROM "meets"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (179.9ms) DELETE FROM "conversations"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (168.9ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (177.8ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:06 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:06 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:06 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:06 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:07 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (4.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:07 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:07 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :max_members, :created_by, :duration, :day, :frequency +[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) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:07 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :max_members, :created_by, :duration, :day, :frequency +[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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:07 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:07 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (4.7ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (129.0ms) DELETE FROM "meetings"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (92.2ms) DELETE FROM "user_meets"; +  (0.9ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (1.0ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (116.7ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (123.5ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (98.1ms) DELETE FROM "conversations"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (95.7ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (86.4ms) DELETE FROM "users"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (4.8ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:45 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.3ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:45 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:45 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:45 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (12.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:46 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:46 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:46 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :max_members, :created_by, :duration, :day, :frequency +[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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:46 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :max_members, :created_by, :duration, :day, :frequency +[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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:46 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:10:46 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (4.4ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.1ms) PRAGMA foreign_keys = OFF +  (136.9ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (90.2ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (88.3ms) DELETE FROM "user_meetings"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (74.3ms) DELETE FROM "meets"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (96.7ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (99.0ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (82.4ms) DELETE FROM "users"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.3ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:11:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:11:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.3ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:11:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:11:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:11:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (4.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:11:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:11:10 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :max_members, :created_by, :duration, :day, :frequency +[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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:11:10 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :max_members, :created_by, :duration, :day, :frequency +[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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:11:10 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:11:10 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (4.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (158.4ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (122.0ms) DELETE FROM "user_meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (91.4ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (80.5ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (87.4ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (100.5ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (77.4ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.2ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (4.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:13:07 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:13:07 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:13:07 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:13:07 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:13:07 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:13:07 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:13:07 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :max_members, :created_by, :duration, :day, :frequency +[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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:13:07 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :max_members, :created_by, :duration, :day, :frequency +[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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (41.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:13:07 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:13:07 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (4.3ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (5.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (132.3ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (90.9ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (110.6ms) DELETE FROM "user_meetings"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (76.0ms) DELETE FROM "meets"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (136.8ms) DELETE FROM "conversations"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (115.8ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.8ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (95.7ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (46.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:14:32 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:14:32 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:14:32 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:14:32 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:14:32 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:14:32 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:14:32 -0300 +Processing by MeetsController#index as HTML + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :max_members, :created_by, :duration, :day, :frequency +[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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (35.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:14:32 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :max_members, :created_by, :duration, :day, :frequency +[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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:14:32 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:14:33 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (4.2ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (201.6ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (133.2ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (94.6ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (97.4ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (82.6ms) DELETE FROM "conversations"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (81.0ms) DELETE FROM "messagems"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (82.7ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:15:54 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.3ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:15:54 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:15:54 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:15:54 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:15:54 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:15:54 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:15:54 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :max_members, :created_by, :duration, :day, :frequency +[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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:15:54 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :max_members, :created_by, :duration, :day, :frequency +[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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:15:54 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:15:54 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (4.3ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (161.6ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (111.7ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (95.0ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (80.4ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (89.8ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (88.5ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (89.0ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:16:51 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:16:51 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:16:51 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:16:52 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (2.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:16:52 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:16:52 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:16:52 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :max_members, :created_by, :duration, :day, :frequency +[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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (43.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:16:52 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :max_members, :created_by, :duration, :day, :frequency +[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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:16:52 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:16:52 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (4.5ms) SELECT sqlite_version(*) +  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (68.4ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (101.4ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (119.2ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (82.5ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (145.6ms) DELETE FROM "conversations"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (139.7ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (82.1ms) DELETE FROM "users"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:18:55 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (11.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:18:55 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (41.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (2.9ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:18:55 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (27.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:18:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:18:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:18:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:18:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :max_members, :created_by, :duration, :day, :Frequency +[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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.9ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:18:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :max_members, :created_by, :duration, :day, :Frequency +[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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:18:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (2.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:18:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (4.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (124.4ms) DELETE FROM "meetings"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (112.8ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (127.0ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (122.1ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (104.7ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (131.7ms) DELETE FROM "messagems"; +  (0.9ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.8ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (78.6ms) DELETE FROM "users"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.0ms) PRAGMA defer_foreign_keys = 0 +  (0.0ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:13 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:13 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:13 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:13 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:13 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:13 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (10.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:13 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.3ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :max_members, :created_by, :duration, :day, :frequency +[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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:14 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :max_members, :created_by, :duration, :day, :frequency +[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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (5.2ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (102.1ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (108.1ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (119.0ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (89.5ms) DELETE FROM "meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (104.0ms) DELETE FROM "conversations"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (100.6ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (90.5ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2[0m + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (2.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (2.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :max_members, :created_by, :duration, :day, :frequency +[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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (2.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:21:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :max_members, :created_by, :duration, :day, :frequency +[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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.5ms) rollback transaction +  (5.4ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.2ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.1ms) PRAGMA foreign_keys = OFF +  (147.9ms) DELETE FROM "meetings"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (89.8ms) DELETE FROM "user_meets"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (93.3ms) DELETE FROM "user_meetings"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (80.5ms) DELETE FROM "meets"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (90.3ms) DELETE FROM "conversations"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (90.7ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (155.7ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (22.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:23:11 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:23:11 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:23:11 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:23:12 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (2.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:23:12 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:23:12 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:23:12 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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 + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:23:12 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (4.2ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (172.3ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (100.5ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (137.0ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (91.0ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (86.6ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (84.1ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (85.8ms) DELETE FROM "users"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.2ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (4.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:24:04 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (1.8ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:24:04 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:24:04 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:24:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:24:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:24:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (32.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (2.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:24:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :max_members, :created_by, :duration, :day, :frequency +[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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:24:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :max_members, :created_by, :duration, :day, :frequency +[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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (4.8ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (137.5ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (99.7ms) DELETE FROM "user_meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (125.6ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (98.6ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (130.8ms) DELETE FROM "conversations"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (89.7ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (97.1ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:25:44 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:25:44 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:25:44 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:25:45 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:25:45 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:25:45 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:25:45 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (17.5ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.76ms) +Completed 201 Created in 61ms (Views: 1.2ms | ActiveRecord: 18.6ms | Allocations: 6775) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:25:45 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.56ms) +Completed 201 Created in 6ms (Views: 1.1ms | ActiveRecord: 0.7ms | Allocations: 2251) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.7ms) rollback transaction +  (4.3ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (108.2ms) DELETE FROM "meetings"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (115.2ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (113.2ms) DELETE FROM "user_meetings"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (97.1ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (97.6ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (105.9ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (89.4ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (4.8ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:26:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:26:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:26:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:26:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:26:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:26:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:26:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (5.38ms) +Completed 201 Created in 36ms (Views: 6.1ms | ActiveRecord: 1.2ms | Allocations: 6775) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:26:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.48ms) +Completed 201 Created in 5ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 2251) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:26:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:26:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (4.4ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (159.3ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (90.3ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (103.1ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (80.7ms) DELETE FROM "meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (97.4ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (95.7ms) DELETE FROM "messagems"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (75.1ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (4.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:04 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:04 -0300 +Processing by MeetsController#index as HTML + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:04 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:04 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:04 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:04 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:04 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.3ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.52ms) +Completed 201 Created in 32ms (Views: 1.0ms | ActiveRecord: 1.3ms | Allocations: 6775) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (39.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:04 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.63ms) +Completed 201 Created in 7ms (Views: 1.1ms | ActiveRecord: 0.7ms | Allocations: 2251) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:04 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.8ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:04 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (4.4ms) SELECT sqlite_version(*) +  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.2ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (326.5ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (93.5ms) DELETE FROM "user_meets"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (111.2ms) DELETE FROM "user_meetings"; +  (1.0ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (89.9ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (89.0ms) DELETE FROM "conversations"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (112.8ms) DELETE FROM "messagems"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (98.9ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (4.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (32.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (2.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.3ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.48ms) +Completed 201 Created in 32ms (Views: 0.9ms | ActiveRecord: 1.4ms | Allocations: 6775) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.89ms) +Completed 201 Created in 6ms (Views: 1.3ms | ActiveRecord: 0.7ms | Allocations: 2251) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (1.9ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.2ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 17:27:40.695489"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1090) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:27:40 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 17:27:40.736287"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 999) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (4.2ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (144.1ms) DELETE FROM "meetings"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (109.5ms) DELETE FROM "user_meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (128.8ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (86.6ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (97.5ms) DELETE FROM "conversations"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.9ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (96.6ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (89.4ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (4.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.4ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.4ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (4.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (30.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.6ms) +Completed 201 Created in 32ms (Views: 1.1ms | ActiveRecord: 1.6ms | Allocations: 6775) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (60.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.3ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.69ms) +Completed 201 Created in 7ms (Views: 1.3ms | ActiveRecord: 1.0ms | Allocations: 2251) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (33.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:06 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:06 -0300 +Processing by MeetsController#index as HTML + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.5ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:06 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 17:28:06.125039"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1090) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:06 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 17:28:06.167125"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 999) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (2.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:28:06 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.3ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1221) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (4.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (123.3ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (108.1ms) DELETE FROM "user_meets"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (118.8ms) DELETE FROM "user_meetings"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (97.3ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (97.9ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (97.5ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (155.0ms) DELETE FROM "users"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:38 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (42.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (3.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.64ms) +Completed 201 Created in 33ms (Views: 1.1ms | ActiveRecord: 1.5ms | Allocations: 6775) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.46ms) +Completed 201 Created in 6ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 2251) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (1.9ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (10.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.2ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 17:29:39.673581"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1089) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.2ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 17:29:39.716950"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 4ms (ActiveRecord: 0.5ms | Allocations: 998) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 14:29:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.6ms | Allocations: 1221) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (19.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.2ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (137.2ms) DELETE FROM "meetings"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (94.3ms) DELETE FROM "user_meets"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (118.2ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (121.5ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (113.9ms) DELETE FROM "conversations"; +  (0.9ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.8ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (78.3ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (81.8ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.3ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (20.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.5ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (18.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (26.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.9ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.4ms) SAVEPOINT active_record_2 + User Create (0.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["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"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.55ms) +Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.2ms | Allocations: 2842) +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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "atque"], ["description", "In eius ex reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.404346"], ["updated_at", "2020-05-05 18:15:09.404346"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Magni dolorem consectetur distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.407893"], ["updated_at", "2020-05-05 18:15:09.407893"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "amet"], ["description", "Perspiciatis quis expedita eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.410444"], ["updated_at", "2020-05-05 18:15:09.410444"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consectetur"], ["description", "Molestiae saepe modi quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.413752"], ["updated_at", "2020-05-05 18:15:09.413752"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Error quis et omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.418286"], ["updated_at", "2020-05-05 18:15:09.418286"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deserunt"], ["description", "Quos consequatur tempore doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.420798"], ["updated_at", "2020-05-05 18:15:09.420798"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eveniet"], ["description", "Impedit veritatis ducimus facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.422448"], ["updated_at", "2020-05-05 18:15:09.422448"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Consequuntur quis sint aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.423988"], ["updated_at", "2020-05-05 18:15:09.423988"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellat"], ["description", "Nam rerum rem ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.425654"], ["updated_at", "2020-05-05 18:15:09.425654"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illo"], ["description", "Quam veniam officiis magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.427279"], ["updated_at", "2020-05-05 18:15:09.427279"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.4ms) SAVEPOINT active_record_2 + User Create (0.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Chong Collins"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ISkEmEe3eR9vr4FOjujoLeWJnEGGpEU2R2FVg5CuH0BCT4U34NYE."], ["created_at", "2020-05-05 18:15:09.430589"], ["updated_at", "2020-05-05 18:15:09.430589"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | ActiveRecord: 0.3ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:15:09 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:15:09.519658"], ["updated_at", "2020-05-05 18:15:09.519658"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.3ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.39ms) +Completed 201 Created in 46ms (Views: 0.9ms | ActiveRecord: 1.2ms | Allocations: 6194) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Quaerat nihil quasi explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.538768"], ["updated_at", "2020-05-05 18:15:09.538768"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "suscipit"], ["description", "Quas incidunt libero ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.541645"], ["updated_at", "2020-05-05 18:15:09.541645"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magnam"], ["description", "Ea quia laborum et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.543141"], ["updated_at", "2020-05-05 18:15:09.543141"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iusto"], ["description", "Alias molestiae quis asperiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.544336"], ["updated_at", "2020-05-05 18:15:09.544336"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consectetur"], ["description", "Veniam numquam assumenda eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.545587"], ["updated_at", "2020-05-05 18:15:09.545587"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Ipsam non blanditiis voluptatum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.547112"], ["updated_at", "2020-05-05 18:15:09.547112"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Accusantium nemo quis nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.549317"], ["updated_at", "2020-05-05 18:15:09.549317"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deserunt"], ["description", "Dolorem rem non perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.551104"], ["updated_at", "2020-05-05 18:15:09.551104"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Distinctio voluptatibus voluptas animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.553631"], ["updated_at", "2020-05-05 18:15:09.553631"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odit"], ["description", "Ratione fugiat fugit soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.556264"], ["updated_at", "2020-05-05 18:15:09.556264"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Daniell Kunde DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$wid5b1JO7tMzynYIRLxTwucGV5/p/zNmxXJ77trqN9Df5XKIEPO/2"], ["created_at", "2020-05-05 18:15:09.559776"], ["updated_at", "2020-05-05 18:15:09.559776"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.33ms) +Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms | Allocations: 2845) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:15:09 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:15:09.572554"], ["updated_at", "2020-05-05 18:15:09.572554"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.36ms) +Completed 201 Created in 7ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 2251) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "In quaerat vel dignissimos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.586341"], ["updated_at", "2020-05-05 18:15:09.586341"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloremque"], ["description", "Provident veritatis cupiditate asperiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.589660"], ["updated_at", "2020-05-05 18:15:09.589660"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "culpa"], ["description", "Deserunt debitis et maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.592461"], ["updated_at", "2020-05-05 18:15:09.592461"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "commodi"], ["description", "Ipsa ut nam animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.596613"], ["updated_at", "2020-05-05 18:15:09.596613"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "pariatur"], ["description", "Illum aut corrupti ipsa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.598463"], ["updated_at", "2020-05-05 18:15:09.598463"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officiis"], ["description", "Culpa atque cumque sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.599861"], ["updated_at", "2020-05-05 18:15:09.599861"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Similique quia ex reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.601108"], ["updated_at", "2020-05-05 18:15:09.601108"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Aut voluptates reprehenderit incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.602394"], ["updated_at", "2020-05-05 18:15:09.602394"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Fugiat et earum accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.604105"], ["updated_at", "2020-05-05 18:15:09.604105"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "porro"], ["description", "Veniam beatae corrupti facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.605550"], ["updated_at", "2020-05-05 18:15:09.605550"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Perry Quitzon"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rBtId3CC2SPMcqQH293SOOtuhIzt55m0/9m3GV4NsUU8BNNFuQIgK"], ["created_at", "2020-05-05 18:15:09.608232"], ["updated_at", "2020-05-05 18:15:09.608232"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (25.2ms) +Completed 200 OK in 28ms (Views: 26.9ms | ActiveRecord: 0.2ms | Allocations: 2847) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:15:09 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Eum consequatur expedita et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.656265"], ["updated_at", "2020-05-05 18:15:09.656265"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempora"], ["description", "Facilis eveniet eaque ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.659149"], ["updated_at", "2020-05-05 18:15:09.659149"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ullam"], ["description", "Eveniet et dolor impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.660569"], ["updated_at", "2020-05-05 18:15:09.660569"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "expedita"], ["description", "Ipsum aliquam eaque qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.661910"], ["updated_at", "2020-05-05 18:15:09.661910"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eveniet"], ["description", "Nemo fugiat quod veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.663259"], ["updated_at", "2020-05-05 18:15:09.663259"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "necessitatibus"], ["description", "Soluta omnis nemo aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.665028"], ["updated_at", "2020-05-05 18:15:09.665028"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "a"], ["description", "Dolor cupiditate quisquam sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.666886"], ["updated_at", "2020-05-05 18:15:09.666886"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Expedita ex excepturi quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.668206"], ["updated_at", "2020-05-05 18:15:09.668206"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Et illo doloremque aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.669517"], ["updated_at", "2020-05-05 18:15:09.669517"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Facilis consequatur veniam repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.671025"], ["updated_at", "2020-05-05 18:15:09.671025"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Sanford Schmeler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nu6FpnePZ6xVB18civkyDuiYMYVd4rtSe/RHQrALUaIrdR346Cdza"], ["created_at", "2020-05-05 18:15:09.674642"], ["updated_at", "2020-05-05 18:15:09.674642"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2845) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:15:09 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 3697) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "necessitatibus"], ["description", "Esse dolor quae deleniti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.701761"], ["updated_at", "2020-05-05 18:15:09.701761"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "modi"], ["description", "Dolor error id quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.704630"], ["updated_at", "2020-05-05 18:15:09.704630"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "hic"], ["description", "Dolor deserunt nostrum assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.706058"], ["updated_at", "2020-05-05 18:15:09.706058"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "soluta"], ["description", "Saepe impedit quia eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.707459"], ["updated_at", "2020-05-05 18:15:09.707459"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ratione"], ["description", "Aspernatur sunt blanditiis at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.708759"], ["updated_at", "2020-05-05 18:15:09.708759"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "possimus"], ["description", "Odit quos odio porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.710044"], ["updated_at", "2020-05-05 18:15:09.710044"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Ducimus rerum laborum consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.711440"], ["updated_at", "2020-05-05 18:15:09.711440"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "expedita"], ["description", "Debitis neque autem voluptatum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.713639"], ["updated_at", "2020-05-05 18:15:09.713639"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Iste dolor ab aliquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.716646"], ["updated_at", "2020-05-05 18:15:09.716646"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsam"], ["description", "Enim doloribus corrupti non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.719176"], ["updated_at", "2020-05-05 18:15:09.719176"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sebastian Parker"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4i3JPbf4tCpktvvHXGuCTuCBBR2PNmqRxzOgICvdYJ66vuxp14ea6"], ["created_at", "2020-05-05 18:15:09.722009"], ["updated_at", "2020-05-05 18:15:09.722009"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.4ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:15:09 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.2ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:15:09.734478"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 4ms (ActiveRecord: 0.5ms | Allocations: 1090) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Omnis eligendi dolores quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.744609"], ["updated_at", "2020-05-05 18:15:09.744609"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "soluta"], ["description", "Reprehenderit sequi quis qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.748241"], ["updated_at", "2020-05-05 18:15:09.748241"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ratione"], ["description", "Id est molestias cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.750003"], ["updated_at", "2020-05-05 18:15:09.750003"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Similique exercitationem reiciendis asperiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.751312"], ["updated_at", "2020-05-05 18:15:09.751312"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eaque"], ["description", "Nisi qui rerum aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.756135"], ["updated_at", "2020-05-05 18:15:09.756135"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Enim harum dicta fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.758635"], ["updated_at", "2020-05-05 18:15:09.758635"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Error aut eum autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.760158"], ["updated_at", "2020-05-05 18:15:09.760158"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facilis"], ["description", "Iusto facilis sequi consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.761572"], ["updated_at", "2020-05-05 18:15:09.761572"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "possimus"], ["description", "Omnis ut nihil optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.762958"], ["updated_at", "2020-05-05 18:15:09.762958"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quaerat"], ["description", "Quos a consequatur voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.764893"], ["updated_at", "2020-05-05 18:15:09.764893"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lorie Heaney"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HYC/w8cDy0Zz0vhzpEfLhuT3szfR9DuUZunb8vqwOFSJAV.mmhsRq"], ["created_at", "2020-05-05 18:15:09.767735"], ["updated_at", "2020-05-05 18:15:09.767735"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.35ms) +Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.1ms | Allocations: 2843) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:15:09 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:15:09.780089"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 999) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestias"], ["description", "Cum tempore delectus in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.794085"], ["updated_at", "2020-05-05 18:15:09.794085"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Repellendus fugit earum in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.797289"], ["updated_at", "2020-05-05 18:15:09.797289"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Sunt fugiat perspiciatis rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.798760"], ["updated_at", "2020-05-05 18:15:09.798760"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatibus"], ["description", "Ipsum ad eos ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.800008"], ["updated_at", "2020-05-05 18:15:09.800008"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officiis"], ["description", "Necessitatibus ipsa voluptates sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.801379"], ["updated_at", "2020-05-05 18:15:09.801379"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempora"], ["description", "Distinctio placeat cupiditate similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.802663"], ["updated_at", "2020-05-05 18:15:09.802663"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "temporibus"], ["description", "Sit consequuntur ipsa magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.803912"], ["updated_at", "2020-05-05 18:15:09.803912"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Fugiat aspernatur dolorum iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.805229"], ["updated_at", "2020-05-05 18:15:09.805229"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Maxime perspiciatis molestiae enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.806536"], ["updated_at", "2020-05-05 18:15:09.806536"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Consequuntur laudantium ratione deleniti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:09.807823"], ["updated_at", "2020-05-05 18:15:09.807823"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cami Daugherty"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rDj7H32yCvbUXlYba1Mdk.ZtDVATTWNcU7eato1W9gYFM4Dq/1o2u"], ["created_at", "2020-05-05 18:15:09.810386"], ["updated_at", "2020-05-05 18:15:09.810386"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.1ms) +Completed 200 OK in 9ms (Views: 6.5ms | ActiveRecord: 0.4ms | Allocations: 2845) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:15:09 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1221) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (8.8ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (140.1ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.9ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (120.6ms) DELETE FROM "user_meets"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (105.3ms) DELETE FROM "user_meetings"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (80.0ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (98.3ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (97.6ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (88.2ms) DELETE FROM "users"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Frieda Wolff"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1SxSAYrR90SONsmJUVA1iebW8De9oj.xDk1ZlD6RUueflAhyAJQHS"], ["created_at", "2020-05-05 18:15:42.276006"], ["updated_at", "2020-05-05 18:15:42.276006"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odio"], ["description", "Eius saepe ut magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:42.310053"], ["updated_at", "2020-05-05 18:15:42.310053"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta autem ab totam?"], ["description", "Molestiae et aut omnis."], ["date", "2020-05-06 18:15:42.334472"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.360689"], ["updated_at", "2020-05-05 18:15:42.360689"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ducimus sed delectus quae?"], ["description", "Dolor possimus veritatis ratione."], ["date", "2020-05-06 18:15:42.362489"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.363408"], ["updated_at", "2020-05-05 18:15:42.363408"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae quis qui vel?"], ["description", "Totam blanditiis accusamus vero."], ["date", "2020-05-06 18:15:42.365070"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.368181"], ["updated_at", "2020-05-05 18:15:42.368181"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur possimus ullam fugiat?"], ["description", "Est suscipit sed placeat."], ["date", "2020-05-06 18:15:42.370097"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.371106"], ["updated_at", "2020-05-05 18:15:42.371106"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla sapiente impedit enim?"], ["description", "Tempore culpa neque quaerat."], ["date", "2020-05-06 18:15:42.372550"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.373401"], ["updated_at", "2020-05-05 18:15:42.373401"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur cumque numquam id?"], ["description", "Quam delectus sed enim."], ["date", "2020-05-06 18:15:42.374815"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.375681"], ["updated_at", "2020-05-05 18:15:42.375681"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis ab pariatur hic?"], ["description", "Nobis ullam excepturi impedit."], ["date", "2020-05-06 18:15:42.377133"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.377947"], ["updated_at", "2020-05-05 18:15:42.377947"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed qui quaerat voluptas?"], ["description", "Esse quam odio voluptatem."], ["date", "2020-05-06 18:15:42.379363"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.380203"], ["updated_at", "2020-05-05 18:15:42.380203"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas enim distinctio hic?"], ["description", "Enim repudiandae minima impedit."], ["date", "2020-05-06 18:15:42.382020"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.383000"], ["updated_at", "2020-05-05 18:15:42.383000"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem magnam nam aut?"], ["description", "Ut provident ut pariatur."], ["date", "2020-05-06 18:15:42.385155"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.386187"], ["updated_at", "2020-05-05 18:15:42.386187"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum eum quaerat ex?"], ["description", "Unde similique explicabo enim."], ["date", "2020-05-06 18:15:42.388313"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.389447"], ["updated_at", "2020-05-05 18:15:42.389447"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore distinctio vel et?"], ["description", "Libero adipisci impedit aperiam."], ["date", "2020-05-06 18:15:42.390878"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.391730"], ["updated_at", "2020-05-05 18:15:42.391730"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui aliquid ut voluptatem?"], ["description", "Dolor numquam dolores eligendi."], ["date", "2020-05-06 18:15:42.393112"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.393921"], ["updated_at", "2020-05-05 18:15:42.393921"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima praesentium fugit atque?"], ["description", "Soluta in dolorem corporis."], ["date", "2020-05-06 18:15:42.395258"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.396321"], ["updated_at", "2020-05-05 18:15:42.396321"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laudantium et animi ut?"], ["description", "Aut et quo consectetur."], ["date", "2020-05-06 18:15:42.398672"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.399836"], ["updated_at", "2020-05-05 18:15:42.399836"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit nisi ducimus suscipit?"], ["description", "Quae quia in veritatis."], ["date", "2020-05-06 18:15:42.401434"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.402384"], ["updated_at", "2020-05-05 18:15:42.402384"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint est dolore cupiditate?"], ["description", "Animi soluta impedit consequuntur."], ["date", "2020-05-06 18:15:42.403805"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.404762"], ["updated_at", "2020-05-05 18:15:42.404762"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae soluta consequatur harum?"], ["description", "Nemo in assumenda ad."], ["date", "2020-05-06 18:15:42.406215"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.407763"], ["updated_at", "2020-05-05 18:15:42.407763"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia reiciendis adipisci eos?"], ["description", "Veniam et adipisci ea."], ["date", "2020-05-06 18:15:42.409396"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.410391"], ["updated_at", "2020-05-05 18:15:42.410391"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod ut ut quos?"], ["description", "Cupiditate libero repellat eaque."], ["date", "2020-05-06 18:15:42.411788"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.412671"], ["updated_at", "2020-05-05 18:15:42.412671"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:15:42 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.35ms) +Completed 200 OK in 35ms (Views: 15.8ms | ActiveRecord: 0.5ms | Allocations: 8639) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jerald McKenzie V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NXHNCSWRUANwrE71fnCs/uP4qvJbHhrMu5R1dpa1iL6V34M3VrV96"], ["created_at", "2020-05-05 18:15:42.504847"], ["updated_at", "2020-05-05 18:15:42.504847"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "optio"], ["description", "Officiis minus ullam expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:42.509712"], ["updated_at", "2020-05-05 18:15:42.509712"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id eaque nam et?"], ["description", "Atque quam sunt dolore."], ["date", "2020-05-06 18:15:42.511770"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.512806"], ["updated_at", "2020-05-05 18:15:42.512806"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae itaque est neque?"], ["description", "Recusandae minima perspiciatis corrupti."], ["date", "2020-05-06 18:15:42.514481"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.517156"], ["updated_at", "2020-05-05 18:15:42.517156"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque soluta vel eveniet?"], ["description", "Consequuntur aspernatur soluta non."], ["date", "2020-05-06 18:15:42.519214"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.520191"], ["updated_at", "2020-05-05 18:15:42.520191"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates accusantium sed modi?"], ["description", "Quaerat placeat enim et."], ["date", "2020-05-06 18:15:42.521388"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.522078"], ["updated_at", "2020-05-05 18:15:42.522078"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae consectetur quis inventore?"], ["description", "Ipsa dolor labore placeat."], ["date", "2020-05-06 18:15:42.523205"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.523951"], ["updated_at", "2020-05-05 18:15:42.523951"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id est ea dignissimos?"], ["description", "Quia repudiandae et voluptas."], ["date", "2020-05-06 18:15:42.525338"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.526306"], ["updated_at", "2020-05-05 18:15:42.526306"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo soluta animi ad?"], ["description", "Qui facere ipsa quisquam."], ["date", "2020-05-06 18:15:42.528223"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.529240"], ["updated_at", "2020-05-05 18:15:42.529240"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At porro unde voluptate?"], ["description", "Quis provident eligendi fugiat."], ["date", "2020-05-06 18:15:42.530756"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.531884"], ["updated_at", "2020-05-05 18:15:42.531884"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et voluptates distinctio ea?"], ["description", "Quam voluptatibus exercitationem nesciunt."], ["date", "2020-05-06 18:15:42.533396"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.534144"], ["updated_at", "2020-05-05 18:15:42.534144"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit delectus ipsa aut?"], ["description", "Deleniti libero iste et."], ["date", "2020-05-06 18:15:42.536047"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.536866"], ["updated_at", "2020-05-05 18:15:42.536866"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita repellat excepturi est?"], ["description", "Perferendis excepturi assumenda ipsam."], ["date", "2020-05-06 18:15:42.538211"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.538895"], ["updated_at", "2020-05-05 18:15:42.538895"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore maxime facilis qui?"], ["description", "Sit neque vitae voluptatem."], ["date", "2020-05-06 18:15:42.540165"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.540838"], ["updated_at", "2020-05-05 18:15:42.540838"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda ut maxime vel?"], ["description", "Consequatur corporis enim qui."], ["date", "2020-05-06 18:15:42.541982"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.542648"], ["updated_at", "2020-05-05 18:15:42.542648"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam exercitationem voluptas autem?"], ["description", "Quae maxime culpa sapiente."], ["date", "2020-05-06 18:15:42.543826"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.544497"], ["updated_at", "2020-05-05 18:15:42.544497"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure quod accusamus repudiandae?"], ["description", "Est velit quasi id."], ["date", "2020-05-06 18:15:42.545667"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.546497"], ["updated_at", "2020-05-05 18:15:42.546497"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore harum est iusto?"], ["description", "Omnis illo repudiandae necessitatibus."], ["date", "2020-05-06 18:15:42.549719"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.550923"], ["updated_at", "2020-05-05 18:15:42.550923"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis eligendi soluta id?"], ["description", "Ut temporibus sit nemo."], ["date", "2020-05-06 18:15:42.552363"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.553129"], ["updated_at", "2020-05-05 18:15:42.553129"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia vitae ratione animi?"], ["description", "Soluta illo error omnis."], ["date", "2020-05-06 18:15:42.554355"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.555071"], ["updated_at", "2020-05-05 18:15:42.555071"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate iure ullam enim?"], ["description", "Modi aperiam soluta velit."], ["date", "2020-05-06 18:15:42.556361"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.557134"], ["updated_at", "2020-05-05 18:15:42.557134"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui enim quis est?"], ["description", "Quam repudiandae a explicabo."], ["date", "2020-05-06 18:15:42.558361"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.559059"], ["updated_at", "2020-05-05 18:15:42.559059"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:15:42 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.92ms) +Completed 200 OK in 12ms (Views: 10.7ms | ActiveRecord: 0.2ms | Allocations: 5517) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bryan Considine"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$t6WFcBTPdNTwlpXGoqyI1OiSCoPJtRtckfMSZdqc/rx/CTIPyOmDG"], ["created_at", "2020-05-05 18:15:42.588538"], ["updated_at", "2020-05-05 18:15:42.588538"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Distinctio omnis harum sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:42.592395"], ["updated_at", "2020-05-05 18:15:42.592395"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus aliquid ut enim?"], ["description", "Iste nam dolorum explicabo."], ["date", "2020-05-06 18:15:42.593972"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.594934"], ["updated_at", "2020-05-05 18:15:42.594934"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit odio rerum optio?"], ["description", "Dolore molestias nihil blanditiis."], ["date", "2020-05-06 18:15:42.596328"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.597213"], ["updated_at", "2020-05-05 18:15:42.597213"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum quis qui aut?"], ["description", "Reiciendis recusandae sed magni."], ["date", "2020-05-06 18:15:42.599089"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.600041"], ["updated_at", "2020-05-05 18:15:42.600041"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam omnis nihil facere?"], ["description", "Quasi eius nisi culpa."], ["date", "2020-05-06 18:15:42.601259"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.601943"], ["updated_at", "2020-05-05 18:15:42.601943"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores et minima dolores?"], ["description", "Labore voluptas est sunt."], ["date", "2020-05-06 18:15:42.603067"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.603744"], ["updated_at", "2020-05-05 18:15:42.603744"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor sunt nam quia?"], ["description", "Et iusto beatae et."], ["date", "2020-05-06 18:15:42.604958"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.605706"], ["updated_at", "2020-05-05 18:15:42.605706"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio et nam et?"], ["description", "Et vel autem quis."], ["date", "2020-05-06 18:15:42.607056"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.608917"], ["updated_at", "2020-05-05 18:15:42.608917"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam vel omnis laborum?"], ["description", "Sed eius doloremque aut."], ["date", "2020-05-06 18:15:42.610797"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.612174"], ["updated_at", "2020-05-05 18:15:42.612174"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti animi voluptatum cumque?"], ["description", "Architecto sit sit eligendi."], ["date", "2020-05-06 18:15:42.613830"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.615254"], ["updated_at", "2020-05-05 18:15:42.615254"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id adipisci voluptatum consequatur?"], ["description", "Illum adipisci voluptatem quos."], ["date", "2020-05-06 18:15:42.617565"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.618481"], ["updated_at", "2020-05-05 18:15:42.618481"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque quia voluptatem facere?"], ["description", "Omnis non est sunt."], ["date", "2020-05-06 18:15:42.619742"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.620439"], ["updated_at", "2020-05-05 18:15:42.620439"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus est et eos?"], ["description", "Provident eligendi praesentium aut."], ["date", "2020-05-06 18:15:42.621576"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.622266"], ["updated_at", "2020-05-05 18:15:42.622266"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus dolores blanditiis occaecati?"], ["description", "Et minus aut earum."], ["date", "2020-05-06 18:15:42.623485"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.624165"], ["updated_at", "2020-05-05 18:15:42.624165"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit sed ad voluptatem?"], ["description", "Facere maxime laborum facilis."], ["date", "2020-05-06 18:15:42.625333"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.626132"], ["updated_at", "2020-05-05 18:15:42.626132"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et ex id sed?"], ["description", "Corrupti aut aspernatur ullam."], ["date", "2020-05-06 18:15:42.627714"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.629111"], ["updated_at", "2020-05-05 18:15:42.629111"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In commodi rerum repellendus?"], ["description", "Eum et ut quas."], ["date", "2020-05-06 18:15:42.630887"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.632234"], ["updated_at", "2020-05-05 18:15:42.632234"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam nihil itaque neque?"], ["description", "Minima maxime doloribus adipisci."], ["date", "2020-05-06 18:15:42.633678"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.634456"], ["updated_at", "2020-05-05 18:15:42.634456"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti vero facere iste?"], ["description", "Deleniti sed fuga sit."], ["date", "2020-05-06 18:15:42.635589"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.636304"], ["updated_at", "2020-05-05 18:15:42.636304"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut dolore commodi quae?"], ["description", "Omnis consequuntur itaque at."], ["date", "2020-05-06 18:15:42.637475"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.638162"], ["updated_at", "2020-05-05 18:15:42.638162"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro praesentium eum occaecati?"], ["description", "Illo quia commodi beatae."], ["date", "2020-05-06 18:15:42.639325"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.640050"], ["updated_at", "2020-05-05 18:15:42.640050"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:15:42 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.1ms) +Completed 404 Not Found in 7ms (Views: 6.2ms | ActiveRecord: 0.1ms | Allocations: 865) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jody Orn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GIbOyhk6/6jNSEAuv1i8DuuW/smeIMxHQKELeR3z7DaY.2CYUhxHe"], ["created_at", "2020-05-05 18:15:42.663747"], ["updated_at", "2020-05-05 18:15:42.663747"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "at"], ["description", "Fuga rerum debitis eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:42.667643"], ["updated_at", "2020-05-05 18:15:42.667643"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam nemo veritatis voluptas?"], ["description", "Eum in asperiores sit."], ["date", "2020-05-06 18:15:42.670338"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.671907"], ["updated_at", "2020-05-05 18:15:42.671907"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora facere nobis est?"], ["description", "Et quia porro repellat."], ["date", "2020-05-06 18:15:42.673507"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.674316"], ["updated_at", "2020-05-05 18:15:42.674316"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minus a quo alias?"], ["description", "Culpa in sint qui."], ["date", "2020-05-06 18:15:42.675564"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.676337"], ["updated_at", "2020-05-05 18:15:42.676337"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est laboriosam sit iste?"], ["description", "Voluptatem cumque eum consequatur."], ["date", "2020-05-06 18:15:42.677549"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.678248"], ["updated_at", "2020-05-05 18:15:42.678248"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam ullam reprehenderit sapiente?"], ["description", "Ut possimus eos eum."], ["date", "2020-05-06 18:15:42.679356"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.680051"], ["updated_at", "2020-05-05 18:15:42.680051"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores id dolor optio?"], ["description", "Voluptatum sint nisi consequatur."], ["date", "2020-05-06 18:15:42.681722"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.682679"], ["updated_at", "2020-05-05 18:15:42.682679"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis hic iste aut?"], ["description", "Velit rerum sint nisi."], ["date", "2020-05-06 18:15:42.683867"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.684542"], ["updated_at", "2020-05-05 18:15:42.684542"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti eos quod nihil?"], ["description", "Eos quo itaque qui."], ["date", "2020-05-06 18:15:42.685785"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.686543"], ["updated_at", "2020-05-05 18:15:42.686543"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia eius repellat unde?"], ["description", "Labore fuga rem quae."], ["date", "2020-05-06 18:15:42.688193"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.689763"], ["updated_at", "2020-05-05 18:15:42.689763"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam esse non praesentium?"], ["description", "Et ut voluptatem sed."], ["date", "2020-05-06 18:15:42.692705"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.693673"], ["updated_at", "2020-05-05 18:15:42.693673"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto natus quaerat deserunt?"], ["description", "Expedita sit quis assumenda."], ["date", "2020-05-06 18:15:42.694994"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.695763"], ["updated_at", "2020-05-05 18:15:42.695763"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint omnis fuga minus?"], ["description", "Et occaecati culpa hic."], ["date", "2020-05-06 18:15:42.697598"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.698572"], ["updated_at", "2020-05-05 18:15:42.698572"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium consequuntur veniam et?"], ["description", "Necessitatibus sit quibusdam quam."], ["date", "2020-05-06 18:15:42.699880"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.700556"], ["updated_at", "2020-05-05 18:15:42.700556"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet voluptatum maxime ducimus?"], ["description", "Et ab qui nesciunt."], ["date", "2020-05-06 18:15:42.701790"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.702474"], ["updated_at", "2020-05-05 18:15:42.702474"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate et voluptas dolorem?"], ["description", "Labore odio dolorem rerum."], ["date", "2020-05-06 18:15:42.703795"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.704480"], ["updated_at", "2020-05-05 18:15:42.704480"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi expedita ad dolor?"], ["description", "Pariatur corporis tempore molestiae."], ["date", "2020-05-06 18:15:42.705681"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.706414"], ["updated_at", "2020-05-05 18:15:42.706414"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit nobis dignissimos eveniet?"], ["description", "Tenetur animi non accusamus."], ["date", "2020-05-06 18:15:42.707844"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.709212"], ["updated_at", "2020-05-05 18:15:42.709212"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium tempora est cumque?"], ["description", "Eum dolor et nostrum."], ["date", "2020-05-06 18:15:42.710721"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.711536"], ["updated_at", "2020-05-05 18:15:42.711536"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta laborum rerum ipsa?"], ["description", "Et delectus qui incidunt."], ["date", "2020-05-06 18:15:42.712664"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.713355"], ["updated_at", "2020-05-05 18:15:42.713355"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus magni soluta officiis?"], ["description", "In adipisci sunt et."], ["date", "2020-05-06 18:15:42.715983"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.717998"], ["updated_at", "2020-05-05 18:15:42.717998"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:15:42 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Amal Towne"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Rfn4tvZtaZBIof5qaxp2.uTJnXcX.oUKDg4Ct/8QiWOXvHuYWz1t2"], ["created_at", "2020-05-05 18:15:42.736931"], ["updated_at", "2020-05-05 18:15:42.736931"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Minus consectetur dolore nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:42.739908"], ["updated_at", "2020-05-05 18:15:42.739908"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit maxime qui consequatur?"], ["description", "Soluta unde occaecati dolores."], ["date", "2020-05-06 18:15:42.741449"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.742395"], ["updated_at", "2020-05-05 18:15:42.742395"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit mollitia ea et?"], ["description", "Ut quo sed ipsam."], ["date", "2020-05-06 18:15:42.743619"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.744345"], ["updated_at", "2020-05-05 18:15:42.744345"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe dolor magni vero?"], ["description", "Rerum occaecati similique autem."], ["date", "2020-05-06 18:15:42.745533"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.746386"], ["updated_at", "2020-05-05 18:15:42.746386"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium neque maxime omnis?"], ["description", "Ducimus nesciunt doloribus velit."], ["date", "2020-05-06 18:15:42.748439"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.750078"], ["updated_at", "2020-05-05 18:15:42.750078"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae nihil id ut?"], ["description", "Ducimus distinctio id pariatur."], ["date", "2020-05-06 18:15:42.751804"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.753280"], ["updated_at", "2020-05-05 18:15:42.753280"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae porro quia aut?"], ["description", "Sit rerum consequatur harum."], ["date", "2020-05-06 18:15:42.754698"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.755538"], ["updated_at", "2020-05-05 18:15:42.755538"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem et iste molestiae?"], ["description", "Voluptatum vitae similique aut."], ["date", "2020-05-06 18:15:42.756903"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.757739"], ["updated_at", "2020-05-05 18:15:42.757739"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus vitae rem aut?"], ["description", "Omnis debitis quos fugiat."], ["date", "2020-05-06 18:15:42.758997"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.759746"], ["updated_at", "2020-05-05 18:15:42.759746"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id assumenda dicta doloremque?"], ["description", "Quo cumque consectetur minus."], ["date", "2020-05-06 18:15:42.761098"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.761823"], ["updated_at", "2020-05-05 18:15:42.761823"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione omnis earum voluptatem?"], ["description", "In nemo dolores iusto."], ["date", "2020-05-06 18:15:42.764208"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.765594"], ["updated_at", "2020-05-05 18:15:42.765594"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque aperiam molestias quis?"], ["description", "Qui consequatur rerum eveniet."], ["date", "2020-05-06 18:15:42.767201"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.768153"], ["updated_at", "2020-05-05 18:15:42.768153"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint est cum ea?"], ["description", "Quasi vero perspiciatis aperiam."], ["date", "2020-05-06 18:15:42.770025"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.771226"], ["updated_at", "2020-05-05 18:15:42.771226"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore expedita qui eveniet?"], ["description", "Ab adipisci cupiditate quo."], ["date", "2020-05-06 18:15:42.772633"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.773391"], ["updated_at", "2020-05-05 18:15:42.773391"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga sit et neque?"], ["description", "Doloremque qui veritatis est."], ["date", "2020-05-06 18:15:42.774636"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.775426"], ["updated_at", "2020-05-05 18:15:42.775426"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem in adipisci eveniet?"], ["description", "Quia nulla reprehenderit voluptatem."], ["date", "2020-05-06 18:15:42.776857"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.777659"], ["updated_at", "2020-05-05 18:15:42.777659"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel dolor ut a?"], ["description", "Debitis sit sequi in."], ["date", "2020-05-06 18:15:42.778853"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.779551"], ["updated_at", "2020-05-05 18:15:42.779551"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae consequatur culpa voluptatem?"], ["description", "Quo temporibus cumque et."], ["date", "2020-05-06 18:15:42.780757"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.781648"], ["updated_at", "2020-05-05 18:15:42.781648"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis consequatur facilis nihil?"], ["description", "Voluptas assumenda incidunt sint."], ["date", "2020-05-06 18:15:42.783475"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.784361"], ["updated_at", "2020-05-05 18:15:42.784361"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis aut asperiores ipsa?"], ["description", "Delectus id aperiam rerum."], ["date", "2020-05-06 18:15:42.785637"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.786455"], ["updated_at", "2020-05-05 18:15:42.786455"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo id repellat inventore?"], ["description", "Sit ex sint veritatis."], ["date", "2020-05-06 18:15:42.787787"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.789102"], ["updated_at", "2020-05-05 18:15:42.789102"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:15:42 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.7ms) +Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.2ms | Allocations: 1086) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.0ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Sammy Runte"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FVqov3pLlqrZRzVCiKh2Ru71T2vdMPjghInlDlUpZrzuCPtcUeafm"], ["created_at", "2020-05-05 18:15:42.806552"], ["updated_at", "2020-05-05 18:15:42.806552"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Facere modi eligendi eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:42.810707"], ["updated_at", "2020-05-05 18:15:42.810707"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus est et distinctio?"], ["description", "Reiciendis dolor qui saepe."], ["date", "2020-05-06 18:15:42.813058"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.814214"], ["updated_at", "2020-05-05 18:15:42.814214"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur molestiae eum officiis?"], ["description", "Enim perferendis voluptatem corrupti."], ["date", "2020-05-06 18:15:42.816505"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.817477"], ["updated_at", "2020-05-05 18:15:42.817477"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla sed animi a?"], ["description", "Architecto provident deserunt sit."], ["date", "2020-05-06 18:15:42.818690"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.819424"], ["updated_at", "2020-05-05 18:15:42.819424"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis quidem hic laborum?"], ["description", "Et provident laborum praesentium."], ["date", "2020-05-06 18:15:42.820504"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.821196"], ["updated_at", "2020-05-05 18:15:42.821196"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis et velit fuga?"], ["description", "Minus illo reprehenderit cum."], ["date", "2020-05-06 18:15:42.822264"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.822941"], ["updated_at", "2020-05-05 18:15:42.822941"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt sint est voluptatem?"], ["description", "Omnis qui pariatur facere."], ["date", "2020-05-06 18:15:42.824056"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.824729"], ["updated_at", "2020-05-05 18:15:42.824729"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit ut laboriosam explicabo?"], ["description", "Omnis mollitia sit beatae."], ["date", "2020-05-06 18:15:42.825859"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.826615"], ["updated_at", "2020-05-05 18:15:42.826615"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim autem ullam qui?"], ["description", "Magnam sit voluptatem esse."], ["date", "2020-05-06 18:15:42.827794"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.828859"], ["updated_at", "2020-05-05 18:15:42.828859"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime suscipit dolores alias?"], ["description", "Molestias aliquam labore minima."], ["date", "2020-05-06 18:15:42.831041"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.833299"], ["updated_at", "2020-05-05 18:15:42.833299"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni occaecati repudiandae laborum?"], ["description", "Ut accusantium voluptatem sint."], ["date", "2020-05-06 18:15:42.835909"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.837053"], ["updated_at", "2020-05-05 18:15:42.837053"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo qui quidem alias?"], ["description", "Sunt illo doloremque facilis."], ["date", "2020-05-06 18:15:42.838562"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.839468"], ["updated_at", "2020-05-05 18:15:42.839468"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur cum earum et?"], ["description", "Provident quod sed debitis."], ["date", "2020-05-06 18:15:42.840929"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.841909"], ["updated_at", "2020-05-05 18:15:42.841909"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo voluptas cum illum?"], ["description", "Sequi ratione dignissimos et."], ["date", "2020-05-06 18:15:42.843301"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.844185"], ["updated_at", "2020-05-05 18:15:42.844185"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed quis enim dolores?"], ["description", "Libero rerum suscipit nemo."], ["date", "2020-05-06 18:15:42.845488"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.846486"], ["updated_at", "2020-05-05 18:15:42.846486"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo soluta quam perferendis?"], ["description", "Aut dolore provident exercitationem."], ["date", "2020-05-06 18:15:42.849287"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.851553"], ["updated_at", "2020-05-05 18:15:42.851553"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia aut et debitis?"], ["description", "Totam eveniet dolores ducimus."], ["date", "2020-05-06 18:15:42.853209"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.854239"], ["updated_at", "2020-05-05 18:15:42.854239"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore dignissimos debitis facilis?"], ["description", "Earum ex quia autem."], ["date", "2020-05-06 18:15:42.855706"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.856860"], ["updated_at", "2020-05-05 18:15:42.856860"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non hic commodi necessitatibus?"], ["description", "Dignissimos nisi placeat libero."], ["date", "2020-05-06 18:15:42.858382"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.859280"], ["updated_at", "2020-05-05 18:15:42.859280"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id qui amet est?"], ["description", "Sed eum quidem dolorem."], ["date", "2020-05-06 18:15:42.860674"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.861612"], ["updated_at", "2020-05-05 18:15:42.861612"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi nulla deserunt reiciendis?"], ["description", "Sit neque magnam natus."], ["date", "2020-05-06 18:15:42.863163"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.864390"], ["updated_at", "2020-05-05 18:15:42.864390"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:15:42 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (1.16ms) +Completed 200 OK in 5ms (Views: 1.8ms | ActiveRecord: 0.4ms | Allocations: 1058) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.9ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Melia Hudson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$e2mYJT/XpLjo5R4t9GHl0upezFpDnY50gqX0TFSOPPXPzXSjc/gfy"], ["created_at", "2020-05-05 18:15:42.907117"], ["updated_at", "2020-05-05 18:15:42.907117"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aspernatur"], ["description", "Dolores mollitia velit est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:42.912384"], ["updated_at", "2020-05-05 18:15:42.912384"], ["created_by", "1"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora vel deleniti ex?"], ["description", "Ut consequuntur perspiciatis accusamus."], ["date", "2020-05-06 18:15:42.920089"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.921432"], ["updated_at", "2020-05-05 18:15:42.921432"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga beatae animi ut?"], ["description", "Iste tempore recusandae eum."], ["date", "2020-05-06 18:15:42.923292"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.924281"], ["updated_at", "2020-05-05 18:15:42.924281"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam velit deleniti totam?"], ["description", "Velit tempora saepe dolores."], ["date", "2020-05-06 18:15:42.925581"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.926471"], ["updated_at", "2020-05-05 18:15:42.926471"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est optio amet omnis?"], ["description", "Reprehenderit sed quae tenetur."], ["date", "2020-05-06 18:15:42.927693"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.928538"], ["updated_at", "2020-05-05 18:15:42.928538"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint sit vel eum?"], ["description", "Rem iusto ut voluptatibus."], ["date", "2020-05-06 18:15:42.930928"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.932286"], ["updated_at", "2020-05-05 18:15:42.932286"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis reiciendis beatae ducimus?"], ["description", "Amet earum et voluptas."], ["date", "2020-05-06 18:15:42.934403"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.936453"], ["updated_at", "2020-05-05 18:15:42.936453"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur harum eum quod?"], ["description", "Voluptatem sed maiores molestiae."], ["date", "2020-05-06 18:15:42.938479"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.939603"], ["updated_at", "2020-05-05 18:15:42.939603"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui laudantium expedita corrupti?"], ["description", "Veritatis repellendus quaerat rerum."], ["date", "2020-05-06 18:15:42.940858"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.941611"], ["updated_at", "2020-05-05 18:15:42.941611"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid neque tempora aliquam?"], ["description", "Quod quisquam nulla delectus."], ["date", "2020-05-06 18:15:42.942930"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.943692"], ["updated_at", "2020-05-05 18:15:42.943692"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum illo animi voluptatem?"], ["description", "Non et minus eius."], ["date", "2020-05-06 18:15:42.945464"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.946379"], ["updated_at", "2020-05-05 18:15:42.946379"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid sed ex autem?"], ["description", "Et eius nesciunt dolorem."], ["date", "2020-05-06 18:15:42.948354"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.950633"], ["updated_at", "2020-05-05 18:15:42.950633"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea qui aut tenetur?"], ["description", "Inventore distinctio nostrum dicta."], ["date", "2020-05-06 18:15:42.952729"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.953674"], ["updated_at", "2020-05-05 18:15:42.953674"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem dolore ex et?"], ["description", "Alias cupiditate sed sed."], ["date", "2020-05-06 18:15:42.954941"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.955724"], ["updated_at", "2020-05-05 18:15:42.955724"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia ducimus vitae sunt?"], ["description", "Iste mollitia in rem."], ["date", "2020-05-06 18:15:42.957244"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.958080"], ["updated_at", "2020-05-05 18:15:42.958080"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui minus et voluptas?"], ["description", "Maiores fugiat quo assumenda."], ["date", "2020-05-06 18:15:42.959382"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.960092"], ["updated_at", "2020-05-05 18:15:42.960092"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut illum provident cumque?"], ["description", "Quas accusamus minima voluptas."], ["date", "2020-05-06 18:15:42.961284"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.961973"], ["updated_at", "2020-05-05 18:15:42.961973"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus iste et quos?"], ["description", "Eius perferendis rem amet."], ["date", "2020-05-06 18:15:42.963241"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.963934"], ["updated_at", "2020-05-05 18:15:42.963934"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid rerum placeat velit?"], ["description", "Voluptas quas nulla sunt."], ["date", "2020-05-06 18:15:42.966173"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.967254"], ["updated_at", "2020-05-05 18:15:42.967254"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos perferendis rerum aliquid?"], ["description", "Qui aperiam in exercitationem."], ["date", "2020-05-06 18:15:42.968907"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.970827"], ["updated_at", "2020-05-05 18:15:42.970827"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt accusantium eum voluptas?"], ["description", "Cupiditate sit rerum pariatur."], ["date", "2020-05-06 18:15:42.972880"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:42.973776"], ["updated_at", "2020-05-05 18:15:42.973776"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:15:42 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 884) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (21.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Devin Jerde"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hh5/eSh7yjJWh8vK3h4Ec.JO1OSjlLkLJspy8.bz8B8Pqpz13224y"], ["created_at", "2020-05-05 18:15:43.004558"], ["updated_at", "2020-05-05 18:15:43.004558"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "earum"], ["description", "Voluptas suscipit corporis sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.008679"], ["updated_at", "2020-05-05 18:15:43.008679"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Culpa quibusdam sit tempore?"], ["description", "Laboriosam eius amet fugit."], ["date", "2020-05-06 18:15:43.018835"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:43.020262"], ["updated_at", "2020-05-05 18:15:43.020262"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque molestiae omnis nemo?"], ["description", "Quia quo repellat aut."], ["date", "2020-05-06 18:15:43.023040"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:43.024471"], ["updated_at", "2020-05-05 18:15:43.024471"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem quis rerum rem?"], ["description", "Omnis architecto velit ipsa."], ["date", "2020-05-06 18:15:43.025969"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:43.026892"], ["updated_at", "2020-05-05 18:15:43.026892"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed facilis nulla pariatur?"], ["description", "Aspernatur aut sed non."], ["date", "2020-05-06 18:15:43.028043"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:43.028738"], ["updated_at", "2020-05-05 18:15:43.028738"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In aspernatur labore earum?"], ["description", "Sunt adipisci qui omnis."], ["date", "2020-05-06 18:15:43.033063"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:43.034802"], ["updated_at", "2020-05-05 18:15:43.034802"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum facilis cumque reiciendis?"], ["description", "Doloribus omnis molestias aut."], ["date", "2020-05-06 18:15:43.036986"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:43.037922"], ["updated_at", "2020-05-05 18:15:43.037922"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur beatae blanditiis voluptas?"], ["description", "Qui quia sequi autem."], ["date", "2020-05-06 18:15:43.039238"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:43.040001"], ["updated_at", "2020-05-05 18:15:43.040001"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor sapiente laborum incidunt?"], ["description", "Labore dolorem distinctio debitis."], ["date", "2020-05-06 18:15:43.041210"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:43.041934"], ["updated_at", "2020-05-05 18:15:43.041934"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed voluptatem sint rerum?"], ["description", "Exercitationem ipsa possimus quam."], ["date", "2020-05-06 18:15:43.043123"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:43.043813"], ["updated_at", "2020-05-05 18:15:43.043813"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus aut sed in?"], ["description", "Sed aut ea vitae."], ["date", "2020-05-06 18:15:43.045669"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:43.046792"], ["updated_at", "2020-05-05 18:15:43.046792"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia et molestiae veritatis?"], ["description", "Eum soluta nisi possimus."], ["date", "2020-05-06 18:15:43.048611"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:43.049760"], ["updated_at", "2020-05-05 18:15:43.049760"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut sed nam amet?"], ["description", "Id pariatur eligendi nesciunt."], ["date", "2020-05-06 18:15:43.052089"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:43.053073"], ["updated_at", "2020-05-05 18:15:43.053073"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores dolores corporis voluptatem?"], ["description", "Dolor rem dolorum occaecati."], ["date", "2020-05-06 18:15:43.054441"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:43.055176"], ["updated_at", "2020-05-05 18:15:43.055176"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis id ea hic?"], ["description", "Rerum itaque impedit error."], ["date", "2020-05-06 18:15:43.056575"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:43.057337"], ["updated_at", "2020-05-05 18:15:43.057337"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et et eligendi culpa?"], ["description", "Quam magnam vero reprehenderit."], ["date", "2020-05-06 18:15:43.058579"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:43.059275"], ["updated_at", "2020-05-05 18:15:43.059275"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet mollitia ut et?"], ["description", "Quia repellat atque quo."], ["date", "2020-05-06 18:15:43.060501"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:43.061188"], ["updated_at", "2020-05-05 18:15:43.061188"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque consequatur nihil fugit?"], ["description", "Et sit consequuntur natus."], ["date", "2020-05-06 18:15:43.062366"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:43.063048"], ["updated_at", "2020-05-05 18:15:43.063048"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam sit totam et?"], ["description", "Ut blanditiis a illum."], ["date", "2020-05-06 18:15:43.064287"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:43.065692"], ["updated_at", "2020-05-05 18:15:43.065692"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa libero quia error?"], ["description", "Dicta harum ut id."], ["date", "2020-05-06 18:15:43.067290"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:43.068134"], ["updated_at", "2020-05-05 18:15:43.068134"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit nihil consequuntur accusantium?"], ["description", "Ipsam rerum quos ratione."], ["date", "2020-05-06 18:15:43.069634"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:15:43.071031"], ["updated_at", "2020-05-05 18:15:43.071031"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:15:43 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 3ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 867) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nemo"], ["description", "Ipsam ut tenetur neque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.216467"], ["updated_at", "2020-05-05 18:15:43.216467"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "placeat"], ["description", "Fugit explicabo dolorem nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.220040"], ["updated_at", "2020-05-05 18:15:43.220040"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "inventore"], ["description", "Autem aliquam recusandae dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.222469"], ["updated_at", "2020-05-05 18:15:43.222469"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laborum"], ["description", "Ipsa eius et quidem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.224006"], ["updated_at", "2020-05-05 18:15:43.224006"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "libero"], ["description", "Velit illo in minus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.225356"], ["updated_at", "2020-05-05 18:15:43.225356"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptate"], ["description", "Reprehenderit quisquam distinctio occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.226891"], ["updated_at", "2020-05-05 18:15:43.226891"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Voluptatem dolores ipsa nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.228167"], ["updated_at", "2020-05-05 18:15:43.228167"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nobis"], ["description", "Placeat nam enim ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.229415"], ["updated_at", "2020-05-05 18:15:43.229415"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corrupti"], ["description", "Earum cupiditate laudantium quaerat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.232926"], ["updated_at", "2020-05-05 18:15:43.232926"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugiat"], ["description", "Eum cumque eligendi magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.235703"], ["updated_at", "2020-05-05 18:15:43.235703"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kellye Padberg"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$PpPq7e6A9wyvmf1hoeJ6fOIAq6zrGhBDsvOCm3FeCFe/Eyt21H4vi"], ["created_at", "2020-05-05 18:15:43.238794"], ["updated_at", "2020-05-05 18:15:43.238794"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:43 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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.8ms | ActiveRecord: 0.3ms | Allocations: 3003) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (3.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Aut nulla ipsam voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.258902"], ["updated_at", "2020-05-05 18:15:43.258902"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "possimus"], ["description", "Nesciunt porro voluptatum odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.264298"], ["updated_at", "2020-05-05 18:15:43.264298"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Quasi laborum quae nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.266072"], ["updated_at", "2020-05-05 18:15:43.266072"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deleniti"], ["description", "Libero vel rem ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.267369"], ["updated_at", "2020-05-05 18:15:43.267369"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorum"], ["description", "Enim laborum aut possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.268620"], ["updated_at", "2020-05-05 18:15:43.268620"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Vero ut vel sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.269851"], ["updated_at", "2020-05-05 18:15:43.269851"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Quo quod debitis qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.271248"], ["updated_at", "2020-05-05 18:15:43.271248"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corporis"], ["description", "Totam enim aut delectus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.273529"], ["updated_at", "2020-05-05 18:15:43.273529"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sapiente"], ["description", "Et et consequatur velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.275918"], ["updated_at", "2020-05-05 18:15:43.275918"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nam"], ["description", "Tempora vero architecto hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.277744"], ["updated_at", "2020-05-05 18:15:43.277744"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Yvone Donnelly"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZgesqymI4MBoROAGwsjxt.gV3CjJt6MzvXI/xsJvc/dAO8riFuYWy"], ["created_at", "2020-05-05 18:15:43.280337"], ["updated_at", "2020-05-05 18:15:43.280337"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:43 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2843) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (39.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "Tenetur alias tempore doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.298568"], ["updated_at", "2020-05-05 18:15:43.298568"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Nostrum voluptas fugit id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.339812"], ["updated_at", "2020-05-05 18:15:43.339812"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "placeat"], ["description", "Repudiandae et nesciunt fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.341570"], ["updated_at", "2020-05-05 18:15:43.341570"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "amet"], ["description", "Ea rerum nostrum voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.342974"], ["updated_at", "2020-05-05 18:15:43.342974"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Vitae maxime earum perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.344342"], ["updated_at", "2020-05-05 18:15:43.344342"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minus"], ["description", "Voluptas quia eum sequi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.345659"], ["updated_at", "2020-05-05 18:15:43.345659"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aperiam"], ["description", "Omnis iusto accusamus assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.347063"], ["updated_at", "2020-05-05 18:15:43.347063"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facilis"], ["description", "Nostrum eaque rerum quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.349210"], ["updated_at", "2020-05-05 18:15:43.349210"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Qui dolorem cumque architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.350765"], ["updated_at", "2020-05-05 18:15:43.350765"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Eos iste exercitationem nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.352637"], ["updated_at", "2020-05-05 18:15:43.352637"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Ivory Strosin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZutXbiiE8Ajav8KMv3shNemT5MFRKpRRyAhRwd8uUnRY1hJ7i/sKm"], ["created_at", "2020-05-05 18:15:43.355774"], ["updated_at", "2020-05-05 18:15:43.355774"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:43 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (24.53ms) +Completed 200 OK in 26ms (Views: 25.6ms | ActiveRecord: 0.1ms | Allocations: 2848) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:15:43 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.71ms) +Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.2ms | Allocations: 1242) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (18.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (30.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quam"], ["description", "Et aspernatur debitis ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.412435"], ["updated_at", "2020-05-05 18:15:43.412435"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illum"], ["description", "Aut sint voluptatem pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.445731"], ["updated_at", "2020-05-05 18:15:43.445731"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rem"], ["description", "Deserunt eaque rerum libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.447611"], ["updated_at", "2020-05-05 18:15:43.447611"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Eos corporis dolorem et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.449829"], ["updated_at", "2020-05-05 18:15:43.449829"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Rerum voluptatibus fugit qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.451506"], ["updated_at", "2020-05-05 18:15:43.451506"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illo"], ["description", "Consequatur aut reiciendis sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.455137"], ["updated_at", "2020-05-05 18:15:43.455137"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Asperiores eaque et eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.457004"], ["updated_at", "2020-05-05 18:15:43.457004"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Dolorem ratione consequuntur iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.458402"], ["updated_at", "2020-05-05 18:15:43.458402"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Qui aut vitae voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.459885"], ["updated_at", "2020-05-05 18:15:43.459885"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Necessitatibus voluptas et odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.461255"], ["updated_at", "2020-05-05 18:15:43.461255"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lavona Hickle"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/nojSoIempL.FbcQeksqwe4DzXPFM.cKLKPw5IDihpmCGoWwKTEvy"], ["created_at", "2020-05-05 18:15:43.463927"], ["updated_at", "2020-05-05 18:15:43.463927"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:43 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.38ms) +Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms | Allocations: 2846) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:15:43 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.71ms) +Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.2ms | Allocations: 1240) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (25.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "numquam"], ["description", "Est qui dolores laboriosam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.488344"], ["updated_at", "2020-05-05 18:15:43.488344"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "hic"], ["description", "Asperiores eum sit non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.517512"], ["updated_at", "2020-05-05 18:15:43.517512"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Voluptatem eligendi ex officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.520770"], ["updated_at", "2020-05-05 18:15:43.520770"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odit"], ["description", "Sequi neque ducimus deleniti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.522741"], ["updated_at", "2020-05-05 18:15:43.522741"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sapiente"], ["description", "Neque consectetur tempora distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.524132"], ["updated_at", "2020-05-05 18:15:43.524132"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iusto"], ["description", "Sed molestiae maiores ipsa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.525551"], ["updated_at", "2020-05-05 18:15:43.525551"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eligendi"], ["description", "Consequatur nihil nobis quas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.526912"], ["updated_at", "2020-05-05 18:15:43.526912"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Corporis quas facilis quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.528337"], ["updated_at", "2020-05-05 18:15:43.528337"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugiat"], ["description", "Consequatur et nulla alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.529775"], ["updated_at", "2020-05-05 18:15:43.529775"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sequi"], ["description", "Quia odit voluptas sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.531220"], ["updated_at", "2020-05-05 18:15:43.531220"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alfred Botsford IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SqgPWHTlsBH9d2aSQ.cKauw292ugvFAg0JUinbrbGvq.ZAmgNjVMO"], ["created_at", "2020-05-05 18:15:43.534472"], ["updated_at", "2020-05-05 18:15:43.534472"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:43 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2845) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:15:43 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.8ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "error"], ["description", "Non minus et quisquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.555238"], ["updated_at", "2020-05-05 18:15:43.555238"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Possimus maiores laborum corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.558949"], ["updated_at", "2020-05-05 18:15:43.558949"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "hic"], ["description", "Sit quod omnis aliquid."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.560465"], ["updated_at", "2020-05-05 18:15:43.560465"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Harum commodi tempore est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.561783"], ["updated_at", "2020-05-05 18:15:43.561783"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Atque quia itaque expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.563108"], ["updated_at", "2020-05-05 18:15:43.563108"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "placeat"], ["description", "Voluptates quae autem ipsum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.564584"], ["updated_at", "2020-05-05 18:15:43.564584"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Cupiditate velit dolorum sequi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.567066"], ["updated_at", "2020-05-05 18:15:43.567066"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Voluptatem ullam perspiciatis harum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.568472"], ["updated_at", "2020-05-05 18:15:43.568472"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusantium"], ["description", "Est totam reiciendis sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.569792"], ["updated_at", "2020-05-05 18:15:43.569792"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "pariatur"], ["description", "Sequi ut nemo vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.571087"], ["updated_at", "2020-05-05 18:15:43.571087"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Dennis Emmerich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hGOJALuZAXR5WGLuEeOEyew7VvrqhWqCSCusN/x0lsUSHtDiOFX1W"], ["created_at", "2020-05-05 18:15:43.574034"], ["updated_at", "2020-05-05 18:15:43.574034"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:43 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:15:43 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (30.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatibus"], ["description", "Sint eaque aperiam architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.623433"], ["updated_at", "2020-05-05 18:15:43.623433"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vero"], ["description", "Cumque natus aliquam libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.628673"], ["updated_at", "2020-05-05 18:15:43.628673"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nemo"], ["description", "Sunt dolor illo non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.632342"], ["updated_at", "2020-05-05 18:15:43.632342"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quos"], ["description", "Adipisci velit deserunt magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.637133"], ["updated_at", "2020-05-05 18:15:43.637133"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "temporibus"], ["description", "Consequatur consequatur autem sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.641056"], ["updated_at", "2020-05-05 18:15:43.641056"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Ut ea asperiores nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.643782"], ["updated_at", "2020-05-05 18:15:43.643782"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "distinctio"], ["description", "Ut quidem doloremque voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.645481"], ["updated_at", "2020-05-05 18:15:43.645481"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Aut reiciendis perferendis aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.647518"], ["updated_at", "2020-05-05 18:15:43.647518"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eius"], ["description", "Eveniet aut recusandae magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.649401"], ["updated_at", "2020-05-05 18:15:43.649401"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magnam"], ["description", "Voluptatem est iure voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.650815"], ["updated_at", "2020-05-05 18:15:43.650815"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Riva Bogan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vsRDI5.dM8JXl5ZRlbE8x.pkvdFXh5fvyYpyVuQ.DWTjOyWr7ChlW"], ["created_at", "2020-05-05 18:15:43.653720"], ["updated_at", "2020-05-05 18:15:43.653720"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:43 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.52ms) +Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:15:43 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:15:43.695448"], ["updated_at", "2020-05-05 18:15:43.695448"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.39ms) +Completed 201 Created in 23ms (Views: 0.8ms | ActiveRecord: 1.4ms | Allocations: 6197) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Non cumque enim rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.711394"], ["updated_at", "2020-05-05 18:15:43.711394"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Quis incidunt quia rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.716313"], ["updated_at", "2020-05-05 18:15:43.716313"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "delectus"], ["description", "Ipsam aperiam facere qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.718350"], ["updated_at", "2020-05-05 18:15:43.718350"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellat"], ["description", "Voluptas doloremque ut ullam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.721080"], ["updated_at", "2020-05-05 18:15:43.721080"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Quos sed dolorum non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.723529"], ["updated_at", "2020-05-05 18:15:43.723529"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Ex non incidunt nostrum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.725160"], ["updated_at", "2020-05-05 18:15:43.725160"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quaerat"], ["description", "Consequatur hic asperiores velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.726516"], ["updated_at", "2020-05-05 18:15:43.726516"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Quis molestias veritatis mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.727815"], ["updated_at", "2020-05-05 18:15:43.727815"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facere"], ["description", "Eveniet provident autem aliquid."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.729121"], ["updated_at", "2020-05-05 18:15:43.729121"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Similique aperiam occaecati odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.730430"], ["updated_at", "2020-05-05 18:15:43.730430"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Alla Howell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WI4.GsL202lBQ/3lcLPHluQ8nziGLQ/EHqNHvTXFdi8s/bRf5.ggq"], ["created_at", "2020-05-05 18:15:43.733957"], ["updated_at", "2020-05-05 18:15:43.733957"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:43 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.22ms) +Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:15:43 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:15:43.747503"], ["updated_at", "2020-05-05 18:15:43.747503"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.3ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.51ms) +Completed 201 Created in 7ms (Views: 0.9ms | ActiveRecord: 0.8ms | Allocations: 2251) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempore"], ["description", "Sint et reprehenderit id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.763690"], ["updated_at", "2020-05-05 18:15:43.763690"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Perferendis molestiae expedita sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.766545"], ["updated_at", "2020-05-05 18:15:43.766545"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Et dolorem iusto iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.767979"], ["updated_at", "2020-05-05 18:15:43.767979"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corrupti"], ["description", "Adipisci numquam rerum quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.769274"], ["updated_at", "2020-05-05 18:15:43.769274"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Magni totam dolorem eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.770562"], ["updated_at", "2020-05-05 18:15:43.770562"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "soluta"], ["description", "Ea unde beatae et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.771786"], ["updated_at", "2020-05-05 18:15:43.771786"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Eum dolores eos velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.773119"], ["updated_at", "2020-05-05 18:15:43.773119"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Quia suscipit aut et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.776021"], ["updated_at", "2020-05-05 18:15:43.776021"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Ea quasi dignissimos quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.778330"], ["updated_at", "2020-05-05 18:15:43.778330"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "libero"], ["description", "Numquam magni quis animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.780848"], ["updated_at", "2020-05-05 18:15:43.780848"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Pablo Kunde Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tLRMuSZiYwdYz9NDvj6BcedTIKVs4/JpzPosdTx/48vB/F3OD3RMG"], ["created_at", "2020-05-05 18:15:43.784619"], ["updated_at", "2020-05-05 18:15:43.784619"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:43 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.56ms) +Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:15:43 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 4090) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Est exercitationem consequatur a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.810599"], ["updated_at", "2020-05-05 18:15:43.810599"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Soluta corrupti exercitationem magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.813407"], ["updated_at", "2020-05-05 18:15:43.813407"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "saepe"], ["description", "Ipsum ut sit voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.817019"], ["updated_at", "2020-05-05 18:15:43.817019"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quos"], ["description", "Aliquid modi est aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.819106"], ["updated_at", "2020-05-05 18:15:43.819106"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Excepturi eius aliquam dolore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.821653"], ["updated_at", "2020-05-05 18:15:43.821653"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "saepe"], ["description", "Nesciunt quod voluptas sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.823648"], ["updated_at", "2020-05-05 18:15:43.823648"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vitae"], ["description", "Numquam assumenda eos tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.825013"], ["updated_at", "2020-05-05 18:15:43.825013"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Corrupti quod adipisci provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.826319"], ["updated_at", "2020-05-05 18:15:43.826319"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Aut quia sit necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.827598"], ["updated_at", "2020-05-05 18:15:43.827598"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Qui voluptas suscipit sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.828988"], ["updated_at", "2020-05-05 18:15:43.828988"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Erin McCullough"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$PK4P.OUKxV8z1sP.iZLLDu6vIyqKzYZOs/ql9VFew.uQ77WEUkGjy"], ["created_at", "2020-05-05 18:15:43.831678"], ["updated_at", "2020-05-05 18:15:43.831678"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:43 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.57ms) +Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms | Allocations: 2846) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:15:43 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempore"], ["description", "Veniam voluptates voluptas qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.858897"], ["updated_at", "2020-05-05 18:15:43.858897"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Est corrupti ut molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.861715"], ["updated_at", "2020-05-05 18:15:43.861715"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Provident ipsam minus atque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.863247"], ["updated_at", "2020-05-05 18:15:43.863247"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Accusantium nihil ipsam eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.864595"], ["updated_at", "2020-05-05 18:15:43.864595"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptate"], ["description", "Ut quia quidem possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.866718"], ["updated_at", "2020-05-05 18:15:43.866718"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Aspernatur iusto sint quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.868100"], ["updated_at", "2020-05-05 18:15:43.868100"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veniam"], ["description", "Voluptates et eum fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.869383"], ["updated_at", "2020-05-05 18:15:43.869383"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "expedita"], ["description", "Fugit sequi qui facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.870578"], ["updated_at", "2020-05-05 18:15:43.870578"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Sint a aspernatur molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.871782"], ["updated_at", "2020-05-05 18:15:43.871782"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Beatae illum labore odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.873052"], ["updated_at", "2020-05-05 18:15:43.873052"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ardella Halvorson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gBL9ItmpUvFCAFbJIk81.eFUwf1rmmGtUkQYMQgoU1kXKD34ruXM2"], ["created_at", "2020-05-05 18:15:43.876317"], ["updated_at", "2020-05-05 18:15:43.876317"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:43 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.33ms) +Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.2ms | Allocations: 2845) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:15:43 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:15:43.889718"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1073) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Dolores sint fugit repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.900525"], ["updated_at", "2020-05-05 18:15:43.900525"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sequi"], ["description", "Neque est autem omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.903214"], ["updated_at", "2020-05-05 18:15:43.903214"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Assumenda rerum suscipit tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.904673"], ["updated_at", "2020-05-05 18:15:43.904673"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Ut ut aut molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.906103"], ["updated_at", "2020-05-05 18:15:43.906103"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corrupti"], ["description", "Qui voluptatem distinctio quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.907365"], ["updated_at", "2020-05-05 18:15:43.907365"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Nulla placeat praesentium quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.908665"], ["updated_at", "2020-05-05 18:15:43.908665"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quae"], ["description", "Nihil nostrum voluptas illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.909933"], ["updated_at", "2020-05-05 18:15:43.909933"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Tenetur officiis tempore aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.911205"], ["updated_at", "2020-05-05 18:15:43.911205"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "esse"], ["description", "Quo similique ullam sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.912489"], ["updated_at", "2020-05-05 18:15:43.912489"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eaque"], ["description", "Qui vel quisquam officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.913715"], ["updated_at", "2020-05-05 18:15:43.913715"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Carol Moore"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NN3Okhu/1WB3OYPbQHlSTe0xqz1KKNFcJS.OYctpaT05Wf2v9adSi"], ["created_at", "2020-05-05 18:15:43.918606"], ["updated_at", "2020-05-05 18:15:43.918606"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:43 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.42ms) +Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:15:43 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:15:43.930636"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 999) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (33.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Et et architecto omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.969451"], ["updated_at", "2020-05-05 18:15:43.969451"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corrupti"], ["description", "Quas libero sed odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.972208"], ["updated_at", "2020-05-05 18:15:43.972208"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "animi"], ["description", "In nam ut odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.973536"], ["updated_at", "2020-05-05 18:15:43.973536"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Eos numquam illo blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.974991"], ["updated_at", "2020-05-05 18:15:43.974991"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "error"], ["description", "Blanditiis quidem porro debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.977509"], ["updated_at", "2020-05-05 18:15:43.977509"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corrupti"], ["description", "Veritatis incidunt iusto id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.979284"], ["updated_at", "2020-05-05 18:15:43.979284"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "delectus"], ["description", "Quo nam rerum consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.983310"], ["updated_at", "2020-05-05 18:15:43.983310"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequuntur"], ["description", "Qui magni animi nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.985907"], ["updated_at", "2020-05-05 18:15:43.985907"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "debitis"], ["description", "Inventore esse nihil autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.987311"], ["updated_at", "2020-05-05 18:15:43.987311"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Et possimus velit non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:15:43.988569"], ["updated_at", "2020-05-05 18:15:43.988569"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Thomas Mante"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GRCqxHvme8L17xhICqFSHe9KLg7pUTYVS0einDXgWCml2vSY5NPOa"], ["created_at", "2020-05-05 18:15:43.991144"], ["updated_at", "2020-05-05 18:15:43.991144"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:15:43 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.39ms) +Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.1ms | Allocations: 2841) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:15:44 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1221) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (4.5ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (105.0ms) DELETE FROM "meetings"; +  (1.0ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (92.1ms) DELETE FROM "user_meets"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (131.2ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (83.6ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (108.2ms) DELETE FROM "conversations"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (96.1ms) DELETE FROM "messagems"; +  (1.0ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (89.0ms) DELETE FROM "users"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (4.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lewis Bogan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YYSpHslB.HOrcbooUn0bdOx.FF/Nwds5V7zE.9IAUZ8KYG9lvcim6"], ["created_at", "2020-05-05 18:16:42.951878"], ["updated_at", "2020-05-05 18:16:42.951878"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Quia cum aliquid repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:42.972147"], ["updated_at", "2020-05-05 18:16:42.972147"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptate quam impedit sit?"], ["description", "Beatae voluptatem voluptates molestiae."], ["date", "2020-05-06 18:16:42.994762"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.020449"], ["updated_at", "2020-05-05 18:16:43.020449"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel molestiae velit aperiam?"], ["description", "Repellendus et ipsa inventore."], ["date", "2020-05-06 18:16:43.022211"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.022978"], ["updated_at", "2020-05-05 18:16:43.022978"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur ut rerum ut?"], ["description", "Qui sed vero sit."], ["date", "2020-05-06 18:16:43.024172"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.024905"], ["updated_at", "2020-05-05 18:16:43.024905"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos aut dolorem ea?"], ["description", "Aut dignissimos est laborum."], ["date", "2020-05-06 18:16:43.026521"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.027951"], ["updated_at", "2020-05-05 18:16:43.027951"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos earum sit repudiandae?"], ["description", "Dolore id esse beatae."], ["date", "2020-05-06 18:16:43.029500"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.030923"], ["updated_at", "2020-05-05 18:16:43.030923"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis possimus est expedita?"], ["description", "Ea qui id eligendi."], ["date", "2020-05-06 18:16:43.032289"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.033079"], ["updated_at", "2020-05-05 18:16:43.033079"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat enim aut sit?"], ["description", "Error voluptas voluptatem non."], ["date", "2020-05-06 18:16:43.034162"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.034857"], ["updated_at", "2020-05-05 18:16:43.034857"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti dolores quasi quod?"], ["description", "Debitis et vel et."], ["date", "2020-05-06 18:16:43.036026"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.036763"], ["updated_at", "2020-05-05 18:16:43.036763"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam qui nesciunt voluptate?"], ["description", "Odit ipsum voluptatem impedit."], ["date", "2020-05-06 18:16:43.037928"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.038609"], ["updated_at", "2020-05-05 18:16:43.038609"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui ipsam quia aut?"], ["description", "Officia nesciunt natus omnis."], ["date", "2020-05-06 18:16:43.040539"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.041349"], ["updated_at", "2020-05-05 18:16:43.041349"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores quo in explicabo?"], ["description", "Aliquam eveniet nihil et."], ["date", "2020-05-06 18:16:43.042711"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.043411"], ["updated_at", "2020-05-05 18:16:43.043411"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit iure ducimus velit?"], ["description", "Iure consequuntur laudantium incidunt."], ["date", "2020-05-06 18:16:43.044565"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.045294"], ["updated_at", "2020-05-05 18:16:43.045294"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime sed illum id?"], ["description", "Omnis assumenda rerum reprehenderit."], ["date", "2020-05-06 18:16:43.046745"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.048774"], ["updated_at", "2020-05-05 18:16:43.048774"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium blanditiis id dignissimos?"], ["description", "Et itaque sit quis."], ["date", "2020-05-06 18:16:43.050592"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.051441"], ["updated_at", "2020-05-05 18:16:43.051441"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut velit et minus?"], ["description", "Voluptas quia dolorem eaque."], ["date", "2020-05-06 18:16:43.052699"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.053392"], ["updated_at", "2020-05-05 18:16:43.053392"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et incidunt non quos?"], ["description", "Ut qui nemo et."], ["date", "2020-05-06 18:16:43.054563"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.055305"], ["updated_at", "2020-05-05 18:16:43.055305"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed commodi ducimus cum?"], ["description", "Cumque qui explicabo facere."], ["date", "2020-05-06 18:16:43.056664"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.057391"], ["updated_at", "2020-05-05 18:16:43.057391"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit error et fugit?"], ["description", "Cumque provident dicta aut."], ["date", "2020-05-06 18:16:43.058559"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.059288"], ["updated_at", "2020-05-05 18:16:43.059288"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos quibusdam harum quae?"], ["description", "Distinctio et labore voluptas."], ["date", "2020-05-06 18:16:43.060376"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.061071"], ["updated_at", "2020-05-05 18:16:43.061071"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur porro esse et?"], ["description", "Qui consectetur rerum nemo."], ["date", "2020-05-06 18:16:43.062192"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.062890"], ["updated_at", "2020-05-05 18:16:43.062890"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:16:43 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (9.73ms) +Completed 200 OK in 35ms (Views: 16.7ms | ActiveRecord: 0.5ms | Allocations: 8636) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Demetrius Wilkinson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$wxhysIHA6VkH5jbbJbYplu4.xMjidTT8h2yK.SUEj2L6E5xjaom6."], ["created_at", "2020-05-05 18:16:43.151070"], ["updated_at", "2020-05-05 18:16:43.151070"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "soluta"], ["description", "Incidunt officiis doloribus eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.154872"], ["updated_at", "2020-05-05 18:16:43.154872"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum enim et aut?"], ["description", "Praesentium nobis sapiente ea."], ["date", "2020-05-06 18:16:43.156515"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.157520"], ["updated_at", "2020-05-05 18:16:43.157520"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem atque velit dolores?"], ["description", "Sit beatae fuga adipisci."], ["date", "2020-05-06 18:16:43.158918"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.159643"], ["updated_at", "2020-05-05 18:16:43.159643"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro laboriosam at aliquid?"], ["description", "Eveniet voluptas id autem."], ["date", "2020-05-06 18:16:43.160831"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.161518"], ["updated_at", "2020-05-05 18:16:43.161518"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis ut non commodi?"], ["description", "Officiis voluptate animi ducimus."], ["date", "2020-05-06 18:16:43.162729"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.163650"], ["updated_at", "2020-05-05 18:16:43.163650"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas dignissimos totam optio?"], ["description", "Alias est facere nisi."], ["date", "2020-05-06 18:16:43.165462"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.166398"], ["updated_at", "2020-05-05 18:16:43.166398"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui aut suscipit enim?"], ["description", "Aut tenetur laboriosam sint."], ["date", "2020-05-06 18:16:43.168143"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.169256"], ["updated_at", "2020-05-05 18:16:43.169256"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id unde illum rerum?"], ["description", "Itaque quia in nostrum."], ["date", "2020-05-06 18:16:43.170601"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.171277"], ["updated_at", "2020-05-05 18:16:43.171277"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum aut ipsam non?"], ["description", "Deserunt modi quo nesciunt."], ["date", "2020-05-06 18:16:43.172566"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.173345"], ["updated_at", "2020-05-05 18:16:43.173345"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et natus magni quia?"], ["description", "Dicta mollitia qui inventore."], ["date", "2020-05-06 18:16:43.174775"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.176039"], ["updated_at", "2020-05-05 18:16:43.176039"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab impedit veniam et?"], ["description", "Molestias enim quis tenetur."], ["date", "2020-05-06 18:16:43.178498"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.179579"], ["updated_at", "2020-05-05 18:16:43.179579"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta nam veniam laboriosam?"], ["description", "Eum qui voluptas accusamus."], ["date", "2020-05-06 18:16:43.181424"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.182382"], ["updated_at", "2020-05-05 18:16:43.182382"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident explicabo omnis sapiente?"], ["description", "Itaque dolorem magnam fuga."], ["date", "2020-05-06 18:16:43.183866"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.184771"], ["updated_at", "2020-05-05 18:16:43.184771"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil eum temporibus numquam?"], ["description", "Est officiis eos numquam."], ["date", "2020-05-06 18:16:43.186119"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.187048"], ["updated_at", "2020-05-05 18:16:43.187048"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse dignissimos sunt cumque?"], ["description", "Consequatur dolore qui reiciendis."], ["date", "2020-05-06 18:16:43.189364"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.190369"], ["updated_at", "2020-05-05 18:16:43.190369"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam vero explicabo placeat?"], ["description", "Ullam qui assumenda magni."], ["date", "2020-05-06 18:16:43.191852"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.192595"], ["updated_at", "2020-05-05 18:16:43.192595"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia dolor occaecati qui?"], ["description", "Consectetur dolore mollitia ut."], ["date", "2020-05-06 18:16:43.193776"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.194470"], ["updated_at", "2020-05-05 18:16:43.194470"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est amet placeat vel?"], ["description", "Ipsa similique doloribus quisquam."], ["date", "2020-05-06 18:16:43.195671"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.196724"], ["updated_at", "2020-05-05 18:16:43.196724"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea quas ipsum distinctio?"], ["description", "Quasi earum nulla magni."], ["date", "2020-05-06 18:16:43.198425"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.199294"], ["updated_at", "2020-05-05 18:16:43.199294"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint explicabo sequi enim?"], ["description", "Suscipit officiis nesciunt non."], ["date", "2020-05-06 18:16:43.200519"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.201199"], ["updated_at", "2020-05-05 18:16:43.201199"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni dolorem non ratione?"], ["description", "Quis occaecati veritatis amet."], ["date", "2020-05-06 18:16:43.202491"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.203235"], ["updated_at", "2020-05-05 18:16:43.203235"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:16:43 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.6ms) +Completed 200 OK in 12ms (Views: 10.9ms | ActiveRecord: 0.3ms | Allocations: 5515) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Sofia Leffler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dShdbIa.7gor6HYcqzV47eQmNI75ReqK5bSqjDVxxQm5pRVJfHQxy"], ["created_at", "2020-05-05 18:16:43.233109"], ["updated_at", "2020-05-05 18:16:43.233109"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Soluta consequatur aut et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.236762"], ["updated_at", "2020-05-05 18:16:43.236762"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla voluptatem consectetur officiis?"], ["description", "Nulla velit quisquam non."], ["date", "2020-05-06 18:16:43.238344"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.239322"], ["updated_at", "2020-05-05 18:16:43.239322"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum eos autem ea?"], ["description", "Nisi perferendis et in."], ["date", "2020-05-06 18:16:43.240677"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.241428"], ["updated_at", "2020-05-05 18:16:43.241428"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus velit ea eveniet?"], ["description", "Rem consequatur quia quia."], ["date", "2020-05-06 18:16:43.242584"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.243270"], ["updated_at", "2020-05-05 18:16:43.243270"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et assumenda molestias voluptatem?"], ["description", "Est nihil officia vel."], ["date", "2020-05-06 18:16:43.244428"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.245112"], ["updated_at", "2020-05-05 18:16:43.245112"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At ad illo architecto?"], ["description", "Qui sit illum ratione."], ["date", "2020-05-06 18:16:43.246475"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.247952"], ["updated_at", "2020-05-05 18:16:43.247952"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro iste sit non?"], ["description", "Harum adipisci accusamus nihil."], ["date", "2020-05-06 18:16:43.250131"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.251207"], ["updated_at", "2020-05-05 18:16:43.251207"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum id voluptate rerum?"], ["description", "Impedit libero ipsa quia."], ["date", "2020-05-06 18:16:43.253070"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.253963"], ["updated_at", "2020-05-05 18:16:43.253963"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit facilis quibusdam reiciendis?"], ["description", "Odio et quam enim."], ["date", "2020-05-06 18:16:43.255188"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.255911"], ["updated_at", "2020-05-05 18:16:43.255911"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A qui nostrum cumque?"], ["description", "Sunt in sint natus."], ["date", "2020-05-06 18:16:43.257151"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.257874"], ["updated_at", "2020-05-05 18:16:43.257874"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel cupiditate ea repellendus?"], ["description", "Vero voluptate minima enim."], ["date", "2020-05-06 18:16:43.259743"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.260511"], ["updated_at", "2020-05-05 18:16:43.260511"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem quia architecto eum?"], ["description", "Rerum magnam illo aliquid."], ["date", "2020-05-06 18:16:43.261852"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.262549"], ["updated_at", "2020-05-05 18:16:43.262549"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro dicta et possimus?"], ["description", "Quo quibusdam quo laboriosam."], ["date", "2020-05-06 18:16:43.264201"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.265211"], ["updated_at", "2020-05-05 18:16:43.265211"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis error perferendis autem?"], ["description", "Beatae nihil rerum eos."], ["date", "2020-05-06 18:16:43.266694"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.267687"], ["updated_at", "2020-05-05 18:16:43.267687"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam hic modi repudiandae?"], ["description", "Ut eaque vero amet."], ["date", "2020-05-06 18:16:43.269548"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.270489"], ["updated_at", "2020-05-05 18:16:43.270489"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident excepturi animi qui?"], ["description", "Magni velit debitis harum."], ["date", "2020-05-06 18:16:43.271847"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.272553"], ["updated_at", "2020-05-05 18:16:43.272553"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure libero earum cum?"], ["description", "Cum ut recusandae omnis."], ["date", "2020-05-06 18:16:43.273649"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.274334"], ["updated_at", "2020-05-05 18:16:43.274334"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident porro assumenda maxime?"], ["description", "Est officiis repellat omnis."], ["date", "2020-05-06 18:16:43.275658"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.276427"], ["updated_at", "2020-05-05 18:16:43.276427"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente et libero voluptatem?"], ["description", "Officia omnis eligendi autem."], ["date", "2020-05-06 18:16:43.277646"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.278358"], ["updated_at", "2020-05-05 18:16:43.278358"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo facere quia omnis?"], ["description", "Earum sequi expedita saepe."], ["date", "2020-05-06 18:16:43.279527"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.280317"], ["updated_at", "2020-05-05 18:16:43.280317"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui nihil sed impedit?"], ["description", "Quia et placeat nobis."], ["date", "2020-05-06 18:16:43.282744"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.283741"], ["updated_at", "2020-05-05 18:16:43.283741"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:16:43 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms) +Completed 404 Not Found in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms | Allocations: 865) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sanda Kohler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$lFxCY2abYMX2DCFGskvNP.Z0yyfz/nKCgmJA/GFmKOu4xmh0eCIWy"], ["created_at", "2020-05-05 18:16:43.303735"], ["updated_at", "2020-05-05 18:16:43.303735"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Dolorem perferendis sit cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.306692"], ["updated_at", "2020-05-05 18:16:43.306692"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur eum ducimus assumenda?"], ["description", "Occaecati est id omnis."], ["date", "2020-05-06 18:16:43.308773"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.310236"], ["updated_at", "2020-05-05 18:16:43.310236"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut ut error est?"], ["description", "Minus dignissimos consectetur debitis."], ["date", "2020-05-06 18:16:43.313005"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.314334"], ["updated_at", "2020-05-05 18:16:43.314334"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos non nostrum perspiciatis?"], ["description", "Autem sed vel sunt."], ["date", "2020-05-06 18:16:43.315957"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.316921"], ["updated_at", "2020-05-05 18:16:43.316921"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam at numquam sed?"], ["description", "Error eum adipisci ducimus."], ["date", "2020-05-06 18:16:43.318273"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.318994"], ["updated_at", "2020-05-05 18:16:43.318994"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque omnis quibusdam quisquam?"], ["description", "Sit dolorum rerum nulla."], ["date", "2020-05-06 18:16:43.320133"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.320817"], ["updated_at", "2020-05-05 18:16:43.320817"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas omnis illo consequuntur?"], ["description", "Maxime enim ipsam aut."], ["date", "2020-05-06 18:16:43.321985"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.322666"], ["updated_at", "2020-05-05 18:16:43.322666"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non quasi quae nisi?"], ["description", "Voluptatem ipsum enim harum."], ["date", "2020-05-06 18:16:43.323808"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.324490"], ["updated_at", "2020-05-05 18:16:43.324490"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et ad non molestiae?"], ["description", "Nulla assumenda et facilis."], ["date", "2020-05-06 18:16:43.325675"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.326425"], ["updated_at", "2020-05-05 18:16:43.326425"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil mollitia doloremque possimus?"], ["description", "Expedita mollitia tenetur veniam."], ["date", "2020-05-06 18:16:43.327727"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.329209"], ["updated_at", "2020-05-05 18:16:43.329209"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat architecto error libero?"], ["description", "Fugit non dolores enim."], ["date", "2020-05-06 18:16:43.333325"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.334340"], ["updated_at", "2020-05-05 18:16:43.334340"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus beatae rerum repudiandae?"], ["description", "Id sed doloremque eius."], ["date", "2020-05-06 18:16:43.335915"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.336745"], ["updated_at", "2020-05-05 18:16:43.336745"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum alias et iste?"], ["description", "Accusamus facilis nulla et."], ["date", "2020-05-06 18:16:43.337937"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.338641"], ["updated_at", "2020-05-05 18:16:43.338641"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil et asperiores voluptatem?"], ["description", "In ea libero dolore."], ["date", "2020-05-06 18:16:43.339775"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.340470"], ["updated_at", "2020-05-05 18:16:43.340470"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius architecto quo ipsum?"], ["description", "Eum non hic inventore."], ["date", "2020-05-06 18:16:43.341727"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.342466"], ["updated_at", "2020-05-05 18:16:43.342466"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure saepe et et?"], ["description", "Eum totam enim sit."], ["date", "2020-05-06 18:16:43.343724"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.344470"], ["updated_at", "2020-05-05 18:16:43.344470"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores itaque nam quos?"], ["description", "Quia aut iste nam."], ["date", "2020-05-06 18:16:43.345850"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.346861"], ["updated_at", "2020-05-05 18:16:43.346861"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut non nam ea?"], ["description", "Pariatur rerum debitis culpa."], ["date", "2020-05-06 18:16:43.348927"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.350528"], ["updated_at", "2020-05-05 18:16:43.350528"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non repudiandae architecto minima?"], ["description", "Vitae excepturi molestias adipisci."], ["date", "2020-05-06 18:16:43.352110"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.352989"], ["updated_at", "2020-05-05 18:16:43.352989"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit nobis autem nesciunt?"], ["description", "Possimus et deserunt eveniet."], ["date", "2020-05-06 18:16:43.354238"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.354967"], ["updated_at", "2020-05-05 18:16:43.354967"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam voluptas distinctio odit?"], ["description", "Id at eaque ut."], ["date", "2020-05-06 18:16:43.356266"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.357018"], ["updated_at", "2020-05-05 18:16:43.357018"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:16:43 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Heriberto Bergnaum"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$upYlnXOzmvMJ/xH8MGHNG.j.UG3dtFflwbUBg.lBlTA3UmGQtAYQO"], ["created_at", "2020-05-05 18:16:43.375873"], ["updated_at", "2020-05-05 18:16:43.375873"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ab"], ["description", "Similique eos expedita molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.378826"], ["updated_at", "2020-05-05 18:16:43.378826"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit nostrum possimus modi?"], ["description", "Rem eaque facere itaque."], ["date", "2020-05-06 18:16:43.380354"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.381839"], ["updated_at", "2020-05-05 18:16:43.381839"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque voluptatem illum veniam?"], ["description", "Earum quibusdam officia deserunt."], ["date", "2020-05-06 18:16:43.383471"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.384291"], ["updated_at", "2020-05-05 18:16:43.384291"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum quas praesentium alias?"], ["description", "Quos et aut sed."], ["date", "2020-05-06 18:16:43.385483"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.386226"], ["updated_at", "2020-05-05 18:16:43.386226"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium nam assumenda omnis?"], ["description", "In similique neque iusto."], ["date", "2020-05-06 18:16:43.387465"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.388368"], ["updated_at", "2020-05-05 18:16:43.388368"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus similique excepturi architecto?"], ["description", "Quo omnis aut cupiditate."], ["date", "2020-05-06 18:16:43.390381"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.391471"], ["updated_at", "2020-05-05 18:16:43.391471"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem voluptates omnis quia?"], ["description", "Minus voluptatem ut cum."], ["date", "2020-05-06 18:16:43.393432"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.394338"], ["updated_at", "2020-05-05 18:16:43.394338"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo quis omnis earum?"], ["description", "Accusamus quo magni qui."], ["date", "2020-05-06 18:16:43.395548"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.396301"], ["updated_at", "2020-05-05 18:16:43.396301"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est tempore nihil veniam?"], ["description", "Praesentium quibusdam velit inventore."], ["date", "2020-05-06 18:16:43.397876"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.399092"], ["updated_at", "2020-05-05 18:16:43.399092"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem vero sit saepe?"], ["description", "Qui temporibus assumenda et."], ["date", "2020-05-06 18:16:43.400456"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.401303"], ["updated_at", "2020-05-05 18:16:43.401303"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id modi itaque non?"], ["description", "Earum ipsam consequatur inventore."], ["date", "2020-05-06 18:16:43.403424"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.404292"], ["updated_at", "2020-05-05 18:16:43.404292"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed sunt omnis unde?"], ["description", "Impedit architecto sint et."], ["date", "2020-05-06 18:16:43.405655"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.406398"], ["updated_at", "2020-05-05 18:16:43.406398"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui magnam omnis et?"], ["description", "Voluptate rem dolor expedita."], ["date", "2020-05-06 18:16:43.407709"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.408787"], ["updated_at", "2020-05-05 18:16:43.408787"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae ut dolore porro?"], ["description", "Quia facilis et quae."], ["date", "2020-05-06 18:16:43.410662"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.411663"], ["updated_at", "2020-05-05 18:16:43.411663"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae dolorem voluptatem iure?"], ["description", "Et sit magnam accusamus."], ["date", "2020-05-06 18:16:43.413082"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.414344"], ["updated_at", "2020-05-05 18:16:43.414344"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim possimus suscipit quaerat?"], ["description", "Aut magnam quia similique."], ["date", "2020-05-06 18:16:43.416190"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.417075"], ["updated_at", "2020-05-05 18:16:43.417075"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod minima reiciendis voluptas?"], ["description", "Inventore doloremque molestiae dolor."], ["date", "2020-05-06 18:16:43.418346"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.419042"], ["updated_at", "2020-05-05 18:16:43.419042"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed eos alias doloremque?"], ["description", "Sint libero minima qui."], ["date", "2020-05-06 18:16:43.420202"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.420922"], ["updated_at", "2020-05-05 18:16:43.420922"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque et libero qui?"], ["description", "Fuga iure sed commodi."], ["date", "2020-05-06 18:16:43.422160"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.422849"], ["updated_at", "2020-05-05 18:16:43.422849"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam saepe tempore sequi?"], ["description", "Nam impedit iste nihil."], ["date", "2020-05-06 18:16:43.424139"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.424914"], ["updated_at", "2020-05-05 18:16:43.424914"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id alias aperiam incidunt?"], ["description", "Voluptates et nulla tempore."], ["date", "2020-05-06 18:16:43.426425"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.427239"], ["updated_at", "2020-05-05 18:16:43.427239"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:16:43 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.83ms) +Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.3ms | Allocations: 1086) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (18.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Richie Considine"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$myssKJi6S7uhUBKGpSFQzePT6YyS9g5vQyTHX9rxuaLS0c9dFB2Rm"], ["created_at", "2020-05-05 18:16:43.458156"], ["updated_at", "2020-05-05 18:16:43.458156"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illum"], ["description", "Quia aperiam quis incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.461810"], ["updated_at", "2020-05-05 18:16:43.461810"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut eos perspiciatis laborum?"], ["description", "Voluptas voluptatem rem impedit."], ["date", "2020-05-06 18:16:43.464033"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.465171"], ["updated_at", "2020-05-05 18:16:43.465171"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione et tempora accusamus?"], ["description", "Et est consequatur non."], ["date", "2020-05-06 18:16:43.466588"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.467348"], ["updated_at", "2020-05-05 18:16:43.467348"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis repellat vero voluptas?"], ["description", "Recusandae voluptas quas rerum."], ["date", "2020-05-06 18:16:43.468933"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.470719"], ["updated_at", "2020-05-05 18:16:43.470719"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex sed vitae ut?"], ["description", "Voluptatem quos veniam aspernatur."], ["date", "2020-05-06 18:16:43.472740"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.473702"], ["updated_at", "2020-05-05 18:16:43.473702"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium necessitatibus et expedita?"], ["description", "Provident earum sit architecto."], ["date", "2020-05-06 18:16:43.475015"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.475806"], ["updated_at", "2020-05-05 18:16:43.475806"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt error et illo?"], ["description", "Ad qui quis consequatur."], ["date", "2020-05-06 18:16:43.476983"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.477691"], ["updated_at", "2020-05-05 18:16:43.477691"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem itaque fugiat labore?"], ["description", "Omnis perferendis eos ab."], ["date", "2020-05-06 18:16:43.478960"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.479659"], ["updated_at", "2020-05-05 18:16:43.479659"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Adipisci et ducimus aut?"], ["description", "Quibusdam qui sed incidunt."], ["date", "2020-05-06 18:16:43.481471"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.482762"], ["updated_at", "2020-05-05 18:16:43.482762"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim quia nesciunt aliquid?"], ["description", "Perspiciatis rerum et porro."], ["date", "2020-05-06 18:16:43.484187"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.485001"], ["updated_at", "2020-05-05 18:16:43.485001"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa odit quia sed?"], ["description", "Quo provident quisquam et."], ["date", "2020-05-06 18:16:43.487077"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.488000"], ["updated_at", "2020-05-05 18:16:43.488000"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro iure asperiores excepturi?"], ["description", "Qui qui maxime optio."], ["date", "2020-05-06 18:16:43.490227"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.491351"], ["updated_at", "2020-05-05 18:16:43.491351"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Hic perspiciatis qui pariatur?"], ["description", "Quae et pariatur error."], ["date", "2020-05-06 18:16:43.492721"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.493434"], ["updated_at", "2020-05-05 18:16:43.493434"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam vel eius blanditiis?"], ["description", "Est sit aspernatur qui."], ["date", "2020-05-06 18:16:43.494722"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.495448"], ["updated_at", "2020-05-05 18:16:43.495448"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt praesentium doloremque voluptas?"], ["description", "Qui in sit animi."], ["date", "2020-05-06 18:16:43.496740"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.497513"], ["updated_at", "2020-05-05 18:16:43.497513"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe asperiores optio cum?"], ["description", "Dolor at et accusamus."], ["date", "2020-05-06 18:16:43.498799"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.499510"], ["updated_at", "2020-05-05 18:16:43.499510"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea quae atque quia?"], ["description", "Provident nemo fugit modi."], ["date", "2020-05-06 18:16:43.500733"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.501465"], ["updated_at", "2020-05-05 18:16:43.501465"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem reprehenderit accusamus quis?"], ["description", "Quasi eveniet voluptas aut."], ["date", "2020-05-06 18:16:43.502697"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.503387"], ["updated_at", "2020-05-05 18:16:43.503387"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit molestiae cupiditate iste?"], ["description", "Eius provident praesentium voluptas."], ["date", "2020-05-06 18:16:43.504789"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.505625"], ["updated_at", "2020-05-05 18:16:43.505625"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste natus impedit enim?"], ["description", "Fugit incidunt qui autem."], ["date", "2020-05-06 18:16:43.507022"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.508001"], ["updated_at", "2020-05-05 18:16:43.508001"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error libero non sit?"], ["description", "Ullam tempora consequatur sed."], ["date", "2020-05-06 18:16:43.510366"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:16:43.511505"], ["updated_at", "2020-05-05 18:16:43.511505"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:16:43 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.68ms) +Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.3ms | Allocations: 1058) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (3.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "exercitationem"], ["description", "Voluptas sint aliquid unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.568414"], ["updated_at", "2020-05-05 18:16:43.568414"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Quo id magni dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.575115"], ["updated_at", "2020-05-05 18:16:43.575115"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Aspernatur consequatur amet et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.578085"], ["updated_at", "2020-05-05 18:16:43.578085"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellat"], ["description", "Ut vel qui et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.580542"], ["updated_at", "2020-05-05 18:16:43.580542"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laborum"], ["description", "Consequuntur fugit molestias ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.582383"], ["updated_at", "2020-05-05 18:16:43.582383"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Ducimus dolores quas optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.583710"], ["updated_at", "2020-05-05 18:16:43.583710"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Repudiandae exercitationem perspiciatis ipsum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.585017"], ["updated_at", "2020-05-05 18:16:43.585017"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magni"], ["description", "Totam ea ut alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.586356"], ["updated_at", "2020-05-05 18:16:43.586356"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "commodi"], ["description", "Temporibus illum tempora qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.587809"], ["updated_at", "2020-05-05 18:16:43.587809"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illo"], ["description", "Dolorem vel itaque harum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.589412"], ["updated_at", "2020-05-05 18:16:43.589412"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Sharri Denesik"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FYhLbheju5oy8NL1NW0g7Oun4ECiuHdy2k8UkJTv0ykxqiewFHqOK"], ["created_at", "2020-05-05 18:16:43.593187"], ["updated_at", "2020-05-05 18:16:43.593187"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:16:43 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.88ms) +Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.3ms | Allocations: 3004) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quae"], ["description", "Commodi nam eum est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.619243"], ["updated_at", "2020-05-05 18:16:43.619243"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "libero"], ["description", "Ad sit ducimus laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.622198"], ["updated_at", "2020-05-05 18:16:43.622198"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Pariatur quibusdam qui sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.623701"], ["updated_at", "2020-05-05 18:16:43.623701"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "in"], ["description", "Magnam sint quo non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.625073"], ["updated_at", "2020-05-05 18:16:43.625073"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veniam"], ["description", "Consequatur quam nam eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.626500"], ["updated_at", "2020-05-05 18:16:43.626500"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ullam"], ["description", "Quia rerum earum porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.627880"], ["updated_at", "2020-05-05 18:16:43.627880"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Recusandae nihil blanditiis amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.629484"], ["updated_at", "2020-05-05 18:16:43.629484"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "labore"], ["description", "Aliquam ducimus ut aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.633411"], ["updated_at", "2020-05-05 18:16:43.633411"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repudiandae"], ["description", "Sit iste quidem aliquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.635490"], ["updated_at", "2020-05-05 18:16:43.635490"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Voluptas corporis officiis assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.638055"], ["updated_at", "2020-05-05 18:16:43.638055"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Angelo Hirthe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RkKmnCCtUI90JlRjS/YKpOH1orjdfDa7bUwVvS/1cJYvM0NW/4NgO"], ["created_at", "2020-05-05 18:16:43.641255"], ["updated_at", "2020-05-05 18:16:43.641255"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:16:43 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.62ms) +Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms | Allocations: 2842) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (28.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "harum"], ["description", "Suscipit hic in autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.659746"], ["updated_at", "2020-05-05 18:16:43.659746"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Aliquam perspiciatis id et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.690265"], ["updated_at", "2020-05-05 18:16:43.690265"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "praesentium"], ["description", "Sed eos maxime et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.694010"], ["updated_at", "2020-05-05 18:16:43.694010"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laudantium"], ["description", "Neque quod voluptatum maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.695685"], ["updated_at", "2020-05-05 18:16:43.695685"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aperiam"], ["description", "Nisi perspiciatis dolor est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.696987"], ["updated_at", "2020-05-05 18:16:43.696987"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "architecto"], ["description", "Cumque ratione fugit earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.698287"], ["updated_at", "2020-05-05 18:16:43.698287"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Adipisci odit quaerat ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.699604"], ["updated_at", "2020-05-05 18:16:43.699604"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Ut sunt praesentium odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.700895"], ["updated_at", "2020-05-05 18:16:43.700895"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "delectus"], ["description", "Id laboriosam reiciendis culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.702237"], ["updated_at", "2020-05-05 18:16:43.702237"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "a"], ["description", "Voluptatum dolor voluptas id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.703520"], ["updated_at", "2020-05-05 18:16:43.703520"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sidney Bogisich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dMmgSJvNFdSWjOLS7NAWge3PunhbkJpjsDuUIut2pRYCIVs1Tz83q"], ["created_at", "2020-05-05 18:16:43.707377"], ["updated_at", "2020-05-05 18:16:43.707377"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:16:43 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.88ms) +Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:16:43 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.25ms) +Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.2ms | Allocations: 1241) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Expedita ratione aut totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.729597"], ["updated_at", "2020-05-05 18:16:43.729597"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Odio et necessitatibus quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.735769"], ["updated_at", "2020-05-05 18:16:43.735769"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illum"], ["description", "Corrupti est qui facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.738171"], ["updated_at", "2020-05-05 18:16:43.738171"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Dignissimos quis enim et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.739593"], ["updated_at", "2020-05-05 18:16:43.739593"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Rerum molestiae iste voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.740930"], ["updated_at", "2020-05-05 18:16:43.740930"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Quas voluptas nam sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.742291"], ["updated_at", "2020-05-05 18:16:43.742291"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsam"], ["description", "Nam quia suscipit voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.743599"], ["updated_at", "2020-05-05 18:16:43.743599"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sapiente"], ["description", "Deserunt modi qui laboriosam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.745022"], ["updated_at", "2020-05-05 18:16:43.745022"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Et natus nisi ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.746410"], ["updated_at", "2020-05-05 18:16:43.746410"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Quam dolores omnis cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.748155"], ["updated_at", "2020-05-05 18:16:43.748155"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Curtis Wuckert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nUwC0cfaXXBXS4pZNC.5Vuhk/LDsIrTi0DcCLXKFeIyRdLugAkElq"], ["created_at", "2020-05-05 18:16:43.751464"], ["updated_at", "2020-05-05 18:16:43.751464"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:16:43 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2844) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:16:43 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.33ms) +Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.3ms | Allocations: 1240) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Molestiae culpa et dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.775443"], ["updated_at", "2020-05-05 18:16:43.775443"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "atque"], ["description", "Sapiente ullam accusantium officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.778588"], ["updated_at", "2020-05-05 18:16:43.778588"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "mollitia"], ["description", "Aspernatur consequatur placeat dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.781169"], ["updated_at", "2020-05-05 18:16:43.781169"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "reprehenderit"], ["description", "Sit perspiciatis dolore veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.783131"], ["updated_at", "2020-05-05 18:16:43.783131"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Nihil laborum quisquam repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.784633"], ["updated_at", "2020-05-05 18:16:43.784633"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "libero"], ["description", "Nam porro culpa est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.786236"], ["updated_at", "2020-05-05 18:16:43.786236"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Ipsum ut quos laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.787676"], ["updated_at", "2020-05-05 18:16:43.787676"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Nihil hic et ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.788953"], ["updated_at", "2020-05-05 18:16:43.788953"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorum"], ["description", "Quas tempora est est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.790370"], ["updated_at", "2020-05-05 18:16:43.790370"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "delectus"], ["description", "Commodi odit explicabo deleniti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.793038"], ["updated_at", "2020-05-05 18:16:43.793038"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Herbert O'Reilly"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7iINY/V7BOfukxFg.c1GNOg.sSLMxoC7neH82A0cllIMllaLjKAbC"], ["created_at", "2020-05-05 18:16:43.796611"], ["updated_at", "2020-05-05 18:16:43.796611"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:16:43 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.12ms) +Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:16:43 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consectetur"], ["description", "Non enim provident cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.817164"], ["updated_at", "2020-05-05 18:16:43.817164"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Dolore sit optio labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.820510"], ["updated_at", "2020-05-05 18:16:43.820510"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloremque"], ["description", "Eos est consequatur cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.822677"], ["updated_at", "2020-05-05 18:16:43.822677"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ab"], ["description", "Tempore animi officiis doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.824220"], ["updated_at", "2020-05-05 18:16:43.824220"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sequi"], ["description", "Perferendis repellendus animi consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.825629"], ["updated_at", "2020-05-05 18:16:43.825629"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consectetur"], ["description", "Provident numquam possimus amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.827124"], ["updated_at", "2020-05-05 18:16:43.827124"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Fuga sed iure doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.828476"], ["updated_at", "2020-05-05 18:16:43.828476"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Sapiente in magni sequi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.830317"], ["updated_at", "2020-05-05 18:16:43.830317"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "placeat"], ["description", "Autem rerum voluptatum cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.833158"], ["updated_at", "2020-05-05 18:16:43.833158"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "excepturi"], ["description", "Quae omnis molestias et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.835607"], ["updated_at", "2020-05-05 18:16:43.835607"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Annice Koss"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5ZcYpMWqVoa.GQe4jLK1I.I4x8N3L7wrtCpCReoOijU8EZ3r/9z9O"], ["created_at", "2020-05-05 18:16:43.838524"], ["updated_at", "2020-05-05 18:16:43.838524"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:16:43 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (22.36ms) +Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.1ms | Allocations: 2848) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:16:43 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Itaque suscipit debitis nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.877797"], ["updated_at", "2020-05-05 18:16:43.877797"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "excepturi"], ["description", "Consequatur soluta ut nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.881220"], ["updated_at", "2020-05-05 18:16:43.881220"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Quia quo iste rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.883054"], ["updated_at", "2020-05-05 18:16:43.883054"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "modi"], ["description", "Quo illum vel officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.884370"], ["updated_at", "2020-05-05 18:16:43.884370"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Architecto facilis saepe quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.885721"], ["updated_at", "2020-05-05 18:16:43.885721"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cumque"], ["description", "Nisi sit eum nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.887048"], ["updated_at", "2020-05-05 18:16:43.887048"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Temporibus quia delectus modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.888439"], ["updated_at", "2020-05-05 18:16:43.888439"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "itaque"], ["description", "Adipisci et tempora blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.889769"], ["updated_at", "2020-05-05 18:16:43.889769"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vitae"], ["description", "Natus minus asperiores ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.891150"], ["updated_at", "2020-05-05 18:16:43.891150"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugit"], ["description", "Est inventore et at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.893435"], ["updated_at", "2020-05-05 18:16:43.893435"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Jerald Aufderhar"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jkZqeBn7BxpNUCEfMc.Q1uAm33xFpuFW8hhdqy29Nbw.B0TQjVm32"], ["created_at", "2020-05-05 18:16:43.897318"], ["updated_at", "2020-05-05 18:16:43.897318"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:16:43 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | ActiveRecord: 0.1ms | Allocations: 2842) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:16:43 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:16:43.943014"], ["updated_at", "2020-05-05 18:16:43.943014"], ["created_by", "1"]] +  (0.2ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.57ms) +Completed 201 Created in 23ms (Views: 1.0ms | ActiveRecord: 1.3ms | Allocations: 6231) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Quos corporis natus odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.961644"], ["updated_at", "2020-05-05 18:16:43.961644"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Eius impedit et neque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.965800"], ["updated_at", "2020-05-05 18:16:43.965800"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Quidem molestiae minima neque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.968278"], ["updated_at", "2020-05-05 18:16:43.968278"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nesciunt"], ["description", "Sed voluptas inventore corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.969778"], ["updated_at", "2020-05-05 18:16:43.969778"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odit"], ["description", "Rerum odio culpa minus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.971165"], ["updated_at", "2020-05-05 18:16:43.971165"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "pariatur"], ["description", "Sed neque temporibus doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.973812"], ["updated_at", "2020-05-05 18:16:43.973812"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Porro sed atque modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.976070"], ["updated_at", "2020-05-05 18:16:43.976070"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Sit eos architecto quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.977474"], ["updated_at", "2020-05-05 18:16:43.977474"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "animi"], ["description", "Et vero voluptatem quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.978786"], ["updated_at", "2020-05-05 18:16:43.978786"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Excepturi voluptatem fuga totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:43.980259"], ["updated_at", "2020-05-05 18:16:43.980259"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ettie Jaskolski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1yLQ7UdAsHtYUgjTV48KKebvlD//qgNdJZvkKjjs.EPjNvh6.QDdC"], ["created_at", "2020-05-05 18:16:43.983387"], ["updated_at", "2020-05-05 18:16:43.983387"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:16:43 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.21ms) +Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:16:43 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:16:43.994628"], ["updated_at", "2020-05-05 18:16:43.994628"], ["created_by", "1"]] +  (0.2ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.3ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.41ms) +Completed 201 Created in 6ms (Views: 0.9ms | ActiveRecord: 0.8ms | Allocations: 2217) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (11.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Illo dolorum aperiam eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.014625"], ["updated_at", "2020-05-05 18:16:44.014625"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolore"], ["description", "Fuga quod sed et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.017957"], ["updated_at", "2020-05-05 18:16:44.017957"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repudiandae"], ["description", "Quidem voluptatem autem necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.019598"], ["updated_at", "2020-05-05 18:16:44.019598"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laborum"], ["description", "Voluptatem voluptates iure asperiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.021054"], ["updated_at", "2020-05-05 18:16:44.021054"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eveniet"], ["description", "Incidunt culpa quidem omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.022342"], ["updated_at", "2020-05-05 18:16:44.022342"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Cum velit vitae architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.023619"], ["updated_at", "2020-05-05 18:16:44.023619"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ex"], ["description", "Aliquam et quidem magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.024874"], ["updated_at", "2020-05-05 18:16:44.024874"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ducimus"], ["description", "Sunt quam ea earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.026162"], ["updated_at", "2020-05-05 18:16:44.026162"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aspernatur"], ["description", "Omnis perspiciatis dolorem voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.027458"], ["updated_at", "2020-05-05 18:16:44.027458"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Saepe id voluptatem quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.028743"], ["updated_at", "2020-05-05 18:16:44.028743"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jenny Ziemann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZgWjin1/hRrMhu4UaxveoO8NFAFiM0RDg9lJPISrLg3J5ZXdQwaPm"], ["created_at", "2020-05-05 18:16:44.031861"], ["updated_at", "2020-05-05 18:16:44.031861"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:16:44 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:16:44 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "possimus"], ["description", "Fugiat incidunt alias ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.058090"], ["updated_at", "2020-05-05 18:16:44.058090"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aspernatur"], ["description", "Sed voluptatem natus distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.061088"], ["updated_at", "2020-05-05 18:16:44.061088"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facilis"], ["description", "Voluptates laborum fuga eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.063899"], ["updated_at", "2020-05-05 18:16:44.063899"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Inventore recusandae ipsa nostrum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.065827"], ["updated_at", "2020-05-05 18:16:44.065827"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Et natus voluptate quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.067411"], ["updated_at", "2020-05-05 18:16:44.067411"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "excepturi"], ["description", "Qui hic odit et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.068789"], ["updated_at", "2020-05-05 18:16:44.068789"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Sunt ad non numquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.070110"], ["updated_at", "2020-05-05 18:16:44.070110"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "harum"], ["description", "Quae et est quisquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.071429"], ["updated_at", "2020-05-05 18:16:44.071429"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugiat"], ["description", "Eos reprehenderit nam fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.073712"], ["updated_at", "2020-05-05 18:16:44.073712"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odio"], ["description", "Delectus iure ducimus rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.075651"], ["updated_at", "2020-05-05 18:16:44.075651"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Spencer Jones"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xu2NK/FYbFj0C0Y3EE0CG.iZ6gwJcq/riVYHBFzdqCmceOXhAzeBi"], ["created_at", "2020-05-05 18:16:44.078725"], ["updated_at", "2020-05-05 18:16:44.078725"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:16:44 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.28ms) +Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:16:44 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Ratione ex aperiam ullam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.108072"], ["updated_at", "2020-05-05 18:16:44.108072"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Quos quas quo aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.110824"], ["updated_at", "2020-05-05 18:16:44.110824"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "mollitia"], ["description", "Cupiditate incidunt sed et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.113439"], ["updated_at", "2020-05-05 18:16:44.113439"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Numquam vitae laboriosam ullam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.117400"], ["updated_at", "2020-05-05 18:16:44.117400"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "explicabo"], ["description", "Et sed laboriosam impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.120028"], ["updated_at", "2020-05-05 18:16:44.120028"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rem"], ["description", "Molestiae aut enim eius."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.122014"], ["updated_at", "2020-05-05 18:16:44.122014"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "optio"], ["description", "Ut ullam explicabo non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.123377"], ["updated_at", "2020-05-05 18:16:44.123377"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "a"], ["description", "Repellendus et modi nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.124712"], ["updated_at", "2020-05-05 18:16:44.124712"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Et iusto et quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.126038"], ["updated_at", "2020-05-05 18:16:44.126038"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Iste praesentium possimus qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.127317"], ["updated_at", "2020-05-05 18:16:44.127317"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Forrest Rutherford DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VlWFfx2KtlZqb2w49kUYZekDHjr0CWLLhrWKWQ56BS24fPvSuijoi"], ["created_at", "2020-05-05 18:16:44.129930"], ["updated_at", "2020-05-05 18:16:44.129930"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:16:44 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.21ms) +Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:16:44 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:16:44.142941"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1090) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (13.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "neque"], ["description", "Eos ipsum possimus veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.160317"], ["updated_at", "2020-05-05 18:16:44.160317"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "itaque"], ["description", "Et explicabo voluptas dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.163049"], ["updated_at", "2020-05-05 18:16:44.163049"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vero"], ["description", "Est saepe molestiae non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.164459"], ["updated_at", "2020-05-05 18:16:44.164459"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Tempore quis quia consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.165778"], ["updated_at", "2020-05-05 18:16:44.165778"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "adipisci"], ["description", "Repudiandae accusantium maiores ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.167201"], ["updated_at", "2020-05-05 18:16:44.167201"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptates"], ["description", "Omnis ipsam ut aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.168925"], ["updated_at", "2020-05-05 18:16:44.168925"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Voluptatem necessitatibus nemo et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.170257"], ["updated_at", "2020-05-05 18:16:44.170257"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "culpa"], ["description", "In qui reiciendis eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.171517"], ["updated_at", "2020-05-05 18:16:44.171517"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perspiciatis"], ["description", "Occaecati quia debitis consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.173305"], ["updated_at", "2020-05-05 18:16:44.173305"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maiores"], ["description", "Nisi hic ipsa veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.176116"], ["updated_at", "2020-05-05 18:16:44.176116"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Raguel Hand"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.GL5jJ.2tjRI00tHuv7C3.R8trvuB/peX0Jf07WvUqIfs7pGrZuxy"], ["created_at", "2020-05-05 18:16:44.180373"], ["updated_at", "2020-05-05 18:16:44.180373"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:16:44 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.25ms) +Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:16:44 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:16:44.191291"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 999) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magnam"], ["description", "Quisquam ut accusantium odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.202441"], ["updated_at", "2020-05-05 18:16:44.202441"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Consequuntur consectetur perferendis dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.205403"], ["updated_at", "2020-05-05 18:16:44.205403"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "animi"], ["description", "Voluptas odit itaque et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.206899"], ["updated_at", "2020-05-05 18:16:44.206899"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ex"], ["description", "Nam vero temporibus et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.208170"], ["updated_at", "2020-05-05 18:16:44.208170"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "assumenda"], ["description", "Enim voluptas hic quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.209451"], ["updated_at", "2020-05-05 18:16:44.209451"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corporis"], ["description", "Harum velit eum consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.210804"], ["updated_at", "2020-05-05 18:16:44.210804"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quae"], ["description", "Corporis sed qui sequi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.212246"], ["updated_at", "2020-05-05 18:16:44.212246"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Adipisci et sed temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.216445"], ["updated_at", "2020-05-05 18:16:44.216445"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consectetur"], ["description", "Vel optio earum excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.218529"], ["updated_at", "2020-05-05 18:16:44.218529"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Expedita dolorem aliquam quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:16:44.221147"], ["updated_at", "2020-05-05 18:16:44.221147"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ernest Nikolaus"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$S6sDNkrXJsq8abL0fB25POY2OUPyS9cZLtTmRkATd6mCuqZvL7Jy2"], ["created_at", "2020-05-05 18:16:44.224406"], ["updated_at", "2020-05-05 18:16:44.224406"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:16:44 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.67ms) +Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms | Allocations: 2843) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:16:44 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1221) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (4.7ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (4.3ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (139.1ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (139.4ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (130.6ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (139.5ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (105.1ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (148.2ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (96.1ms) DELETE FROM "users"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Eldridge Shanahan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Vj6FppCCbAX9CKh7oYHsSuXvxOyE8Wr9ZGKNpHcObaRPzp5gctBzy"], ["created_at", "2020-05-05 18:17:43.781438"], ["updated_at", "2020-05-05 18:17:43.781438"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Velit laudantium et quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:43.811881"], ["updated_at", "2020-05-05 18:17:43.811881"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum quis qui rerum?"], ["description", "Repellat asperiores aut iure."], ["date", "2020-05-06 18:17:43.834582"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:43.859841"], ["updated_at", "2020-05-05 18:17:43.859841"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo ab quis exercitationem?"], ["description", "Nulla laboriosam debitis perferendis."], ["date", "2020-05-06 18:17:43.861464"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:43.862305"], ["updated_at", "2020-05-05 18:17:43.862305"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid ipsam aliquam voluptatum?"], ["description", "Est consequatur occaecati ex."], ["date", "2020-05-06 18:17:43.864183"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:43.865143"], ["updated_at", "2020-05-05 18:17:43.865143"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae sit necessitatibus voluptates?"], ["description", "Beatae in illum et."], ["date", "2020-05-06 18:17:43.866380"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:43.867303"], ["updated_at", "2020-05-05 18:17:43.867303"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est quas iusto inventore?"], ["description", "Voluptas ut alias beatae."], ["date", "2020-05-06 18:17:43.869144"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:43.870116"], ["updated_at", "2020-05-05 18:17:43.870116"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius quasi reprehenderit autem?"], ["description", "Doloremque est amet necessitatibus."], ["date", "2020-05-06 18:17:43.871486"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:43.872192"], ["updated_at", "2020-05-05 18:17:43.872192"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium quis porro enim?"], ["description", "Iste esse ipsa hic."], ["date", "2020-05-06 18:17:43.873321"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:43.874028"], ["updated_at", "2020-05-05 18:17:43.874028"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est aut nisi quam?"], ["description", "Optio eos odit aspernatur."], ["date", "2020-05-06 18:17:43.875432"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:43.876214"], ["updated_at", "2020-05-05 18:17:43.876214"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis sequi consectetur beatae?"], ["description", "Suscipit doloribus iusto totam."], ["date", "2020-05-06 18:17:43.877340"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:43.878096"], ["updated_at", "2020-05-05 18:17:43.878096"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem mollitia rerum eius?"], ["description", "Facere voluptatem harum asperiores."], ["date", "2020-05-06 18:17:43.881212"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:43.882244"], ["updated_at", "2020-05-05 18:17:43.882244"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae temporibus non eos?"], ["description", "Cum sequi nulla pariatur."], ["date", "2020-05-06 18:17:43.883659"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:43.884403"], ["updated_at", "2020-05-05 18:17:43.884403"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quos consequatur delectus?"], ["description", "Repellendus eum nihil quae."], ["date", "2020-05-06 18:17:43.885830"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:43.886574"], ["updated_at", "2020-05-05 18:17:43.886574"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe numquam harum quia?"], ["description", "Perferendis pariatur et ullam."], ["date", "2020-05-06 18:17:43.888174"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:43.889549"], ["updated_at", "2020-05-05 18:17:43.889549"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reiciendis perferendis vel suscipit?"], ["description", "Quo cumque voluptatem id."], ["date", "2020-05-06 18:17:43.891262"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:43.892090"], ["updated_at", "2020-05-05 18:17:43.892090"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit sed corporis cumque?"], ["description", "Odio vitae fugiat enim."], ["date", "2020-05-06 18:17:43.893585"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:43.894347"], ["updated_at", "2020-05-05 18:17:43.894347"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione laudantium laboriosam dolore?"], ["description", "Cum pariatur cupiditate quia."], ["date", "2020-05-06 18:17:43.895813"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:43.896634"], ["updated_at", "2020-05-05 18:17:43.896634"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente eligendi maxime iste?"], ["description", "Enim veritatis totam iste."], ["date", "2020-05-06 18:17:43.897976"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:43.898683"], ["updated_at", "2020-05-05 18:17:43.898683"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam sunt nostrum esse?"], ["description", "Saepe est ut dolor."], ["date", "2020-05-06 18:17:43.900023"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:43.900795"], ["updated_at", "2020-05-05 18:17:43.900795"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore qui commodi enim?"], ["description", "Animi a modi dolorum."], ["date", "2020-05-06 18:17:43.902013"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:43.902704"], ["updated_at", "2020-05-05 18:17:43.902704"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut soluta eaque dolore?"], ["description", "Sit eum et totam."], ["date", "2020-05-06 18:17:43.903905"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:43.904604"], ["updated_at", "2020-05-05 18:17:43.904604"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:17:43 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.4ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (7.76ms) +Completed 200 OK in 34ms (Views: 15.2ms | ActiveRecord: 0.6ms | Allocations: 8641) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jill Emmerich PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UVdoSdowCgLcsNMc0SeyC.OHAUViywtzaQrQkZ747edRk.tCx.Qbe"], ["created_at", "2020-05-05 18:17:43.990919"], ["updated_at", "2020-05-05 18:17:43.990919"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusamus"], ["description", "Consectetur sunt ex possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:43.994453"], ["updated_at", "2020-05-05 18:17:43.994453"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt consequatur qui sequi?"], ["description", "Qui suscipit nemo aliquid."], ["date", "2020-05-06 18:17:43.996931"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:43.998377"], ["updated_at", "2020-05-05 18:17:43.998377"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque quia voluptas aut?"], ["description", "Quia necessitatibus quo consequatur."], ["date", "2020-05-06 18:17:43.999939"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.000691"], ["updated_at", "2020-05-05 18:17:44.000691"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur veritatis nisi distinctio?"], ["description", "Dolorum aut laborum pariatur."], ["date", "2020-05-06 18:17:44.001983"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.002739"], ["updated_at", "2020-05-05 18:17:44.002739"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea voluptatem sapiente ipsam?"], ["description", "Odio aut perspiciatis eos."], ["date", "2020-05-06 18:17:44.003886"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.004572"], ["updated_at", "2020-05-05 18:17:44.004572"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam veritatis laborum corporis?"], ["description", "Reiciendis sed repudiandae perspiciatis."], ["date", "2020-05-06 18:17:44.005764"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.006521"], ["updated_at", "2020-05-05 18:17:44.006521"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque ut repudiandae minima?"], ["description", "Ut provident est alias."], ["date", "2020-05-06 18:17:44.007816"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.008971"], ["updated_at", "2020-05-05 18:17:44.008971"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem adipisci hic voluptatibus?"], ["description", "Unde ad est debitis."], ["date", "2020-05-06 18:17:44.010794"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.011696"], ["updated_at", "2020-05-05 18:17:44.011696"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequuntur nesciunt est et?"], ["description", "Debitis eius nisi quaerat."], ["date", "2020-05-06 18:17:44.013613"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.014861"], ["updated_at", "2020-05-05 18:17:44.014861"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum cumque et amet?"], ["description", "Nihil voluptatibus voluptatem quaerat."], ["date", "2020-05-06 18:17:44.016902"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.018016"], ["updated_at", "2020-05-05 18:17:44.018016"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi nam veniam quis?"], ["description", "Odit dignissimos temporibus omnis."], ["date", "2020-05-06 18:17:44.020047"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.020862"], ["updated_at", "2020-05-05 18:17:44.020862"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui aut nobis voluptas?"], ["description", "Voluptatem ut dolores illum."], ["date", "2020-05-06 18:17:44.022173"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.022929"], ["updated_at", "2020-05-05 18:17:44.022929"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis eos ut aut?"], ["description", "Consequuntur itaque ab quam."], ["date", "2020-05-06 18:17:44.024137"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.024836"], ["updated_at", "2020-05-05 18:17:44.024836"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem vitae animi sed?"], ["description", "Totam et similique labore."], ["date", "2020-05-06 18:17:44.026109"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.026806"], ["updated_at", "2020-05-05 18:17:44.026806"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel harum voluptatum ipsum?"], ["description", "Molestiae neque doloribus dolore."], ["date", "2020-05-06 18:17:44.028151"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.030039"], ["updated_at", "2020-05-05 18:17:44.030039"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum sit aliquam corrupti?"], ["description", "Aut repellendus doloremque tenetur."], ["date", "2020-05-06 18:17:44.032189"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.033141"], ["updated_at", "2020-05-05 18:17:44.033141"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis eius et accusantium?"], ["description", "Fugiat qui fuga nostrum."], ["date", "2020-05-06 18:17:44.034381"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.035108"], ["updated_at", "2020-05-05 18:17:44.035108"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro iste est adipisci?"], ["description", "Harum veniam mollitia necessitatibus."], ["date", "2020-05-06 18:17:44.036319"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.037040"], ["updated_at", "2020-05-05 18:17:44.037040"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque saepe nostrum sunt?"], ["description", "Deserunt esse ipsum omnis."], ["date", "2020-05-06 18:17:44.038233"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.038923"], ["updated_at", "2020-05-05 18:17:44.038923"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa beatae sit explicabo?"], ["description", "Nemo eos distinctio corrupti."], ["date", "2020-05-06 18:17:44.040057"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.040782"], ["updated_at", "2020-05-05 18:17:44.040782"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut reprehenderit quas neque?"], ["description", "Eum et saepe pariatur."], ["date", "2020-05-06 18:17:44.041942"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.042596"], ["updated_at", "2020-05-05 18:17:44.042596"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:17:44 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.14ms) +Completed 200 OK in 12ms (Views: 10.5ms | ActiveRecord: 0.3ms | Allocations: 5518) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Julian Gottlieb"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UZ6PjCAvMBjVvRuE9iFuVuA115E/YFU0URS.GgD/9Py0PvCVYNxyS"], ["created_at", "2020-05-05 18:17:44.071944"], ["updated_at", "2020-05-05 18:17:44.071944"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "optio"], ["description", "Asperiores consequatur id animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.075652"], ["updated_at", "2020-05-05 18:17:44.075652"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium iste omnis id?"], ["description", "Et eos unde officiis."], ["date", "2020-05-06 18:17:44.077254"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.078224"], ["updated_at", "2020-05-05 18:17:44.078224"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut provident qui sed?"], ["description", "Omnis rerum accusantium sequi."], ["date", "2020-05-06 18:17:44.080344"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.081327"], ["updated_at", "2020-05-05 18:17:44.081327"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla quisquam explicabo impedit?"], ["description", "Et at est vitae."], ["date", "2020-05-06 18:17:44.082744"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.083433"], ["updated_at", "2020-05-05 18:17:44.083433"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi facilis accusamus dolore?"], ["description", "Excepturi quidem quod ipsa."], ["date", "2020-05-06 18:17:44.084709"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.085503"], ["updated_at", "2020-05-05 18:17:44.085503"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum ullam qui voluptatum?"], ["description", "Assumenda blanditiis nemo quos."], ["date", "2020-05-06 18:17:44.086671"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.087372"], ["updated_at", "2020-05-05 18:17:44.087372"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae adipisci soluta tenetur?"], ["description", "Iusto est fugit cumque."], ["date", "2020-05-06 18:17:44.088719"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.090337"], ["updated_at", "2020-05-05 18:17:44.090337"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa dolorum fugiat debitis?"], ["description", "Facere esse ut corporis."], ["date", "2020-05-06 18:17:44.091993"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.093380"], ["updated_at", "2020-05-05 18:17:44.093380"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero architecto est quis?"], ["description", "Exercitationem doloribus magnam in."], ["date", "2020-05-06 18:17:44.094853"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.095637"], ["updated_at", "2020-05-05 18:17:44.095637"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel sed aut sit?"], ["description", "Eum qui corrupti et."], ["date", "2020-05-06 18:17:44.097158"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.098499"], ["updated_at", "2020-05-05 18:17:44.098499"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut dolore atque numquam?"], ["description", "Eum aut voluptatem omnis."], ["date", "2020-05-06 18:17:44.100513"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.101296"], ["updated_at", "2020-05-05 18:17:44.101296"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque aut nemo dolor?"], ["description", "Laudantium et aut maiores."], ["date", "2020-05-06 18:17:44.102515"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.103260"], ["updated_at", "2020-05-05 18:17:44.103260"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt qui cum non?"], ["description", "Itaque et atque magni."], ["date", "2020-05-06 18:17:44.104443"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.105170"], ["updated_at", "2020-05-05 18:17:44.105170"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa et laudantium velit?"], ["description", "Vel id non et."], ["date", "2020-05-06 18:17:44.106408"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.107099"], ["updated_at", "2020-05-05 18:17:44.107099"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum sed exercitationem explicabo?"], ["description", "Molestiae dolorem ut molestias."], ["date", "2020-05-06 18:17:44.108496"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.109722"], ["updated_at", "2020-05-05 18:17:44.109722"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit magnam laborum nam?"], ["description", "Voluptatum quia beatae aut."], ["date", "2020-05-06 18:17:44.111541"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.113012"], ["updated_at", "2020-05-05 18:17:44.113012"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae veritatis qui facere?"], ["description", "Eaque alias molestias tenetur."], ["date", "2020-05-06 18:17:44.115168"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.116216"], ["updated_at", "2020-05-05 18:17:44.116216"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste dolore et eius?"], ["description", "Et cum doloremque eum."], ["date", "2020-05-06 18:17:44.117603"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.118397"], ["updated_at", "2020-05-05 18:17:44.118397"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas minus perferendis qui?"], ["description", "Vero quo est voluptatum."], ["date", "2020-05-06 18:17:44.119684"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.120402"], ["updated_at", "2020-05-05 18:17:44.120402"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio in et aperiam?"], ["description", "Omnis accusamus dolorum commodi."], ["date", "2020-05-06 18:17:44.121702"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.122438"], ["updated_at", "2020-05-05 18:17:44.122438"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias velit praesentium labore?"], ["description", "Aut harum minima animi."], ["date", "2020-05-06 18:17:44.123657"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.124348"], ["updated_at", "2020-05-05 18:17:44.124348"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:17:44 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 404 Not Found in 6ms (Views: 5.3ms | ActiveRecord: 0.1ms | Allocations: 865) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Laurel Green"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$me.2pVtNewkmY8zFDaA/ZeuwCfzVqdF69zkAHi1HLth8FMz2Srzhy"], ["created_at", "2020-05-05 18:17:44.144427"], ["updated_at", "2020-05-05 18:17:44.144427"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "Reiciendis et facere esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.147966"], ["updated_at", "2020-05-05 18:17:44.147966"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel incidunt nihil quia?"], ["description", "Nisi ea eum earum."], ["date", "2020-05-06 18:17:44.150433"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.151744"], ["updated_at", "2020-05-05 18:17:44.151744"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia mollitia dolores sunt?"], ["description", "Sint mollitia tenetur recusandae."], ["date", "2020-05-06 18:17:44.153744"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.154775"], ["updated_at", "2020-05-05 18:17:44.154775"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut aut accusamus rerum?"], ["description", "Nostrum quidem in ratione."], ["date", "2020-05-06 18:17:44.156238"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.157034"], ["updated_at", "2020-05-05 18:17:44.157034"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint nihil animi vitae?"], ["description", "Dolorum laudantium ducimus quisquam."], ["date", "2020-05-06 18:17:44.158228"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.158907"], ["updated_at", "2020-05-05 18:17:44.158907"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid eius quos sapiente?"], ["description", "Sed ea eius sunt."], ["date", "2020-05-06 18:17:44.159988"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.160780"], ["updated_at", "2020-05-05 18:17:44.160780"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem id vitae inventore?"], ["description", "Quia rem eveniet veritatis."], ["date", "2020-05-06 18:17:44.162085"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.163619"], ["updated_at", "2020-05-05 18:17:44.163619"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum qui rerum aspernatur?"], ["description", "Dolores voluptatem asperiores quod."], ["date", "2020-05-06 18:17:44.165100"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.165939"], ["updated_at", "2020-05-05 18:17:44.165939"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore laudantium recusandae facere?"], ["description", "Omnis similique ex repellat."], ["date", "2020-05-06 18:17:44.167095"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.167783"], ["updated_at", "2020-05-05 18:17:44.167783"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non placeat doloremque repudiandae?"], ["description", "Sit est veniam ut."], ["date", "2020-05-06 18:17:44.168991"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.170208"], ["updated_at", "2020-05-05 18:17:44.170208"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reiciendis vel ut voluptates?"], ["description", "Est rem eos inventore."], ["date", "2020-05-06 18:17:44.172985"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.174343"], ["updated_at", "2020-05-05 18:17:44.174343"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta velit incidunt blanditiis?"], ["description", "Illum libero laudantium ab."], ["date", "2020-05-06 18:17:44.175965"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.176748"], ["updated_at", "2020-05-05 18:17:44.176748"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis doloribus sequi non?"], ["description", "Et numquam quis vel."], ["date", "2020-05-06 18:17:44.177895"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.178655"], ["updated_at", "2020-05-05 18:17:44.178655"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est velit neque iusto?"], ["description", "Rem consequatur voluptates pariatur."], ["date", "2020-05-06 18:17:44.180451"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.181424"], ["updated_at", "2020-05-05 18:17:44.181424"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident eligendi aliquid et?"], ["description", "Quis dolorum illum iure."], ["date", "2020-05-06 18:17:44.182693"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.183409"], ["updated_at", "2020-05-05 18:17:44.183409"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem asperiores facere ut?"], ["description", "Qui ratione aut nulla."], ["date", "2020-05-06 18:17:44.184680"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.185433"], ["updated_at", "2020-05-05 18:17:44.185433"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis est dolor minus?"], ["description", "Aut nulla illo mollitia."], ["date", "2020-05-06 18:17:44.186820"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.187659"], ["updated_at", "2020-05-05 18:17:44.187659"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque rerum quo sunt?"], ["description", "Ut iusto et est."], ["date", "2020-05-06 18:17:44.188917"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.189994"], ["updated_at", "2020-05-05 18:17:44.189994"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est repellendus voluptatem sunt?"], ["description", "Quisquam sed magni error."], ["date", "2020-05-06 18:17:44.191866"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.192785"], ["updated_at", "2020-05-05 18:17:44.192785"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo amet voluptas vero?"], ["description", "Pariatur quasi nihil non."], ["date", "2020-05-06 18:17:44.194006"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.194810"], ["updated_at", "2020-05-05 18:17:44.194810"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut fugit consequuntur tenetur?"], ["description", "Vitae asperiores similique neque."], ["date", "2020-05-06 18:17:44.196319"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.197555"], ["updated_at", "2020-05-05 18:17:44.197555"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:17:44 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 509) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Norah Bogisich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$EXm/7PraUVR0iyEsyb1k1eowrphcTGg6YOhkZZSZB98VhVWR5ZUT."], ["created_at", "2020-05-05 18:17:44.217163"], ["updated_at", "2020-05-05 18:17:44.217163"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Ducimus facere voluptatibus molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.220885"], ["updated_at", "2020-05-05 18:17:44.220885"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae et dolorem ab?"], ["description", "Consectetur aut rerum nihil."], ["date", "2020-05-06 18:17:44.222580"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.223554"], ["updated_at", "2020-05-05 18:17:44.223554"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit eligendi et hic?"], ["description", "Deleniti repellendus perspiciatis molestias."], ["date", "2020-05-06 18:17:44.225014"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.225855"], ["updated_at", "2020-05-05 18:17:44.225855"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio a officiis molestiae?"], ["description", "Nulla ut fuga magni."], ["date", "2020-05-06 18:17:44.227060"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.227815"], ["updated_at", "2020-05-05 18:17:44.227815"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque aut ut voluptas?"], ["description", "Quo quam voluptatem et."], ["date", "2020-05-06 18:17:44.228899"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.230141"], ["updated_at", "2020-05-05 18:17:44.230141"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Delectus omnis et ab?"], ["description", "Sunt cumque saepe laboriosam."], ["date", "2020-05-06 18:17:44.233071"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.234206"], ["updated_at", "2020-05-05 18:17:44.234206"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut illum blanditiis consequuntur?"], ["description", "Consequuntur consequatur voluptatem amet."], ["date", "2020-05-06 18:17:44.236198"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.237137"], ["updated_at", "2020-05-05 18:17:44.237137"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus fuga at quo?"], ["description", "Reprehenderit est repellat quia."], ["date", "2020-05-06 18:17:44.238388"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.239203"], ["updated_at", "2020-05-05 18:17:44.239203"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum omnis in id?"], ["description", "Voluptatem eum cupiditate quasi."], ["date", "2020-05-06 18:17:44.240467"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.241212"], ["updated_at", "2020-05-05 18:17:44.241212"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo consequatur sapiente neque?"], ["description", "Reiciendis magni vel facilis."], ["date", "2020-05-06 18:17:44.242336"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.243012"], ["updated_at", "2020-05-05 18:17:44.243012"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis quam qui nulla?"], ["description", "Consequuntur et architecto voluptatibus."], ["date", "2020-05-06 18:17:44.245077"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.246149"], ["updated_at", "2020-05-05 18:17:44.246149"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio quod magni cumque?"], ["description", "Quia tempora suscipit voluptas."], ["date", "2020-05-06 18:17:44.248051"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.248966"], ["updated_at", "2020-05-05 18:17:44.248966"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas qui fugiat quidem?"], ["description", "Repellat eum sit veniam."], ["date", "2020-05-06 18:17:44.250750"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.251897"], ["updated_at", "2020-05-05 18:17:44.251897"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et aut mollitia nesciunt?"], ["description", "Necessitatibus ipsum ea vel."], ["date", "2020-05-06 18:17:44.253295"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.253978"], ["updated_at", "2020-05-05 18:17:44.253978"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem non qui natus?"], ["description", "Quis sit accusantium et."], ["date", "2020-05-06 18:17:44.255421"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.256207"], ["updated_at", "2020-05-05 18:17:44.256207"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime temporibus voluptas dolores?"], ["description", "Eveniet optio rerum fuga."], ["date", "2020-05-06 18:17:44.257394"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.258110"], ["updated_at", "2020-05-05 18:17:44.258110"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel consequatur delectus tempore?"], ["description", "Et nostrum voluptatum accusantium."], ["date", "2020-05-06 18:17:44.259259"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.259935"], ["updated_at", "2020-05-05 18:17:44.259935"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum aliquid temporibus at?"], ["description", "Enim quidem ut sunt."], ["date", "2020-05-06 18:17:44.261068"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.261821"], ["updated_at", "2020-05-05 18:17:44.261821"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid laborum ut et?"], ["description", "Quisquam voluptatibus at magni."], ["date", "2020-05-06 18:17:44.263696"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.264635"], ["updated_at", "2020-05-05 18:17:44.264635"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut id dolores voluptatem?"], ["description", "Incidunt est soluta consectetur."], ["date", "2020-05-06 18:17:44.265959"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.266692"], ["updated_at", "2020-05-05 18:17:44.266692"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores vitae voluptates tempora?"], ["description", "Enim tempora consequatur tempore."], ["date", "2020-05-06 18:17:44.267807"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.268500"], ["updated_at", "2020-05-05 18:17:44.268500"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:17:44 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.79ms) +Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.3ms | Allocations: 1085) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jermaine Kessler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kK6TIp422CAFZIczYRVDVufXu9/lZ4FZKjBQEmDzSe03Xuayh9N06"], ["created_at", "2020-05-05 18:17:44.286381"], ["updated_at", "2020-05-05 18:17:44.286381"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quas"], ["description", "Et eos nemo quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.289375"], ["updated_at", "2020-05-05 18:17:44.289375"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis culpa mollitia est?"], ["description", "Rerum voluptate nihil reiciendis."], ["date", "2020-05-06 18:17:44.291725"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.293083"], ["updated_at", "2020-05-05 18:17:44.293083"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque rerum iusto est?"], ["description", "Quidem quia error nulla."], ["date", "2020-05-06 18:17:44.295169"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.296159"], ["updated_at", "2020-05-05 18:17:44.296159"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum perferendis quia doloremque?"], ["description", "Debitis natus est et."], ["date", "2020-05-06 18:17:44.298004"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.299002"], ["updated_at", "2020-05-05 18:17:44.299002"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda iusto sed ex?"], ["description", "Quisquam aut soluta omnis."], ["date", "2020-05-06 18:17:44.300315"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.301028"], ["updated_at", "2020-05-05 18:17:44.301028"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum qui ea explicabo?"], ["description", "Quia ut et laborum."], ["date", "2020-05-06 18:17:44.302265"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.302975"], ["updated_at", "2020-05-05 18:17:44.302975"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut qui quod consequatur?"], ["description", "Ut voluptatem dolorem iure."], ["date", "2020-05-06 18:17:44.304119"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.304809"], ["updated_at", "2020-05-05 18:17:44.304809"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque blanditiis molestiae consequuntur?"], ["description", "Pariatur iste voluptatem reiciendis."], ["date", "2020-05-06 18:17:44.306070"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.306788"], ["updated_at", "2020-05-05 18:17:44.306788"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet sint sed earum?"], ["description", "Et eum corporis est."], ["date", "2020-05-06 18:17:44.307949"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.308642"], ["updated_at", "2020-05-05 18:17:44.308642"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta quisquam aut quibusdam?"], ["description", "Quae illo porro qui."], ["date", "2020-05-06 18:17:44.309947"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.311700"], ["updated_at", "2020-05-05 18:17:44.311700"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore quidem consequatur quisquam?"], ["description", "Explicabo enim odit perspiciatis."], ["date", "2020-05-06 18:17:44.315614"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.316598"], ["updated_at", "2020-05-05 18:17:44.316598"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam odit qui non?"], ["description", "Dicta neque facilis omnis."], ["date", "2020-05-06 18:17:44.318090"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.318810"], ["updated_at", "2020-05-05 18:17:44.318810"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet aspernatur ipsa consequuntur?"], ["description", "Ea cumque voluptate hic."], ["date", "2020-05-06 18:17:44.319997"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.320687"], ["updated_at", "2020-05-05 18:17:44.320687"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugiat dolorem deserunt veritatis?"], ["description", "Officiis in non quia."], ["date", "2020-05-06 18:17:44.321961"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.322650"], ["updated_at", "2020-05-05 18:17:44.322650"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque maiores reiciendis suscipit?"], ["description", "Reprehenderit ad aut et."], ["date", "2020-05-06 18:17:44.323846"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.324605"], ["updated_at", "2020-05-05 18:17:44.324605"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse molestiae doloribus ut?"], ["description", "Aut voluptates neque tempora."], ["date", "2020-05-06 18:17:44.326021"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.326783"], ["updated_at", "2020-05-05 18:17:44.326783"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam dolore dolorem maxime?"], ["description", "Incidunt quibusdam vel rerum."], ["date", "2020-05-06 18:17:44.327923"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.328656"], ["updated_at", "2020-05-05 18:17:44.328656"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis velit sit ipsa?"], ["description", "Et quia non nihil."], ["date", "2020-05-06 18:17:44.331386"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.333433"], ["updated_at", "2020-05-05 18:17:44.333433"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit ex vel sint?"], ["description", "Quos et perspiciatis iste."], ["date", "2020-05-06 18:17:44.335219"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.336181"], ["updated_at", "2020-05-05 18:17:44.336181"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel qui magni labore?"], ["description", "Ratione et est enim."], ["date", "2020-05-06 18:17:44.337478"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.338195"], ["updated_at", "2020-05-05 18:17:44.338195"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam deserunt sed totam?"], ["description", "Adipisci dolorum et vel."], ["date", "2020-05-06 18:17:44.339384"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.340081"], ["updated_at", "2020-05-05 18:17:44.340081"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:17:44 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.89ms) +Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.2ms | Allocations: 1058) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Antony Breitenberg"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BeN9pVHkLA5AY6pkAQZYPONLCCVqwV.2tFTDoGEYJP.WxUOMI7fje"], ["created_at", "2020-05-05 18:17:44.359142"], ["updated_at", "2020-05-05 18:17:44.359142"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Labore deleniti hic iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.362943"], ["updated_at", "2020-05-05 18:17:44.362943"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi dolor veniam beatae?"], ["description", "Eos velit neque repudiandae."], ["date", "2020-05-06 18:17:44.365216"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.366350"], ["updated_at", "2020-05-05 18:17:44.366350"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque dolorem cupiditate ut?"], ["description", "Cum nemo fugit suscipit."], ["date", "2020-05-06 18:17:44.393321"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.394359"], ["updated_at", "2020-05-05 18:17:44.394359"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta ipsam minus officiis?"], ["description", "Est expedita eum quo."], ["date", "2020-05-06 18:17:44.395864"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.396816"], ["updated_at", "2020-05-05 18:17:44.396816"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed beatae cum et?"], ["description", "Dolore quo molestiae deleniti."], ["date", "2020-05-06 18:17:44.398998"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.399975"], ["updated_at", "2020-05-05 18:17:44.399975"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit cupiditate corrupti quibusdam?"], ["description", "Et aut voluptatem quo."], ["date", "2020-05-06 18:17:44.401393"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.402214"], ["updated_at", "2020-05-05 18:17:44.402214"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere quis rerum qui?"], ["description", "Non dolores aliquid totam."], ["date", "2020-05-06 18:17:44.403549"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.404365"], ["updated_at", "2020-05-05 18:17:44.404365"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis sit provident rem?"], ["description", "Dolores corporis dolorem qui."], ["date", "2020-05-06 18:17:44.405790"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.406668"], ["updated_at", "2020-05-05 18:17:44.406668"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi voluptatum aspernatur maiores?"], ["description", "Eaque et ad quibusdam."], ["date", "2020-05-06 18:17:44.408062"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.409128"], ["updated_at", "2020-05-05 18:17:44.409128"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti soluta non voluptate?"], ["description", "Earum accusantium nostrum est."], ["date", "2020-05-06 18:17:44.412546"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.414906"], ["updated_at", "2020-05-05 18:17:44.414906"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est praesentium dolorem quo?"], ["description", "Voluptas animi aliquid quae."], ["date", "2020-05-06 18:17:44.417572"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.418921"], ["updated_at", "2020-05-05 18:17:44.418921"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minus ut aut quia?"], ["description", "Nostrum maiores consequatur illum."], ["date", "2020-05-06 18:17:44.420637"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.422208"], ["updated_at", "2020-05-05 18:17:44.422208"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime omnis molestiae rerum?"], ["description", "Iusto in a dolor."], ["date", "2020-05-06 18:17:44.424910"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.426884"], ["updated_at", "2020-05-05 18:17:44.426884"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus quis inventore illo?"], ["description", "Magnam harum quo reprehenderit."], ["date", "2020-05-06 18:17:44.428793"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.430054"], ["updated_at", "2020-05-05 18:17:44.430054"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus officia perspiciatis necessitatibus?"], ["description", "Aperiam soluta amet et."], ["date", "2020-05-06 18:17:44.433383"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.434734"], ["updated_at", "2020-05-05 18:17:44.434734"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque eos nulla omnis?"], ["description", "Id iste asperiores ut."], ["date", "2020-05-06 18:17:44.436735"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.437887"], ["updated_at", "2020-05-05 18:17:44.437887"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae voluptas deleniti minus?"], ["description", "Unde velit et praesentium."], ["date", "2020-05-06 18:17:44.439310"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.440026"], ["updated_at", "2020-05-05 18:17:44.440026"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas eum incidunt repellat?"], ["description", "Perspiciatis consectetur totam quae."], ["date", "2020-05-06 18:17:44.441213"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.441923"], ["updated_at", "2020-05-05 18:17:44.441923"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos deleniti fuga reiciendis?"], ["description", "Sed qui recusandae enim."], ["date", "2020-05-06 18:17:44.443184"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.443930"], ["updated_at", "2020-05-05 18:17:44.443930"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur recusandae maiores omnis?"], ["description", "Numquam et dignissimos saepe."], ["date", "2020-05-06 18:17:44.445292"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.446044"], ["updated_at", "2020-05-05 18:17:44.446044"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia in nulla reprehenderit?"], ["description", "Et eaque ut quo."], ["date", "2020-05-06 18:17:44.447718"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:17:44.448757"], ["updated_at", "2020-05-05 18:17:44.448757"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:17:44 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 404 Not Found in 3ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 884) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Error in libero ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.466060"], ["updated_at", "2020-05-05 18:17:44.466060"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minus"], ["description", "Sit mollitia dolorem odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.468949"], ["updated_at", "2020-05-05 18:17:44.468949"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "earum"], ["description", "Veniam asperiores porro tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.470450"], ["updated_at", "2020-05-05 18:17:44.470450"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Iste rerum aspernatur qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.473214"], ["updated_at", "2020-05-05 18:17:44.473214"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quos"], ["description", "Ut voluptate et quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.475796"], ["updated_at", "2020-05-05 18:17:44.475796"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iure"], ["description", "Beatae libero sunt est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.478232"], ["updated_at", "2020-05-05 18:17:44.478232"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Soluta ut beatae molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.480546"], ["updated_at", "2020-05-05 18:17:44.480546"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fuga"], ["description", "Deserunt modi provident maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.482028"], ["updated_at", "2020-05-05 18:17:44.482028"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officia"], ["description", "Est qui esse repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.483321"], ["updated_at", "2020-05-05 18:17:44.483321"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perspiciatis"], ["description", "Quas asperiores voluptatem enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.484617"], ["updated_at", "2020-05-05 18:17:44.484617"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Julieann Rath"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fbyv2WajM.M9wqj3goVFneBoyaR/8FeoOu1j4MzXV0QU8zsOxRxh."], ["created_at", "2020-05-05 18:17:44.487266"], ["updated_at", "2020-05-05 18:17:44.487266"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:17:44 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.3ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.35ms) +Completed 200 OK in 8ms (Views: 6.2ms | ActiveRecord: 0.4ms | Allocations: 3004) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (17.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Aut qui qui porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.521160"], ["updated_at", "2020-05-05 18:17:44.521160"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugit"], ["description", "Omnis ullam sunt asperiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.524087"], ["updated_at", "2020-05-05 18:17:44.524087"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "libero"], ["description", "Modi voluptatem consectetur sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.525643"], ["updated_at", "2020-05-05 18:17:44.525643"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corrupti"], ["description", "Consequatur totam tempora corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.526912"], ["updated_at", "2020-05-05 18:17:44.526912"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eius"], ["description", "Unde laudantium est iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.528236"], ["updated_at", "2020-05-05 18:17:44.528236"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Esse quia quia cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.529638"], ["updated_at", "2020-05-05 18:17:44.529638"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Iure vel nobis voluptatum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.532186"], ["updated_at", "2020-05-05 18:17:44.532186"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quae"], ["description", "Beatae hic at minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.534840"], ["updated_at", "2020-05-05 18:17:44.534840"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sequi"], ["description", "Quasi consectetur rerum voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.536866"], ["updated_at", "2020-05-05 18:17:44.536866"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "debitis"], ["description", "Dolorum omnis aperiam vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.539456"], ["updated_at", "2020-05-05 18:17:44.539456"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Haley Mohr"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Uke1aKIJ0iWyZDbpB8QmLuh32psKUXuuqugYgYfzMVZGiHEjNuEJa"], ["created_at", "2020-05-05 18:17:44.542370"], ["updated_at", "2020-05-05 18:17:44.542370"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:17:44 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.7ms | ActiveRecord: 0.2ms | Allocations: 2843) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "assumenda"], ["description", "Qui quo officiis fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.560326"], ["updated_at", "2020-05-05 18:17:44.560326"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ex"], ["description", "Dolores molestiae beatae veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.563683"], ["updated_at", "2020-05-05 18:17:44.563683"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempora"], ["description", "Et tempora quis sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.565654"], ["updated_at", "2020-05-05 18:17:44.565654"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Cumque porro expedita labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.567026"], ["updated_at", "2020-05-05 18:17:44.567026"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ab"], ["description", "Et ab praesentium nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.568334"], ["updated_at", "2020-05-05 18:17:44.568334"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quaerat"], ["description", "Ipsum in vel ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.569621"], ["updated_at", "2020-05-05 18:17:44.569621"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "adipisci"], ["description", "Omnis nesciunt voluptatum voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.571106"], ["updated_at", "2020-05-05 18:17:44.571106"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsam"], ["description", "Voluptatem rerum velit asperiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.573654"], ["updated_at", "2020-05-05 18:17:44.573654"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Aut ut autem consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.576106"], ["updated_at", "2020-05-05 18:17:44.576106"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Aut quia et quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.577644"], ["updated_at", "2020-05-05 18:17:44.577644"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rigoberto McDermott"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$cxltgI1xPhKcKrAjx/ZQE.890TEmzNkKflycYGFSE6N4T.Ed/4C4u"], ["created_at", "2020-05-05 18:17:44.580996"], ["updated_at", "2020-05-05 18:17:44.580996"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:17:44 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.39ms) +Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:17:44 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.57ms) +Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 0.3ms | Allocations: 1242) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Dolor ducimus quia illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.604701"], ["updated_at", "2020-05-05 18:17:44.604701"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quasi"], ["description", "Est laborum cumque tenetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.608207"], ["updated_at", "2020-05-05 18:17:44.608207"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorum"], ["description", "Inventore ipsam eius maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.610304"], ["updated_at", "2020-05-05 18:17:44.610304"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Earum sint nostrum cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.613295"], ["updated_at", "2020-05-05 18:17:44.613295"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloribus"], ["description", "Sunt magnam qui eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.615907"], ["updated_at", "2020-05-05 18:17:44.615907"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptate"], ["description", "Eveniet consequatur dignissimos similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.618026"], ["updated_at", "2020-05-05 18:17:44.618026"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Laboriosam cumque tempore aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.619571"], ["updated_at", "2020-05-05 18:17:44.619571"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Consequuntur temporibus placeat est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.620874"], ["updated_at", "2020-05-05 18:17:44.620874"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quibusdam"], ["description", "Porro voluptatem harum voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.622226"], ["updated_at", "2020-05-05 18:17:44.622226"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Ut molestiae quibusdam velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.623539"], ["updated_at", "2020-05-05 18:17:44.623539"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Maureen Price"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$v8cent3ltosABPXZfC.PiOpArX2f/NCB28W.66NQe5VW90EbkmwMS"], ["created_at", "2020-05-05 18:17:44.626249"], ["updated_at", "2020-05-05 18:17:44.626249"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:17:44 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.63ms) +Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.2ms | Allocations: 2845) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:17:44 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.39ms) +Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.2ms | Allocations: 1240) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "beatae"], ["description", "Alias illum eos culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.649273"], ["updated_at", "2020-05-05 18:17:44.649273"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptates"], ["description", "Doloribus reprehenderit repellat impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.653421"], ["updated_at", "2020-05-05 18:17:44.653421"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odio"], ["description", "Voluptatibus quod iusto excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.656288"], ["updated_at", "2020-05-05 18:17:44.656288"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Quidem commodi cupiditate aperiam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.657730"], ["updated_at", "2020-05-05 18:17:44.657730"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "harum"], ["description", "Quod deserunt at harum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.659218"], ["updated_at", "2020-05-05 18:17:44.659218"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Cumque sequi numquam dicta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.660623"], ["updated_at", "2020-05-05 18:17:44.660623"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "Incidunt quis odit ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.662414"], ["updated_at", "2020-05-05 18:17:44.662414"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minus"], ["description", "Dolores cupiditate tempore quisquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.664244"], ["updated_at", "2020-05-05 18:17:44.664244"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Corrupti aut sapiente nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.665636"], ["updated_at", "2020-05-05 18:17:44.665636"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "alias"], ["description", "Eaque debitis et nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.666919"], ["updated_at", "2020-05-05 18:17:44.666919"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nila Yost"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UrKbkX9.0mvhJgrM65n8hOxqY8pnnEuHcfeyV3ynO5zc7VEQNIHQm"], ["created_at", "2020-05-05 18:17:44.669516"], ["updated_at", "2020-05-05 18:17:44.669516"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:17:44 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (22.5ms) +Completed 200 OK in 26ms (Views: 24.2ms | ActiveRecord: 0.3ms | Allocations: 2844) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:17:44 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illum"], ["description", "Magni rerum tempore ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.710036"], ["updated_at", "2020-05-05 18:17:44.710036"], ["created_by", "1"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officiis"], ["description", "Magni sit atque id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.715758"], ["updated_at", "2020-05-05 18:17:44.715758"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Autem commodi occaecati soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.717645"], ["updated_at", "2020-05-05 18:17:44.717645"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rem"], ["description", "A at nihil labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.718952"], ["updated_at", "2020-05-05 18:17:44.718952"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illo"], ["description", "Illo fugit vitae aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.720257"], ["updated_at", "2020-05-05 18:17:44.720257"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repudiandae"], ["description", "Eius distinctio commodi architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.721557"], ["updated_at", "2020-05-05 18:17:44.721557"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "mollitia"], ["description", "Eius eaque voluptas quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.722883"], ["updated_at", "2020-05-05 18:17:44.722883"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "numquam"], ["description", "Minus rem sapiente non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.724199"], ["updated_at", "2020-05-05 18:17:44.724199"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Est autem magnam quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.725491"], ["updated_at", "2020-05-05 18:17:44.725491"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsum"], ["description", "Quia ea omnis aliquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.726738"], ["updated_at", "2020-05-05 18:17:44.726738"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Charlesetta Friesen PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0vSRUmhRA1Uxm/N1XOw5TuYUxr3IljQMLD0HnbwqMt9mcbCTWdXZG"], ["created_at", "2020-05-05 18:17:44.729365"], ["updated_at", "2020-05-05 18:17:44.729365"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:17:44 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.59ms) +Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.3ms | Allocations: 2839) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:17:44 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.8ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "distinctio"], ["description", "Laudantium dolores natus reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.751514"], ["updated_at", "2020-05-05 18:17:44.751514"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "adipisci"], ["description", "Occaecati pariatur vel perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.755721"], ["updated_at", "2020-05-05 18:17:44.755721"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "suscipit"], ["description", "Est quae nisi et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.758071"], ["updated_at", "2020-05-05 18:17:44.758071"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Laudantium dolores commodi harum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.759577"], ["updated_at", "2020-05-05 18:17:44.759577"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Repellendus enim officiis doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.760897"], ["updated_at", "2020-05-05 18:17:44.760897"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Distinctio ipsa itaque quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.762694"], ["updated_at", "2020-05-05 18:17:44.762694"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Sunt occaecati minus reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.764331"], ["updated_at", "2020-05-05 18:17:44.764331"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Modi enim ex odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.765588"], ["updated_at", "2020-05-05 18:17:44.765588"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "delectus"], ["description", "Repellendus atque non fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.766872"], ["updated_at", "2020-05-05 18:17:44.766872"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "praesentium"], ["description", "Quis eaque laboriosam neque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.768236"], ["updated_at", "2020-05-05 18:17:44.768236"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Mitch Lehner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$by9lkI5i/W1LXD1X6KKtnO62K3IxbtZgBXYgVi7R97JGqPKhxkzPa"], ["created_at", "2020-05-05 18:17:44.770871"], ["updated_at", "2020-05-05 18:17:44.770871"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:17:44 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.21ms) +Completed 200 OK in 7ms (Views: 4.9ms | ActiveRecord: 0.3ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:17:44 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:17:44.812290"], ["updated_at", "2020-05-05 18:17:44.812290"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.57ms) +Completed 201 Created in 24ms (Views: 1.0ms | ActiveRecord: 1.8ms | Allocations: 6231) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "culpa"], ["description", "Reprehenderit autem assumenda sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.832057"], ["updated_at", "2020-05-05 18:17:44.832057"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deleniti"], ["description", "Sed velit odio rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.836723"], ["updated_at", "2020-05-05 18:17:44.836723"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laborum"], ["description", "Cumque dolorem sint sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.838527"], ["updated_at", "2020-05-05 18:17:44.838527"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "recusandae"], ["description", "Id accusamus culpa in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.840091"], ["updated_at", "2020-05-05 18:17:44.840091"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Eaque vel fugit voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.841449"], ["updated_at", "2020-05-05 18:17:44.841449"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Aliquid aut provident nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.842827"], ["updated_at", "2020-05-05 18:17:44.842827"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Doloribus sed earum nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.844139"], ["updated_at", "2020-05-05 18:17:44.844139"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Natus sed minus eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.845457"], ["updated_at", "2020-05-05 18:17:44.845457"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Et omnis molestiae iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.847233"], ["updated_at", "2020-05-05 18:17:44.847233"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ex"], ["description", "Ducimus doloribus et itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.848980"], ["updated_at", "2020-05-05 18:17:44.848980"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Royce Parisian"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$E4y3DuXOB3ICNJPK4oR8jOmw48QMCYoz6zfK/Y44M4ZMUbC/wnuSm"], ["created_at", "2020-05-05 18:17:44.851638"], ["updated_at", "2020-05-05 18:17:44.851638"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:17:44 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.27ms) +Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:17:44 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:17:44.864897"], ["updated_at", "2020-05-05 18:17:44.864897"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.53ms) +Completed 201 Created in 6ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 2251) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laboriosam"], ["description", "Nihil aperiam et recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.880092"], ["updated_at", "2020-05-05 18:17:44.880092"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "Autem voluptates quidem dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.883959"], ["updated_at", "2020-05-05 18:17:44.883959"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Aut blanditiis ipsam ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.885670"], ["updated_at", "2020-05-05 18:17:44.885670"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "pariatur"], ["description", "Neque perspiciatis molestiae aliquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.886960"], ["updated_at", "2020-05-05 18:17:44.886960"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Cumque odio iusto quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.888243"], ["updated_at", "2020-05-05 18:17:44.888243"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quod"], ["description", "Voluptatem quia excepturi et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.889641"], ["updated_at", "2020-05-05 18:17:44.889641"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "delectus"], ["description", "Cupiditate temporibus totam et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.890940"], ["updated_at", "2020-05-05 18:17:44.890940"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Soluta quaerat sit atque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.892219"], ["updated_at", "2020-05-05 18:17:44.892219"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Quia et saepe cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.894259"], ["updated_at", "2020-05-05 18:17:44.894259"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "praesentium"], ["description", "Officia voluptatem qui autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.897982"], ["updated_at", "2020-05-05 18:17:44.897982"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Fred Buckridge"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ugMrb50Qcx8TT/PjheEjFuGmosBof7.ZJ1cNUF12amuBzxCPILfsW"], ["created_at", "2020-05-05 18:17:44.900846"], ["updated_at", "2020-05-05 18:17:44.900846"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:17:44 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | ActiveRecord: 0.1ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:17:44 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 4090) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perferendis"], ["description", "Architecto maiores porro maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.924738"], ["updated_at", "2020-05-05 18:17:44.924738"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptates"], ["description", "Et quasi praesentium sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.928424"], ["updated_at", "2020-05-05 18:17:44.928424"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Distinctio explicabo esse qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.930930"], ["updated_at", "2020-05-05 18:17:44.930930"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Omnis iste velit incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.932316"], ["updated_at", "2020-05-05 18:17:44.932316"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "totam"], ["description", "Veniam laboriosam aut maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.933962"], ["updated_at", "2020-05-05 18:17:44.933962"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Tempora commodi alias est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.936746"], ["updated_at", "2020-05-05 18:17:44.936746"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eaque"], ["description", "Id magnam perspiciatis nisi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.939054"], ["updated_at", "2020-05-05 18:17:44.939054"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Assumenda eaque harum enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.940484"], ["updated_at", "2020-05-05 18:17:44.940484"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Animi non expedita iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.941795"], ["updated_at", "2020-05-05 18:17:44.941795"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsam"], ["description", "Delectus odit et et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.943108"], ["updated_at", "2020-05-05 18:17:44.943108"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bernard Muller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QqWWJ0AiRh0yNrgLui6W6Oqs5K97vHPk6AOJ/NY13weMm6B4RbMKq"], ["created_at", "2020-05-05 18:17:44.945985"], ["updated_at", "2020-05-05 18:17:44.945985"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:17:44 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.1ms) +Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2845) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:17:44 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 3697) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Architecto et rerum et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.970959"], ["updated_at", "2020-05-05 18:17:44.970959"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Sequi reprehenderit omnis dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.975020"], ["updated_at", "2020-05-05 18:17:44.975020"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cupiditate"], ["description", "Ut et totam provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.977142"], ["updated_at", "2020-05-05 18:17:44.977142"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officiis"], ["description", "Et possimus ex est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.979330"], ["updated_at", "2020-05-05 18:17:44.979330"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repudiandae"], ["description", "Sit quia explicabo sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.981038"], ["updated_at", "2020-05-05 18:17:44.981038"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ex"], ["description", "Qui velit doloribus voluptates."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.982547"], ["updated_at", "2020-05-05 18:17:44.982547"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "asperiores"], ["description", "Sunt et repudiandae autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.984582"], ["updated_at", "2020-05-05 18:17:44.984582"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Ipsa eos eius eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.986202"], ["updated_at", "2020-05-05 18:17:44.986202"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Neque qui dolorem consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.987465"], ["updated_at", "2020-05-05 18:17:44.987465"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vero"], ["description", "Laborum eum tempora ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:44.988773"], ["updated_at", "2020-05-05 18:17:44.988773"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Louvenia McGlynn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$zkP2THqF.us6s.lzR3UvU.PVQqttuM9KQpgvCU4B7QHUHcsC/k4RS"], ["created_at", "2020-05-05 18:17:44.991371"], ["updated_at", "2020-05-05 18:17:44.991371"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:17:44 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.18ms) +Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms | Allocations: 2841) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:17:45 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:17:45.002695"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1089) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (20.8ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illo"], ["description", "Voluptas reiciendis quaerat ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:45.012806"], ["updated_at", "2020-05-05 18:17:45.012806"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Ut delectus odit velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:45.037096"], ["updated_at", "2020-05-05 18:17:45.037096"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "labore"], ["description", "Autem corrupti et et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:45.039334"], ["updated_at", "2020-05-05 18:17:45.039334"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deleniti"], ["description", "Ab velit eos quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:45.040722"], ["updated_at", "2020-05-05 18:17:45.040722"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorum"], ["description", "Commodi quod velit ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:45.042031"], ["updated_at", "2020-05-05 18:17:45.042031"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officia"], ["description", "Velit quas nesciunt dolore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:45.043402"], ["updated_at", "2020-05-05 18:17:45.043402"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quibusdam"], ["description", "Laborum molestiae placeat doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:45.044760"], ["updated_at", "2020-05-05 18:17:45.044760"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsa"], ["description", "At ipsum molestiae accusantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:45.046178"], ["updated_at", "2020-05-05 18:17:45.046178"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Fuga odit quisquam est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:45.047801"], ["updated_at", "2020-05-05 18:17:45.047801"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dicta"], ["description", "Eaque quos quia eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:45.049620"], ["updated_at", "2020-05-05 18:17:45.049620"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ike Yost"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Q3N6baKLwDzT2nG/68XSou4uM7p9H9969wgfwkPcF152709bDUxuC"], ["created_at", "2020-05-05 18:17:45.052233"], ["updated_at", "2020-05-05 18:17:45.052233"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:17:45 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (2.9ms) +Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:17:45 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:17:45.064512"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 999) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Voluptatem sit id magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:45.074928"], ["updated_at", "2020-05-05 18:17:45.074928"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Aspernatur quod ex repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:45.078248"], ["updated_at", "2020-05-05 18:17:45.078248"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Quam debitis delectus sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:45.079792"], ["updated_at", "2020-05-05 18:17:45.079792"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "asperiores"], ["description", "Totam nihil voluptatem commodi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:45.081778"], ["updated_at", "2020-05-05 18:17:45.081778"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestias"], ["description", "Porro dolorem minima id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:45.083292"], ["updated_at", "2020-05-05 18:17:45.083292"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "neque"], ["description", "Aut dolores est non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:45.084540"], ["updated_at", "2020-05-05 18:17:45.084540"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quisquam"], ["description", "Quo totam necessitatibus aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:45.085883"], ["updated_at", "2020-05-05 18:17:45.085883"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "at"], ["description", "Expedita suscipit adipisci occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:45.087157"], ["updated_at", "2020-05-05 18:17:45.087157"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Omnis sequi delectus ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:45.088423"], ["updated_at", "2020-05-05 18:17:45.088423"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Autem harum in expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:17:45.089687"], ["updated_at", "2020-05-05 18:17:45.089687"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Sheldon Daugherty"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JNa74nhhccF7UiEtGFZsxuzl2bfiy8fQUxbAasGxastVSD38JLgCe"], ["created_at", "2020-05-05 18:17:45.092302"], ["updated_at", "2020-05-05 18:17:45.092302"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:17:45 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.67ms) +Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.3ms | Allocations: 2845) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:17:45 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1221) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (4.4ms) SELECT sqlite_version(*) +  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (114.1ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (84.9ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (119.1ms) DELETE FROM "user_meetings"; +  (0.9ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.8ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (87.9ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (165.0ms) DELETE FROM "conversations"; +  (1.0ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (87.5ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.8ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (113.9ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (4.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Dinah Mann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jde5Aw1zYJrPx9GNdl8sWOs4whberIQQjaIN3VMuISbYDgclmVoT6"], ["created_at", "2020-05-05 18:18:22.851584"], ["updated_at", "2020-05-05 18:18:22.851584"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Et perferendis consectetur illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:22.872134"], ["updated_at", "2020-05-05 18:18:22.872134"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam sunt similique qui?"], ["description", "Alias blanditiis ad et."], ["date", "2020-05-06 18:18:22.895093"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:22.921514"], ["updated_at", "2020-05-05 18:18:22.921514"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat praesentium saepe mollitia?"], ["description", "Sunt voluptatem vitae ea."], ["date", "2020-05-06 18:18:22.923258"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:22.924059"], ["updated_at", "2020-05-05 18:18:22.924059"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis libero nobis modi?"], ["description", "Facilis ut quam saepe."], ["date", "2020-05-06 18:18:22.925307"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:22.926026"], ["updated_at", "2020-05-05 18:18:22.926026"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed dolores sunt id?"], ["description", "Quas rem harum repellat."], ["date", "2020-05-06 18:18:22.927192"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:22.927871"], ["updated_at", "2020-05-05 18:18:22.927871"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit reprehenderit iure ab?"], ["description", "Nobis quaerat minima est."], ["date", "2020-05-06 18:18:22.929061"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:22.929971"], ["updated_at", "2020-05-05 18:18:22.929971"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas non ipsam soluta?"], ["description", "Animi omnis autem omnis."], ["date", "2020-05-06 18:18:22.931812"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:22.932772"], ["updated_at", "2020-05-05 18:18:22.932772"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid ad perferendis voluptatum?"], ["description", "Qui ut maiores sit."], ["date", "2020-05-06 18:18:22.934028"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:22.934798"], ["updated_at", "2020-05-05 18:18:22.934798"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et nostrum vel excepturi?"], ["description", "Quia sequi itaque assumenda."], ["date", "2020-05-06 18:18:22.936033"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:22.936740"], ["updated_at", "2020-05-05 18:18:22.936740"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed recusandae illo est?"], ["description", "Saepe excepturi rerum error."], ["date", "2020-05-06 18:18:22.937922"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:22.938615"], ["updated_at", "2020-05-05 18:18:22.938615"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae molestias velit laborum?"], ["description", "Hic ut cum omnis."], ["date", "2020-05-06 18:18:22.941246"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:22.942235"], ["updated_at", "2020-05-05 18:18:22.942235"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates sed qui dolorem?"], ["description", "Eligendi natus non soluta."], ["date", "2020-05-06 18:18:22.943672"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:22.944406"], ["updated_at", "2020-05-05 18:18:22.944406"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas veniam qui eius?"], ["description", "Sit ad et quisquam."], ["date", "2020-05-06 18:18:22.945840"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:22.947164"], ["updated_at", "2020-05-05 18:18:22.947164"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est sunt molestiae accusamus?"], ["description", "Amet nam molestiae qui."], ["date", "2020-05-06 18:18:22.948660"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:22.949399"], ["updated_at", "2020-05-05 18:18:22.949399"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui quisquam nemo labore?"], ["description", "Est et quaerat reprehenderit."], ["date", "2020-05-06 18:18:22.950629"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:22.951321"], ["updated_at", "2020-05-05 18:18:22.951321"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem dolores sunt suscipit?"], ["description", "Dolores pariatur eaque deleniti."], ["date", "2020-05-06 18:18:22.952542"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:22.953240"], ["updated_at", "2020-05-05 18:18:22.953240"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor earum ut velit?"], ["description", "Deleniti aliquam harum maxime."], ["date", "2020-05-06 18:18:22.954452"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:22.955220"], ["updated_at", "2020-05-05 18:18:22.955220"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque et et quas?"], ["description", "Dolorem illum consectetur nam."], ["date", "2020-05-06 18:18:22.956492"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:22.957208"], ["updated_at", "2020-05-05 18:18:22.957208"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt atque totam vero?"], ["description", "Non libero inventore provident."], ["date", "2020-05-06 18:18:22.958465"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:22.959187"], ["updated_at", "2020-05-05 18:18:22.959187"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed qui aut quas?"], ["description", "Ut et fuga autem."], ["date", "2020-05-06 18:18:22.960953"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:22.961933"], ["updated_at", "2020-05-05 18:18:22.961933"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et laudantium vel sit?"], ["description", "Iusto impedit nihil omnis."], ["date", "2020-05-06 18:18:22.963326"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:22.964860"], ["updated_at", "2020-05-05 18:18:22.964860"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:18:22 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.27ms) +Completed 200 OK in 35ms (Views: 15.9ms | ActiveRecord: 0.6ms | Allocations: 8637) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Charita Jacobs"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OjtzSQFiQJ/FND7XAa8c5OXJMg.706KUyzZIPuu9pgo0DFA4NQNDq"], ["created_at", "2020-05-05 18:18:23.052317"], ["updated_at", "2020-05-05 18:18:23.052317"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequuntur"], ["description", "Vero qui voluptate eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.056082"], ["updated_at", "2020-05-05 18:18:23.056082"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa hic veritatis est?"], ["description", "Error blanditiis ipsa eius."], ["date", "2020-05-06 18:18:23.057810"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.058897"], ["updated_at", "2020-05-05 18:18:23.058897"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis libero ipsam alias?"], ["description", "Dolorem expedita omnis fuga."], ["date", "2020-05-06 18:18:23.060509"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.061938"], ["updated_at", "2020-05-05 18:18:23.061938"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et sed quidem non?"], ["description", "Error enim sunt alias."], ["date", "2020-05-06 18:18:23.063485"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.064914"], ["updated_at", "2020-05-05 18:18:23.064914"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia harum est quisquam?"], ["description", "Magnam fugiat incidunt exercitationem."], ["date", "2020-05-06 18:18:23.066393"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.067404"], ["updated_at", "2020-05-05 18:18:23.067404"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo fugit voluptas necessitatibus?"], ["description", "Quas voluptates minus at."], ["date", "2020-05-06 18:18:23.069292"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.070559"], ["updated_at", "2020-05-05 18:18:23.070559"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos ut molestias maxime?"], ["description", "Minus vel suscipit rerum."], ["date", "2020-05-06 18:18:23.071993"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.072713"], ["updated_at", "2020-05-05 18:18:23.072713"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non corrupti voluptatem accusamus?"], ["description", "Ut consectetur est autem."], ["date", "2020-05-06 18:18:23.073861"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.074562"], ["updated_at", "2020-05-05 18:18:23.074562"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime et natus aliquam?"], ["description", "Natus nostrum unde dolorem."], ["date", "2020-05-06 18:18:23.075859"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.076584"], ["updated_at", "2020-05-05 18:18:23.076584"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio temporibus hic et?"], ["description", "Et ut dolorum qui."], ["date", "2020-05-06 18:18:23.077844"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.078525"], ["updated_at", "2020-05-05 18:18:23.078525"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur nulla beatae quae?"], ["description", "Ea explicabo pariatur corporis."], ["date", "2020-05-06 18:18:23.081477"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.083051"], ["updated_at", "2020-05-05 18:18:23.083051"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero dolores tempora in?"], ["description", "Cum sint eius commodi."], ["date", "2020-05-06 18:18:23.084971"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.085850"], ["updated_at", "2020-05-05 18:18:23.085850"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem ex dignissimos occaecati?"], ["description", "Maiores sit nemo sit."], ["date", "2020-05-06 18:18:23.087012"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.087705"], ["updated_at", "2020-05-05 18:18:23.087705"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate maiores voluptate neque?"], ["description", "Qui aliquam nemo voluptatibus."], ["date", "2020-05-06 18:18:23.088836"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.089482"], ["updated_at", "2020-05-05 18:18:23.089482"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam id voluptate suscipit?"], ["description", "Qui id tenetur eaque."], ["date", "2020-05-06 18:18:23.090629"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.091356"], ["updated_at", "2020-05-05 18:18:23.091356"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem doloremque debitis itaque?"], ["description", "Sed expedita necessitatibus vel."], ["date", "2020-05-06 18:18:23.092522"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.093206"], ["updated_at", "2020-05-05 18:18:23.093206"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea modi doloribus enim?"], ["description", "Nam ullam sunt illo."], ["date", "2020-05-06 18:18:23.094496"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.095393"], ["updated_at", "2020-05-05 18:18:23.095393"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem unde et minus?"], ["description", "Ut rerum sequi cupiditate."], ["date", "2020-05-06 18:18:23.096880"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.098058"], ["updated_at", "2020-05-05 18:18:23.098058"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed pariatur iure omnis?"], ["description", "Est placeat illo est."], ["date", "2020-05-06 18:18:23.099566"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.100809"], ["updated_at", "2020-05-05 18:18:23.100809"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam quis repellat neque?"], ["description", "Est itaque sunt et."], ["date", "2020-05-06 18:18:23.102712"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.103712"], ["updated_at", "2020-05-05 18:18:23.103712"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo id minus quae?"], ["description", "Et et consequatur repellat."], ["date", "2020-05-06 18:18:23.105131"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.105922"], ["updated_at", "2020-05-05 18:18:23.105922"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:18:23 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (7.97ms) +Completed 200 OK in 11ms (Views: 9.7ms | ActiveRecord: 0.3ms | Allocations: 5513) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jody Ankunding"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$x.gq8ysWil/Qav1uV5pnjO4jOxIxlUPHRzvoXALx8XOlTNpRuHvXq"], ["created_at", "2020-05-05 18:18:23.134694"], ["updated_at", "2020-05-05 18:18:23.134694"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Consectetur omnis similique est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.138394"], ["updated_at", "2020-05-05 18:18:23.138394"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum saepe eius qui?"], ["description", "Voluptate incidunt accusamus quia."], ["date", "2020-05-06 18:18:23.140399"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.141977"], ["updated_at", "2020-05-05 18:18:23.141977"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et consequatur voluptas dignissimos?"], ["description", "Sed aut quae voluptatem."], ["date", "2020-05-06 18:18:23.143694"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.144820"], ["updated_at", "2020-05-05 18:18:23.144820"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque laudantium quibusdam ratione?"], ["description", "Et nam vel nihil."], ["date", "2020-05-06 18:18:23.147303"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.148752"], ["updated_at", "2020-05-05 18:18:23.148752"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint est repellat magnam?"], ["description", "Eligendi nulla dolores qui."], ["date", "2020-05-06 18:18:23.150523"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.151354"], ["updated_at", "2020-05-05 18:18:23.151354"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis nisi ad eius?"], ["description", "Sequi illum veniam quaerat."], ["date", "2020-05-06 18:18:23.152399"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.153069"], ["updated_at", "2020-05-05 18:18:23.153069"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio sit quod et?"], ["description", "Aspernatur fuga est recusandae."], ["date", "2020-05-06 18:18:23.154119"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.154824"], ["updated_at", "2020-05-05 18:18:23.154824"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita inventore enim nam?"], ["description", "Est quas quasi dolore."], ["date", "2020-05-06 18:18:23.155946"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.156796"], ["updated_at", "2020-05-05 18:18:23.156796"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et cupiditate ullam deserunt?"], ["description", "Nemo consequuntur id tempora."], ["date", "2020-05-06 18:18:23.158077"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.159331"], ["updated_at", "2020-05-05 18:18:23.159331"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem quas autem beatae?"], ["description", "Suscipit aperiam voluptatem voluptatem."], ["date", "2020-05-06 18:18:23.160775"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.162261"], ["updated_at", "2020-05-05 18:18:23.162261"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Delectus veniam et at?"], ["description", "Et cum quia est."], ["date", "2020-05-06 18:18:23.165389"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.166422"], ["updated_at", "2020-05-05 18:18:23.166422"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi distinctio quia et?"], ["description", "Eius veniam libero nihil."], ["date", "2020-05-06 18:18:23.168025"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.168930"], ["updated_at", "2020-05-05 18:18:23.168930"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius perferendis quod sunt?"], ["description", "Minima commodi quasi qui."], ["date", "2020-05-06 18:18:23.170284"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.171082"], ["updated_at", "2020-05-05 18:18:23.171082"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laudantium iste eligendi ut?"], ["description", "Magnam error saepe nihil."], ["date", "2020-05-06 18:18:23.172488"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.173331"], ["updated_at", "2020-05-05 18:18:23.173331"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur esse in nesciunt?"], ["description", "Nesciunt ut perspiciatis exercitationem."], ["date", "2020-05-06 18:18:23.174901"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.175715"], ["updated_at", "2020-05-05 18:18:23.175715"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas cumque ducimus veniam?"], ["description", "Minima esse rerum aliquam."], ["date", "2020-05-06 18:18:23.176933"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.177718"], ["updated_at", "2020-05-05 18:18:23.177718"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et numquam esse dolore?"], ["description", "Dolor incidunt velit quam."], ["date", "2020-05-06 18:18:23.178863"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.179552"], ["updated_at", "2020-05-05 18:18:23.179552"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui ab pariatur eum?"], ["description", "Consequatur et dolorem veritatis."], ["date", "2020-05-06 18:18:23.180945"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.182312"], ["updated_at", "2020-05-05 18:18:23.182312"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore eveniet id voluptatem?"], ["description", "Dolores est minus officia."], ["date", "2020-05-06 18:18:23.183922"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.184925"], ["updated_at", "2020-05-05 18:18:23.184925"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia voluptatem eius animi?"], ["description", "Vel dolorem nihil reiciendis."], ["date", "2020-05-06 18:18:23.186320"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.187140"], ["updated_at", "2020-05-05 18:18:23.187140"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit qui natus ducimus?"], ["description", "Odit veniam ut nihil."], ["date", "2020-05-06 18:18:23.188340"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.189027"], ["updated_at", "2020-05-05 18:18:23.189027"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:18:23 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 404 Not Found in 6ms (Views: 5.2ms | ActiveRecord: 0.1ms | Allocations: 865) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.9ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alec Osinski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$N5sriaZxNu0OKUpO4yPx8u4rR4gxYJip0VdICgHtpgwN3BBUivSQu"], ["created_at", "2020-05-05 18:18:23.209206"], ["updated_at", "2020-05-05 18:18:23.209206"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "amet"], ["description", "Sunt omnis nemo inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.214054"], ["updated_at", "2020-05-05 18:18:23.214054"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error et ut porro?"], ["description", "Unde a aut recusandae."], ["date", "2020-05-06 18:18:23.216264"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.217396"], ["updated_at", "2020-05-05 18:18:23.217396"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequuntur repudiandae eum iure?"], ["description", "Non doloremque molestiae ipsum."], ["date", "2020-05-06 18:18:23.218845"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.219650"], ["updated_at", "2020-05-05 18:18:23.219650"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et blanditiis quas esse?"], ["description", "Et voluptatem voluptas sit."], ["date", "2020-05-06 18:18:23.220890"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.222263"], ["updated_at", "2020-05-05 18:18:23.222263"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non omnis sed modi?"], ["description", "Et saepe enim et."], ["date", "2020-05-06 18:18:23.224242"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.225938"], ["updated_at", "2020-05-05 18:18:23.225938"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui est cum doloremque?"], ["description", "Aliquid nam adipisci et."], ["date", "2020-05-06 18:18:23.227308"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.228094"], ["updated_at", "2020-05-05 18:18:23.228094"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut vero occaecati cum?"], ["description", "Ipsa aut a at."], ["date", "2020-05-06 18:18:23.229155"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.229837"], ["updated_at", "2020-05-05 18:18:23.229837"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae et sunt suscipit?"], ["description", "Ex dolor sint ad."], ["date", "2020-05-06 18:18:23.231237"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.232479"], ["updated_at", "2020-05-05 18:18:23.232479"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus itaque earum quia?"], ["description", "Illo explicabo ullam quo."], ["date", "2020-05-06 18:18:23.233993"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.234987"], ["updated_at", "2020-05-05 18:18:23.234987"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe cum sit ullam?"], ["description", "Maiores sunt eos odio."], ["date", "2020-05-06 18:18:23.236351"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.237074"], ["updated_at", "2020-05-05 18:18:23.237074"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt id aut eligendi?"], ["description", "Repudiandae itaque voluptatibus ex."], ["date", "2020-05-06 18:18:23.239355"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.240155"], ["updated_at", "2020-05-05 18:18:23.240155"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus sint quasi voluptates?"], ["description", "Iusto autem id molestias."], ["date", "2020-05-06 18:18:23.241720"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.243035"], ["updated_at", "2020-05-05 18:18:23.243035"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi ipsa sed harum?"], ["description", "Consequatur cum quibusdam sint."], ["date", "2020-05-06 18:18:23.244513"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.245371"], ["updated_at", "2020-05-05 18:18:23.245371"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente et et et?"], ["description", "Consequatur maiores modi eum."], ["date", "2020-05-06 18:18:23.247164"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.248160"], ["updated_at", "2020-05-05 18:18:23.248160"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas et nostrum minus?"], ["description", "Saepe temporibus reprehenderit ipsa."], ["date", "2020-05-06 18:18:23.249755"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.250538"], ["updated_at", "2020-05-05 18:18:23.250538"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit ipsam vel et?"], ["description", "Voluptatem alias dolores neque."], ["date", "2020-05-06 18:18:23.251751"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.252546"], ["updated_at", "2020-05-05 18:18:23.252546"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut voluptatibus nam voluptatem?"], ["description", "Dolores aperiam harum et."], ["date", "2020-05-06 18:18:23.253680"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.254383"], ["updated_at", "2020-05-05 18:18:23.254383"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero ut velit eum?"], ["description", "Non tenetur voluptas dicta."], ["date", "2020-05-06 18:18:23.255612"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.256370"], ["updated_at", "2020-05-05 18:18:23.256370"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est sit fugit ipsum?"], ["description", "Nam sit quia est."], ["date", "2020-05-06 18:18:23.257561"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.258258"], ["updated_at", "2020-05-05 18:18:23.258258"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste voluptates quis fugiat?"], ["description", "Ad temporibus id ut."], ["date", "2020-05-06 18:18:23.259434"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.260136"], ["updated_at", "2020-05-05 18:18:23.260136"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum aut molestiae facilis?"], ["description", "Ex cum est libero."], ["date", "2020-05-06 18:18:23.261468"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.263144"], ["updated_at", "2020-05-05 18:18:23.263144"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:18:23 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Petra Langworth II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$462V66MeD2ZAyAiKT0f77evIARWn.uzUQByIYXMHe6t2ukpNm0Aom"], ["created_at", "2020-05-05 18:18:23.283975"], ["updated_at", "2020-05-05 18:18:23.283975"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eaque"], ["description", "Et molestiae nihil voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.287747"], ["updated_at", "2020-05-05 18:18:23.287747"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut ut eum est?"], ["description", "Ipsa maiores laborum repudiandae."], ["date", "2020-05-06 18:18:23.289394"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.290418"], ["updated_at", "2020-05-05 18:18:23.290418"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident impedit asperiores illo?"], ["description", "Quia hic consectetur facere."], ["date", "2020-05-06 18:18:23.291989"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.292870"], ["updated_at", "2020-05-05 18:18:23.292870"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio ut ex consequatur?"], ["description", "Qui accusantium ut fugit."], ["date", "2020-05-06 18:18:23.294152"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.294957"], ["updated_at", "2020-05-05 18:18:23.294957"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos eius tempora iure?"], ["description", "Officiis illum qui adipisci."], ["date", "2020-05-06 18:18:23.296555"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.297616"], ["updated_at", "2020-05-05 18:18:23.297616"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem cupiditate et voluptatum?"], ["description", "Ipsum eum beatae corporis."], ["date", "2020-05-06 18:18:23.298893"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.299608"], ["updated_at", "2020-05-05 18:18:23.299608"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas inventore magnam quia?"], ["description", "Eveniet dolorem vel qui."], ["date", "2020-05-06 18:18:23.300748"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.301640"], ["updated_at", "2020-05-05 18:18:23.301640"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas iusto porro neque?"], ["description", "Aut architecto sapiente tenetur."], ["date", "2020-05-06 18:18:23.303786"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.304994"], ["updated_at", "2020-05-05 18:18:23.304994"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero autem quia ut?"], ["description", "Aut ullam laboriosam id."], ["date", "2020-05-06 18:18:23.306989"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.307970"], ["updated_at", "2020-05-05 18:18:23.307970"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit nulla accusantium qui?"], ["description", "Eligendi delectus rerum illum."], ["date", "2020-05-06 18:18:23.309308"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.310112"], ["updated_at", "2020-05-05 18:18:23.310112"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo accusamus fugit sapiente?"], ["description", "Et aut voluptate laudantium."], ["date", "2020-05-06 18:18:23.312139"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.313469"], ["updated_at", "2020-05-05 18:18:23.313469"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis sed aspernatur facilis?"], ["description", "In perspiciatis placeat in."], ["date", "2020-05-06 18:18:23.315400"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.316376"], ["updated_at", "2020-05-05 18:18:23.316376"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum temporibus harum nobis?"], ["description", "Dolor aut fugit voluptates."], ["date", "2020-05-06 18:18:23.317985"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.319000"], ["updated_at", "2020-05-05 18:18:23.319000"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere aut quam officia?"], ["description", "Commodi qui veritatis fugit."], ["date", "2020-05-06 18:18:23.320521"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.321867"], ["updated_at", "2020-05-05 18:18:23.321867"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias et aut quam?"], ["description", "Adipisci non doloremque et."], ["date", "2020-05-06 18:18:23.324180"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.325264"], ["updated_at", "2020-05-05 18:18:23.325264"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea numquam est omnis?"], ["description", "Vel reiciendis debitis at."], ["date", "2020-05-06 18:18:23.326764"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.327499"], ["updated_at", "2020-05-05 18:18:23.327499"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem et hic occaecati?"], ["description", "Voluptates repellat inventore temporibus."], ["date", "2020-05-06 18:18:23.328785"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.329485"], ["updated_at", "2020-05-05 18:18:23.329485"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut commodi optio dignissimos?"], ["description", "Ad est vel consequatur."], ["date", "2020-05-06 18:18:23.331030"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.332442"], ["updated_at", "2020-05-05 18:18:23.332442"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum sequi numquam provident?"], ["description", "Ad cupiditate nemo soluta."], ["date", "2020-05-06 18:18:23.333907"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.334868"], ["updated_at", "2020-05-05 18:18:23.334868"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est commodi voluptatem non?"], ["description", "Optio ut repellat ipsum."], ["date", "2020-05-06 18:18:23.336329"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.337631"], ["updated_at", "2020-05-05 18:18:23.337631"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente vitae voluptatibus corporis?"], ["description", "Quod nihil illo quaerat."], ["date", "2020-05-06 18:18:23.338779"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.339592"], ["updated_at", "2020-05-05 18:18:23.339592"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:18:23 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.67ms) +Completed 200 OK in 4ms (Views: 1.2ms | ActiveRecord: 0.4ms | Allocations: 1085) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Fletcher Sanford"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZZw4pCikgGg1GvKuKNtdf.c.zkfJBqUrXSuNJkHpCMmbcbCCuvEpW"], ["created_at", "2020-05-05 18:18:23.357604"], ["updated_at", "2020-05-05 18:18:23.357604"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "provident"], ["description", "Impedit est magni nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.360593"], ["updated_at", "2020-05-05 18:18:23.360593"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati et labore quibusdam?"], ["description", "Quidem inventore quasi tempore."], ["date", "2020-05-06 18:18:23.362503"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.365913"], ["updated_at", "2020-05-05 18:18:23.365913"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Culpa eveniet aut eos?"], ["description", "A quibusdam occaecati vitae."], ["date", "2020-05-06 18:18:23.368318"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.369429"], ["updated_at", "2020-05-05 18:18:23.369429"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima magni accusantium fugiat?"], ["description", "Veritatis molestiae non aut."], ["date", "2020-05-06 18:18:23.370877"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.371652"], ["updated_at", "2020-05-05 18:18:23.371652"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit nobis sint laborum?"], ["description", "Nihil dolorem in hic."], ["date", "2020-05-06 18:18:23.372935"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.373848"], ["updated_at", "2020-05-05 18:18:23.373848"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel quaerat commodi ipsam?"], ["description", "Et laborum voluptates beatae."], ["date", "2020-05-06 18:18:23.375397"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.376284"], ["updated_at", "2020-05-05 18:18:23.376284"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut est consectetur illo?"], ["description", "Consequatur est sit rem."], ["date", "2020-05-06 18:18:23.377524"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.378289"], ["updated_at", "2020-05-05 18:18:23.378289"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non rerum libero qui?"], ["description", "Saepe consequatur iure commodi."], ["date", "2020-05-06 18:18:23.379423"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.380136"], ["updated_at", "2020-05-05 18:18:23.380136"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum sint fuga aliquid?"], ["description", "Necessitatibus provident vero ab."], ["date", "2020-05-06 18:18:23.381209"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.382080"], ["updated_at", "2020-05-05 18:18:23.382080"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui voluptas illo dolores?"], ["description", "Amet voluptas voluptatum qui."], ["date", "2020-05-06 18:18:23.384330"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.385627"], ["updated_at", "2020-05-05 18:18:23.385627"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique voluptatem dolores et?"], ["description", "Tenetur quia dolorem velit."], ["date", "2020-05-06 18:18:23.388154"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.389124"], ["updated_at", "2020-05-05 18:18:23.389124"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit omnis possimus dolor?"], ["description", "Qui quia ut consectetur."], ["date", "2020-05-06 18:18:23.390542"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.391358"], ["updated_at", "2020-05-05 18:18:23.391358"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam delectus sit omnis?"], ["description", "At ut corrupti quaerat."], ["date", "2020-05-06 18:18:23.392684"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.393475"], ["updated_at", "2020-05-05 18:18:23.393475"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi rerum at sunt?"], ["description", "Et soluta labore qui."], ["date", "2020-05-06 18:18:23.394764"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.395822"], ["updated_at", "2020-05-05 18:18:23.395822"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque sunt et nobis?"], ["description", "Consequatur autem labore et."], ["date", "2020-05-06 18:18:23.397738"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.398845"], ["updated_at", "2020-05-05 18:18:23.398845"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut amet perferendis tempore?"], ["description", "Error similique nostrum rerum."], ["date", "2020-05-06 18:18:23.400307"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.401076"], ["updated_at", "2020-05-05 18:18:23.401076"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis placeat quia architecto?"], ["description", "Voluptas sunt et eos."], ["date", "2020-05-06 18:18:23.402917"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.404290"], ["updated_at", "2020-05-05 18:18:23.404290"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est voluptatum iure et?"], ["description", "Possimus cumque accusantium sed."], ["date", "2020-05-06 18:18:23.405676"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.406501"], ["updated_at", "2020-05-05 18:18:23.406501"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque iusto facilis delectus?"], ["description", "Tempora officiis aperiam sunt."], ["date", "2020-05-06 18:18:23.407718"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.408454"], ["updated_at", "2020-05-05 18:18:23.408454"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae aut ratione dicta?"], ["description", "Nihil praesentium aut doloremque."], ["date", "2020-05-06 18:18:23.409721"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.410525"], ["updated_at", "2020-05-05 18:18:23.410525"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam voluptatem ducimus consequatur?"], ["description", "Atque est fuga ipsum."], ["date", "2020-05-06 18:18:23.412084"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.413103"], ["updated_at", "2020-05-05 18:18:23.413103"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:18:23 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.97ms) +Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.2ms | Allocations: 1058) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ressie Ankunding"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XSciAc7oX.wJEaogdzmoeu0nyib6m2g43NiAz9QekVA1Dc.jychaS"], ["created_at", "2020-05-05 18:18:23.477103"], ["updated_at", "2020-05-05 18:18:23.477103"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Voluptatem minus itaque animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.481288"], ["updated_at", "2020-05-05 18:18:23.481288"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda eius tenetur sit?"], ["description", "Et sed facere nihil."], ["date", "2020-05-06 18:18:23.483931"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.485425"], ["updated_at", "2020-05-05 18:18:23.485425"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis aut iusto rem?"], ["description", "Sed est mollitia eos."], ["date", "2020-05-06 18:18:23.489035"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.490612"], ["updated_at", "2020-05-05 18:18:23.490612"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel laboriosam soluta nam?"], ["description", "Eos molestiae facilis accusantium."], ["date", "2020-05-06 18:18:23.492447"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.493351"], ["updated_at", "2020-05-05 18:18:23.493351"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quibusdam dolore sed sapiente?"], ["description", "Dolor aut blanditiis laborum."], ["date", "2020-05-06 18:18:23.494700"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.495485"], ["updated_at", "2020-05-05 18:18:23.495485"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto voluptas enim aliquid?"], ["description", "Perspiciatis et aut illo."], ["date", "2020-05-06 18:18:23.496676"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.497944"], ["updated_at", "2020-05-05 18:18:23.497944"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem esse non quidem?"], ["description", "Est molestiae assumenda nulla."], ["date", "2020-05-06 18:18:23.499586"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.500435"], ["updated_at", "2020-05-05 18:18:23.500435"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit totam consequatur animi?"], ["description", "Sed quibusdam accusantium in."], ["date", "2020-05-06 18:18:23.501857"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.503087"], ["updated_at", "2020-05-05 18:18:23.503087"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo est est facere?"], ["description", "Eum expedita doloremque impedit."], ["date", "2020-05-06 18:18:23.505577"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.506799"], ["updated_at", "2020-05-05 18:18:23.506799"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed aut ad sint?"], ["description", "Eaque cumque inventore ut."], ["date", "2020-05-06 18:18:23.508737"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.510378"], ["updated_at", "2020-05-05 18:18:23.510378"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam nihil id ea?"], ["description", "Ipsam est est sed."], ["date", "2020-05-06 18:18:23.512871"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.513929"], ["updated_at", "2020-05-05 18:18:23.513929"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse omnis et rerum?"], ["description", "Sed recusandae est rem."], ["date", "2020-05-06 18:18:23.516040"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.517004"], ["updated_at", "2020-05-05 18:18:23.517004"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut et omnis et?"], ["description", "Iste consequatur ut corporis."], ["date", "2020-05-06 18:18:23.518542"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.519384"], ["updated_at", "2020-05-05 18:18:23.519384"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis est placeat quia?"], ["description", "Illo consequatur ut aliquid."], ["date", "2020-05-06 18:18:23.521146"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.521923"], ["updated_at", "2020-05-05 18:18:23.521923"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum quam unde reiciendis?"], ["description", "Velit libero quos aliquam."], ["date", "2020-05-06 18:18:23.524237"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.525878"], ["updated_at", "2020-05-05 18:18:23.525878"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae perferendis dicta sunt?"], ["description", "Illum harum corrupti tenetur."], ["date", "2020-05-06 18:18:23.527715"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.528669"], ["updated_at", "2020-05-05 18:18:23.528669"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea ea amet vel?"], ["description", "Eius sapiente optio nihil."], ["date", "2020-05-06 18:18:23.530597"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.531875"], ["updated_at", "2020-05-05 18:18:23.531875"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quibusdam incidunt amet adipisci?"], ["description", "Sed cupiditate ullam magnam."], ["date", "2020-05-06 18:18:23.533593"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.534426"], ["updated_at", "2020-05-05 18:18:23.534426"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus dolor ipsa voluptas?"], ["description", "Ab suscipit ex expedita."], ["date", "2020-05-06 18:18:23.536246"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.537024"], ["updated_at", "2020-05-05 18:18:23.537024"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem dignissimos molestiae earum?"], ["description", "Delectus rerum facere id."], ["date", "2020-05-06 18:18:23.538219"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.538942"], ["updated_at", "2020-05-05 18:18:23.538942"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora minus reprehenderit hic?"], ["description", "Sunt doloribus molestiae incidunt."], ["date", "2020-05-06 18:18:23.540085"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.540794"], ["updated_at", "2020-05-05 18:18:23.540794"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:18:23 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 4ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 884) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gregoria Rempel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1H2bAPxZqOQJQflDJiTUFe/KhWLmAES1puwlUu8bKfMX9/xcJJe0K"], ["created_at", "2020-05-05 18:18:23.559293"], ["updated_at", "2020-05-05 18:18:23.559293"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vitae"], ["description", "Dolores delectus sapiente iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.562231"], ["updated_at", "2020-05-05 18:18:23.562231"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Culpa excepturi sint et?"], ["description", "Sint minus quos debitis."], ["date", "2020-05-06 18:18:23.566251"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.568142"], ["updated_at", "2020-05-05 18:18:23.568142"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et ut et natus?"], ["description", "Quis natus incidunt id."], ["date", "2020-05-06 18:18:23.570451"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.572475"], ["updated_at", "2020-05-05 18:18:23.572475"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Hic sed adipisci et?"], ["description", "Et ut repellat quia."], ["date", "2020-05-06 18:18:23.574412"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.575434"], ["updated_at", "2020-05-05 18:18:23.575434"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni explicabo quae nisi?"], ["description", "Incidunt rerum sit et."], ["date", "2020-05-06 18:18:23.576704"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.577410"], ["updated_at", "2020-05-05 18:18:23.577410"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum architecto vel aperiam?"], ["description", "Aut ab sint omnis."], ["date", "2020-05-06 18:18:23.578698"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.579399"], ["updated_at", "2020-05-05 18:18:23.579399"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At eius unde porro?"], ["description", "Earum laborum exercitationem qui."], ["date", "2020-05-06 18:18:23.580600"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.581307"], ["updated_at", "2020-05-05 18:18:23.581307"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum quia est eum?"], ["description", "Aperiam eum aut impedit."], ["date", "2020-05-06 18:18:23.582480"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.583490"], ["updated_at", "2020-05-05 18:18:23.583490"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem labore fugiat voluptate?"], ["description", "Nulla consequuntur ducimus et."], ["date", "2020-05-06 18:18:23.586134"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.587188"], ["updated_at", "2020-05-05 18:18:23.587188"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur aut voluptates et?"], ["description", "Et distinctio illo dolorem."], ["date", "2020-05-06 18:18:23.588595"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.589464"], ["updated_at", "2020-05-05 18:18:23.589464"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero quo dicta sunt?"], ["description", "Impedit odio quam quibusdam."], ["date", "2020-05-06 18:18:23.591885"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.592965"], ["updated_at", "2020-05-05 18:18:23.592965"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum ut fugit ea?"], ["description", "Laudantium quia id sit."], ["date", "2020-05-06 18:18:23.595567"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.598847"], ["updated_at", "2020-05-05 18:18:23.598847"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum placeat illo laborum?"], ["description", "Delectus cupiditate rerum harum."], ["date", "2020-05-06 18:18:23.600710"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.601677"], ["updated_at", "2020-05-05 18:18:23.601677"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam at consequatur enim?"], ["description", "Et asperiores qui libero."], ["date", "2020-05-06 18:18:23.603244"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.605898"], ["updated_at", "2020-05-05 18:18:23.605898"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut autem explicabo fuga?"], ["description", "Error accusamus dolor ea."], ["date", "2020-05-06 18:18:23.607803"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.608784"], ["updated_at", "2020-05-05 18:18:23.608784"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In et harum itaque?"], ["description", "Officiis sapiente quo ullam."], ["date", "2020-05-06 18:18:23.610135"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.610923"], ["updated_at", "2020-05-05 18:18:23.610923"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam ea rerum natus?"], ["description", "Deleniti et dolores eligendi."], ["date", "2020-05-06 18:18:23.612606"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.614377"], ["updated_at", "2020-05-05 18:18:23.614377"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum accusantium aut deleniti?"], ["description", "Quisquam aut perferendis perspiciatis."], ["date", "2020-05-06 18:18:23.616001"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.616993"], ["updated_at", "2020-05-05 18:18:23.616993"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste labore qui quae?"], ["description", "Architecto nemo beatae sunt."], ["date", "2020-05-06 18:18:23.618199"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.619008"], ["updated_at", "2020-05-05 18:18:23.619008"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad animi qui quo?"], ["description", "Aliquid molestiae non est."], ["date", "2020-05-06 18:18:23.620366"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.621096"], ["updated_at", "2020-05-05 18:18:23.621096"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem quos non illo?"], ["description", "Recusandae quam ab officiis."], ["date", "2020-05-06 18:18:23.622175"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:18:23.622889"], ["updated_at", "2020-05-05 18:18:23.622889"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:18:23 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.3ms | Allocations: 867) +  (0.7ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Laboriosam quos aut et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.767755"], ["updated_at", "2020-05-05 18:18:23.767755"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "inventore"], ["description", "Voluptatem quis saepe ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.771963"], ["updated_at", "2020-05-05 18:18:23.771963"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "a"], ["description", "Consequatur quis animi delectus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.773581"], ["updated_at", "2020-05-05 18:18:23.773581"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempore"], ["description", "Ut ea adipisci nostrum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.774960"], ["updated_at", "2020-05-05 18:18:23.774960"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Libero sed nobis amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.776393"], ["updated_at", "2020-05-05 18:18:23.776393"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "A est autem aperiam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.777849"], ["updated_at", "2020-05-05 18:18:23.777849"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veniam"], ["description", "Quisquam explicabo suscipit maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.779291"], ["updated_at", "2020-05-05 18:18:23.779291"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "beatae"], ["description", "Aliquid rerum minus sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.780755"], ["updated_at", "2020-05-05 18:18:23.780755"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "commodi"], ["description", "Et impedit corrupti quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.782046"], ["updated_at", "2020-05-05 18:18:23.782046"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Magni dicta ex ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.783356"], ["updated_at", "2020-05-05 18:18:23.783356"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Sonny Pacocha"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$n0cCx8vJFKTyTRTW/4LG2e44SYgFbWAkGpoyAsqsafxiEPy8Z2amC"], ["created_at", "2020-05-05 18:18:23.787028"], ["updated_at", "2020-05-05 18:18:23.787028"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:18:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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.9ms | ActiveRecord: 0.2ms | Allocations: 3002) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ratione"], ["description", "Nulla molestiae nobis iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.808812"], ["updated_at", "2020-05-05 18:18:23.808812"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatum"], ["description", "Fugiat tenetur sed neque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.812460"], ["updated_at", "2020-05-05 18:18:23.812460"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Velit et incidunt tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.815229"], ["updated_at", "2020-05-05 18:18:23.815229"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odit"], ["description", "Ea explicabo magnam nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.817602"], ["updated_at", "2020-05-05 18:18:23.817602"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Sequi natus placeat accusantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.819239"], ["updated_at", "2020-05-05 18:18:23.819239"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Excepturi tempora et rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.820577"], ["updated_at", "2020-05-05 18:18:23.820577"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aspernatur"], ["description", "Dicta corporis quis voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.822023"], ["updated_at", "2020-05-05 18:18:23.822023"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veniam"], ["description", "Et et neque labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.823408"], ["updated_at", "2020-05-05 18:18:23.823408"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Vitae voluptate placeat praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.826237"], ["updated_at", "2020-05-05 18:18:23.826237"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Quia est animi qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.828827"], ["updated_at", "2020-05-05 18:18:23.828827"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Seymour Langosh"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.CGlSZlYHUsmCwuFnEBmm.qGEkevAFxXizWw/5QtrM4ldJ9X1TZda"], ["created_at", "2020-05-05 18:18:23.832187"], ["updated_at", "2020-05-05 18:18:23.832187"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:18:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.5ms | ActiveRecord: 0.2ms | Allocations: 2844) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nostrum"], ["description", "Vero autem molestiae debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.872169"], ["updated_at", "2020-05-05 18:18:23.872169"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Eum quas nisi et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.875319"], ["updated_at", "2020-05-05 18:18:23.875319"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cupiditate"], ["description", "Soluta tempora repudiandae est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.876867"], ["updated_at", "2020-05-05 18:18:23.876867"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "atque"], ["description", "Omnis maxime dolorum eius."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.878170"], ["updated_at", "2020-05-05 18:18:23.878170"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "saepe"], ["description", "Et voluptatibus fugiat eius."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.879612"], ["updated_at", "2020-05-05 18:18:23.879612"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "assumenda"], ["description", "Voluptatem nobis est illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.881615"], ["updated_at", "2020-05-05 18:18:23.881615"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "error"], ["description", "Error quae quaerat voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.883071"], ["updated_at", "2020-05-05 18:18:23.883071"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Ea et quia aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.884432"], ["updated_at", "2020-05-05 18:18:23.884432"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Est placeat aperiam deleniti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.886381"], ["updated_at", "2020-05-05 18:18:23.886381"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Alias iste amet dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.888133"], ["updated_at", "2020-05-05 18:18:23.888133"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Keena Schroeder"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FIydMmW7VFLp5no/AC6RWuurmUOquEkqQe8XIDw5oszTLg9rLHD4O"], ["created_at", "2020-05-05 18:18:23.890750"], ["updated_at", "2020-05-05 18:18:23.890750"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:18:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.6ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:18:23 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.36ms) +Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.2ms | Allocations: 1242) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "temporibus"], ["description", "Quia sunt minus dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.913050"], ["updated_at", "2020-05-05 18:18:23.913050"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Quaerat eum accusantium ipsum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.916662"], ["updated_at", "2020-05-05 18:18:23.916662"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quasi"], ["description", "Quisquam occaecati dolor suscipit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.918178"], ["updated_at", "2020-05-05 18:18:23.918178"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "hic"], ["description", "Eaque ad est aliquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.919498"], ["updated_at", "2020-05-05 18:18:23.919498"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsa"], ["description", "Nulla expedita est magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.920798"], ["updated_at", "2020-05-05 18:18:23.920798"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tenetur"], ["description", "Ut molestiae aspernatur et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.922193"], ["updated_at", "2020-05-05 18:18:23.922193"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Numquam delectus dicta asperiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.923542"], ["updated_at", "2020-05-05 18:18:23.923542"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quae"], ["description", "Natus sint dolores culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.925023"], ["updated_at", "2020-05-05 18:18:23.925023"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iusto"], ["description", "Aut ullam facere mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.927386"], ["updated_at", "2020-05-05 18:18:23.927386"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "at"], ["description", "Vitae vel nisi eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.929592"], ["updated_at", "2020-05-05 18:18:23.929592"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kaylee Paucek"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GhJJpmosFjEG926be.KwV.oSc9ZNF1ZWU2FmQ/B8ywiTOjAZ.QGvG"], ["created_at", "2020-05-05 18:18:23.933189"], ["updated_at", "2020-05-05 18:18:23.933189"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:18:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2844) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:18:23 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (3.09ms) +Completed 200 OK in 5ms (Views: 3.3ms | ActiveRecord: 0.3ms | Allocations: 1240) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Quia repellat eaque cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.957668"], ["updated_at", "2020-05-05 18:18:23.957668"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Nemo omnis commodi autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.961159"], ["updated_at", "2020-05-05 18:18:23.961159"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magnam"], ["description", "Quidem ut ipsa sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.962950"], ["updated_at", "2020-05-05 18:18:23.962950"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magni"], ["description", "Iusto totam est sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.966050"], ["updated_at", "2020-05-05 18:18:23.966050"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dignissimos"], ["description", "Aut nam sint vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.968966"], ["updated_at", "2020-05-05 18:18:23.968966"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Ullam ipsa debitis repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.971366"], ["updated_at", "2020-05-05 18:18:23.971366"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Cum corrupti omnis quisquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.972842"], ["updated_at", "2020-05-05 18:18:23.972842"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "reprehenderit"], ["description", "Quia omnis voluptatem esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.974099"], ["updated_at", "2020-05-05 18:18:23.974099"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Deserunt aliquam aut aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.975709"], ["updated_at", "2020-05-05 18:18:23.975709"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minima"], ["description", "Qui error non esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:23.977266"], ["updated_at", "2020-05-05 18:18:23.977266"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cedric Farrell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1rwO/hYdEXc1Jmdd4GlD.uD6IdVuFfCnnRD8WYO7sq8gmHeTRIoo."], ["created_at", "2020-05-05 18:18:23.979844"], ["updated_at", "2020-05-05 18:18:23.979844"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:18:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.03ms) +Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms | Allocations: 2842) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:18:23 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 512) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "reiciendis"], ["description", "Doloribus iusto voluptatibus quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.001184"], ["updated_at", "2020-05-05 18:18:24.001184"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veniam"], ["description", "Possimus est impedit dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.003940"], ["updated_at", "2020-05-05 18:18:24.003940"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Esse consequatur maiores blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.005643"], ["updated_at", "2020-05-05 18:18:24.005643"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Natus quia corporis ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.008020"], ["updated_at", "2020-05-05 18:18:24.008020"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptates"], ["description", "Sint laborum ut autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.010062"], ["updated_at", "2020-05-05 18:18:24.010062"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Adipisci rem quia laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.012617"], ["updated_at", "2020-05-05 18:18:24.012617"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Ducimus fugit officia possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.015249"], ["updated_at", "2020-05-05 18:18:24.015249"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quod"], ["description", "Corporis eaque fugiat doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.017125"], ["updated_at", "2020-05-05 18:18:24.017125"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Molestias dolorem a similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.018850"], ["updated_at", "2020-05-05 18:18:24.018850"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempore"], ["description", "Nesciunt voluptatem fugiat ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.020204"], ["updated_at", "2020-05-05 18:18:24.020204"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Broderick Wuckert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$A1xBeqURSv48wDHzZF/C5uvk6k1tmqX5JJN0xxHHe2b9kfFigVulu"], ["created_at", "2020-05-05 18:18:24.022799"], ["updated_at", "2020-05-05 18:18:24.022799"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:18:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.27ms) +Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:18:24 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (2.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "architecto"], ["description", "Consequuntur in earum sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.045360"], ["updated_at", "2020-05-05 18:18:24.045360"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cumque"], ["description", "Quos consequatur est voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.050618"], ["updated_at", "2020-05-05 18:18:24.050618"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Cum impedit praesentium soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.053297"], ["updated_at", "2020-05-05 18:18:24.053297"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "similique"], ["description", "Magni reiciendis nihil nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.055445"], ["updated_at", "2020-05-05 18:18:24.055445"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellat"], ["description", "Est voluptatem et inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.056887"], ["updated_at", "2020-05-05 18:18:24.056887"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "exercitationem"], ["description", "Molestiae non voluptas et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.058276"], ["updated_at", "2020-05-05 18:18:24.058276"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "beatae"], ["description", "Incidunt quod et doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.059573"], ["updated_at", "2020-05-05 18:18:24.059573"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Qui quisquam quaerat debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.060864"], ["updated_at", "2020-05-05 18:18:24.060864"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugiat"], ["description", "Debitis quo sint voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.062143"], ["updated_at", "2020-05-05 18:18:24.062143"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Ad alias qui numquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.063466"], ["updated_at", "2020-05-05 18:18:24.063466"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Marcos Beier"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YY/8XxuewDtanqIr4w6UCepUMKQYjV2GzVFre4cjYLD7UgewUmxbm"], ["created_at", "2020-05-05 18:18:24.067051"], ["updated_at", "2020-05-05 18:18:24.067051"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:18:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | Allocations: 2845) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:18:24 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:18:24.109697"], ["updated_at", "2020-05-05 18:18:24.109697"], ["created_by", "1"]] +  (0.2ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.57ms) +Completed 201 Created in 23ms (Views: 1.1ms | ActiveRecord: 1.2ms | Allocations: 6231) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ducimus"], ["description", "Id sit consequatur velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.128691"], ["updated_at", "2020-05-05 18:18:24.128691"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Reprehenderit maxime magnam eius."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.132428"], ["updated_at", "2020-05-05 18:18:24.132428"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nostrum"], ["description", "Aut voluptas ullam soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.133906"], ["updated_at", "2020-05-05 18:18:24.133906"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nemo"], ["description", "Dolorem reiciendis deleniti est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.135514"], ["updated_at", "2020-05-05 18:18:24.135514"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsa"], ["description", "Sit aliquid magni eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.136844"], ["updated_at", "2020-05-05 18:18:24.136844"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Eius exercitationem autem quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.138100"], ["updated_at", "2020-05-05 18:18:24.138100"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsam"], ["description", "Dignissimos recusandae dolore rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.139422"], ["updated_at", "2020-05-05 18:18:24.139422"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptates"], ["description", "Eum excepturi iusto et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.140685"], ["updated_at", "2020-05-05 18:18:24.140685"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laborum"], ["description", "Animi qui voluptatem praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.141948"], ["updated_at", "2020-05-05 18:18:24.141948"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Adipisci dolor sunt nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.143209"], ["updated_at", "2020-05-05 18:18:24.143209"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jean Kuvalis"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/avdVGtpKFC2nGaOvUEUUuO1Q.qsmuX7Q6od2Bzs0tg6D9Kv8vgAS"], ["created_at", "2020-05-05 18:18:24.146399"], ["updated_at", "2020-05-05 18:18:24.146399"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:18:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.63ms) +Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.3ms | Allocations: 2845) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:18:24 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:18:24.160333"], ["updated_at", "2020-05-05 18:18:24.160333"], ["created_by", "1"]] +  (0.2ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.4ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.58ms) +Completed 201 Created in 6ms (Views: 1.0ms | ActiveRecord: 1.0ms | Allocations: 2251) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "esse"], ["description", "Vel dolor alias facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.175878"], ["updated_at", "2020-05-05 18:18:24.175878"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Labore rem non iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.178763"], ["updated_at", "2020-05-05 18:18:24.178763"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quaerat"], ["description", "Et voluptas et qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.180098"], ["updated_at", "2020-05-05 18:18:24.180098"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tenetur"], ["description", "Dolorem nihil inventore accusantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.181875"], ["updated_at", "2020-05-05 18:18:24.181875"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minus"], ["description", "Voluptas earum aut aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.183392"], ["updated_at", "2020-05-05 18:18:24.183392"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officia"], ["description", "Et quas laborum minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.184770"], ["updated_at", "2020-05-05 18:18:24.184770"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ducimus"], ["description", "Non aut nulla consectetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.186518"], ["updated_at", "2020-05-05 18:18:24.186518"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Nulla ea dolore ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.189327"], ["updated_at", "2020-05-05 18:18:24.189327"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "earum"], ["description", "Facilis quia id voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.191593"], ["updated_at", "2020-05-05 18:18:24.191593"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Similique blanditiis ut est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.193858"], ["updated_at", "2020-05-05 18:18:24.193858"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Olin Leffler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NUX.sTyFWjmphitCdn79peg9xvyGdOyRHy9IalsWjRlhscXktq5Ei"], ["created_at", "2020-05-05 18:18:24.197083"], ["updated_at", "2020-05-05 18:18:24.197083"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:18:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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 POST "/meets" for 127.0.0.1 at 2020-05-05 15:18:24 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms) +Completed 422 Unprocessable Entity in 6ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 4090) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "in"], ["description", "Maxime laborum voluptatem ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.222616"], ["updated_at", "2020-05-05 18:18:24.222616"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Consequatur animi facilis praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.225437"], ["updated_at", "2020-05-05 18:18:24.225437"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corporis"], ["description", "Veniam voluptas eligendi consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.226999"], ["updated_at", "2020-05-05 18:18:24.226999"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "harum"], ["description", "Dicta sunt et fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.229790"], ["updated_at", "2020-05-05 18:18:24.229790"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Sed illum sit aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.233466"], ["updated_at", "2020-05-05 18:18:24.233466"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Ut maiores suscipit aperiam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.235976"], ["updated_at", "2020-05-05 18:18:24.235976"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Quam qui soluta quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.237398"], ["updated_at", "2020-05-05 18:18:24.237398"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "distinctio"], ["description", "Non rerum impedit ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.238673"], ["updated_at", "2020-05-05 18:18:24.238673"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "incidunt"], ["description", "Repellendus culpa accusamus voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.239976"], ["updated_at", "2020-05-05 18:18:24.239976"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dignissimos"], ["description", "Doloribus sit pariatur eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.241298"], ["updated_at", "2020-05-05 18:18:24.241298"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Neal Beahan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QS8I0NmRlU9.6F5PUZif1.dhdq7tPaHlQ2B9sSy2qae.tJY0I42/2"], ["created_at", "2020-05-05 18:18:24.243861"], ["updated_at", "2020-05-05 18:18:24.243861"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:18:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.3ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.13ms) +Completed 200 OK in 9ms (Views: 6.4ms | ActiveRecord: 0.7ms | Allocations: 2842) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:18:24 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "saepe"], ["description", "Molestiae magnam soluta vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.272539"], ["updated_at", "2020-05-05 18:18:24.272539"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Ut ipsum et laboriosam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.275562"], ["updated_at", "2020-05-05 18:18:24.275562"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perspiciatis"], ["description", "Enim cum est alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.277004"], ["updated_at", "2020-05-05 18:18:24.277004"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "placeat"], ["description", "Unde sit aut illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.278314"], ["updated_at", "2020-05-05 18:18:24.278314"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "neque"], ["description", "Nemo ut doloribus adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.279729"], ["updated_at", "2020-05-05 18:18:24.279729"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corrupti"], ["description", "Sed non odit similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.281593"], ["updated_at", "2020-05-05 18:18:24.281593"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Et velit laudantium perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.283091"], ["updated_at", "2020-05-05 18:18:24.283091"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "soluta"], ["description", "Et consequuntur quibusdam ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.284456"], ["updated_at", "2020-05-05 18:18:24.284456"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloribus"], ["description", "Temporibus totam nesciunt sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.285779"], ["updated_at", "2020-05-05 18:18:24.285779"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Rem libero assumenda aliquid."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.287116"], ["updated_at", "2020-05-05 18:18:24.287116"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Felipa Turner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WrtQWvN1/7d1TMZnfS78A.2.vCW8PQ8D/WTC199bC6/3HKOoFRDAe"], ["created_at", "2020-05-05 18:18:24.290606"], ["updated_at", "2020-05-05 18:18:24.290606"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:18:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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.8ms | ActiveRecord: 0.3ms | Allocations: 2842) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:18:24 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:18:24.303244"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 1090) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Sed error et minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.314372"], ["updated_at", "2020-05-05 18:18:24.314372"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facere"], ["description", "Soluta assumenda dolore voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.317654"], ["updated_at", "2020-05-05 18:18:24.317654"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maiores"], ["description", "Sit eligendi quia laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.319201"], ["updated_at", "2020-05-05 18:18:24.319201"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquid"], ["description", "Laboriosam ut enim rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.320512"], ["updated_at", "2020-05-05 18:18:24.320512"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sapiente"], ["description", "Perferendis aliquam dolore autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.321861"], ["updated_at", "2020-05-05 18:18:24.321861"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quibusdam"], ["description", "Voluptatem facere quis ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.323180"], ["updated_at", "2020-05-05 18:18:24.323180"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "possimus"], ["description", "Praesentium nihil ipsa consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.324480"], ["updated_at", "2020-05-05 18:18:24.324480"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Ducimus perferendis sit non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.325944"], ["updated_at", "2020-05-05 18:18:24.325944"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vitae"], ["description", "Porro maxime qui sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.327442"], ["updated_at", "2020-05-05 18:18:24.327442"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Asperiores voluptatem quia iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.330336"], ["updated_at", "2020-05-05 18:18:24.330336"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Ulysses Kozey"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pI4jqb5SC88Tx6MMSY6wq.Qwimute6qgC0Yg8qMFUJxGSFWq2lK52"], ["created_at", "2020-05-05 18:18:24.334691"], ["updated_at", "2020-05-05 18:18:24.334691"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:18:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2844) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:18:24 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:18:24.345430"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 998) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officiis"], ["description", "Et et commodi explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.357507"], ["updated_at", "2020-05-05 18:18:24.357507"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facere"], ["description", "Aut iusto et est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.360339"], ["updated_at", "2020-05-05 18:18:24.360339"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veniam"], ["description", "Et dicta non expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.361807"], ["updated_at", "2020-05-05 18:18:24.361807"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "at"], ["description", "Tempore repellat quam nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.363782"], ["updated_at", "2020-05-05 18:18:24.363782"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quibusdam"], ["description", "Perferendis voluptate exercitationem laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.365557"], ["updated_at", "2020-05-05 18:18:24.365557"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Ea minus molestiae quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.366933"], ["updated_at", "2020-05-05 18:18:24.366933"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Et nemo incidunt et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.368748"], ["updated_at", "2020-05-05 18:18:24.368748"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Unde consequatur et nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.371051"], ["updated_at", "2020-05-05 18:18:24.371051"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Optio sint vero cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.373240"], ["updated_at", "2020-05-05 18:18:24.373240"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Officiis temporibus vel saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:18:24.375805"], ["updated_at", "2020-05-05 18:18:24.375805"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Fredricka Corwin V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SbDAPGeMr6/aYV5GphB9s.Tab3hlDbvLoeERQpa4kjP/v7g5uc0lm"], ["created_at", "2020-05-05 18:18:24.378834"], ["updated_at", "2020-05-05 18:18:24.378834"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:18:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2842) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:18:24 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1221) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (4.5ms) SELECT sqlite_version(*) +  (0.6ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (144.0ms) DELETE FROM "meetings"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (209.2ms) DELETE FROM "user_meets"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (137.1ms) DELETE FROM "user_meetings"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (99.3ms) DELETE FROM "meets"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (81.8ms) DELETE FROM "conversations"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (190.8ms) DELETE FROM "messagems"; +  (1.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (131.8ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.2ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (53.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Romana Schmidt II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VNcch4OrnmEcej4Lel6/XOO44t7MPC8.jRq/H67b0Qyex89Mb2B/q"], ["created_at", "2020-05-05 18:19:22.510532"], ["updated_at", "2020-05-05 18:19:22.510532"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequuntur"], ["description", "Ex occaecati accusamus qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:22.659974"], ["updated_at", "2020-05-05 18:19:22.659974"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur doloremque natus magnam?"], ["description", "Quisquam sint quod ea."], ["date", "2020-05-06 18:19:22.683883"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.710348"], ["updated_at", "2020-05-05 18:19:22.710348"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum non similique voluptatem?"], ["description", "Qui qui ipsa beatae."], ["date", "2020-05-06 18:19:22.711931"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.712783"], ["updated_at", "2020-05-05 18:19:22.712783"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et maiores voluptatem et?"], ["description", "Deserunt placeat enim vitae."], ["date", "2020-05-06 18:19:22.715827"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.717630"], ["updated_at", "2020-05-05 18:19:22.717630"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum minus illum voluptas?"], ["description", "Inventore delectus sit expedita."], ["date", "2020-05-06 18:19:22.719359"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.720330"], ["updated_at", "2020-05-05 18:19:22.720330"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et delectus aspernatur laudantium?"], ["description", "Ut distinctio a quas."], ["date", "2020-05-06 18:19:22.721830"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.722699"], ["updated_at", "2020-05-05 18:19:22.722699"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id porro voluptatibus qui?"], ["description", "Repellat quis similique libero."], ["date", "2020-05-06 18:19:22.723957"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.724828"], ["updated_at", "2020-05-05 18:19:22.724828"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea recusandae quidem atque?"], ["description", "Vitae molestias sequi asperiores."], ["date", "2020-05-06 18:19:22.726070"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.726893"], ["updated_at", "2020-05-05 18:19:22.726893"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae maxime eveniet est?"], ["description", "Omnis vero est et."], ["date", "2020-05-06 18:19:22.728123"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.728899"], ["updated_at", "2020-05-05 18:19:22.728899"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur dolores fugit quisquam?"], ["description", "Similique magnam molestiae dolorem."], ["date", "2020-05-06 18:19:22.731126"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.732179"], ["updated_at", "2020-05-05 18:19:22.732179"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio ut consectetur eius?"], ["description", "Quia voluptas architecto non."], ["date", "2020-05-06 18:19:22.734624"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.736714"], ["updated_at", "2020-05-05 18:19:22.736714"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas labore hic voluptatum?"], ["description", "Quidem earum voluptates saepe."], ["date", "2020-05-06 18:19:22.738578"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.739511"], ["updated_at", "2020-05-05 18:19:22.739511"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae cum sit nobis?"], ["description", "Eligendi reprehenderit dolorem sunt."], ["date", "2020-05-06 18:19:22.740764"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.741545"], ["updated_at", "2020-05-05 18:19:22.741545"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis magni est facere?"], ["description", "Cumque est iure totam."], ["date", "2020-05-06 18:19:22.742866"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.743653"], ["updated_at", "2020-05-05 18:19:22.743653"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Possimus quisquam quia ipsam?"], ["description", "Neque eos odit fugit."], ["date", "2020-05-06 18:19:22.745203"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.747535"], ["updated_at", "2020-05-05 18:19:22.747535"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati culpa sunt nostrum?"], ["description", "Et aut voluptate quae."], ["date", "2020-05-06 18:19:22.749313"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.750282"], ["updated_at", "2020-05-05 18:19:22.750282"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui numquam aperiam sed?"], ["description", "Dolorem maxime sunt eum."], ["date", "2020-05-06 18:19:22.751815"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.752646"], ["updated_at", "2020-05-05 18:19:22.752646"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam qui et voluptates?"], ["description", "Ullam reprehenderit voluptatem quam."], ["date", "2020-05-06 18:19:22.754445"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.756248"], ["updated_at", "2020-05-05 18:19:22.756248"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia excepturi quo voluptatibus?"], ["description", "Blanditiis et omnis quaerat."], ["date", "2020-05-06 18:19:22.758022"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.758971"], ["updated_at", "2020-05-05 18:19:22.758971"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et eligendi reprehenderit sed?"], ["description", "Quam minus tempora et."], ["date", "2020-05-06 18:19:22.760242"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.761063"], ["updated_at", "2020-05-05 18:19:22.761063"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora labore qui quae?"], ["description", "Perspiciatis eius accusamus ea."], ["date", "2020-05-06 18:19:22.762322"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.763573"], ["updated_at", "2020-05-05 18:19:22.763573"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:19:22 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (10.23ms) +Completed 200 OK in 43ms (Views: 19.0ms | ActiveRecord: 0.9ms | Allocations: 8639) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (10.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Keneth Funk"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9cLkj2aL5XhlKTKApmq84eVuRAIDKLd6F1eBXF59SoI1oKBSTKw5G"], ["created_at", "2020-05-05 18:19:22.875258"], ["updated_at", "2020-05-05 18:19:22.875258"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cupiditate"], ["description", "Possimus rerum illum quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:22.881639"], ["updated_at", "2020-05-05 18:19:22.881639"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem aut possimus illo?"], ["description", "Ut quis nulla eos."], ["date", "2020-05-06 18:19:22.883461"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.884569"], ["updated_at", "2020-05-05 18:19:22.884569"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis sapiente ut et?"], ["description", "Eum similique neque tenetur."], ["date", "2020-05-06 18:19:22.886335"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.887353"], ["updated_at", "2020-05-05 18:19:22.887353"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores eos nostrum exercitationem?"], ["description", "Debitis pariatur voluptatem molestiae."], ["date", "2020-05-06 18:19:22.888786"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.889644"], ["updated_at", "2020-05-05 18:19:22.889644"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est accusantium velit dolor?"], ["description", "Consequatur ullam et temporibus."], ["date", "2020-05-06 18:19:22.890937"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.892164"], ["updated_at", "2020-05-05 18:19:22.892164"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum accusamus in incidunt?"], ["description", "Rerum incidunt et doloribus."], ["date", "2020-05-06 18:19:22.893849"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.895873"], ["updated_at", "2020-05-05 18:19:22.895873"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum dolorem laboriosam dolor?"], ["description", "Sunt aut aut enim."], ["date", "2020-05-06 18:19:22.900508"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.902667"], ["updated_at", "2020-05-05 18:19:22.902667"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et dolore harum veniam?"], ["description", "Qui expedita voluptatibus ut."], ["date", "2020-05-06 18:19:22.904313"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.905299"], ["updated_at", "2020-05-05 18:19:22.905299"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit aut sed incidunt?"], ["description", "Reiciendis perferendis impedit voluptas."], ["date", "2020-05-06 18:19:22.906613"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.907455"], ["updated_at", "2020-05-05 18:19:22.907455"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid officiis dolore id?"], ["description", "Accusantium fuga aut rerum."], ["date", "2020-05-06 18:19:22.908800"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.909630"], ["updated_at", "2020-05-05 18:19:22.909630"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati dolore quo perspiciatis?"], ["description", "At nihil assumenda sed."], ["date", "2020-05-06 18:19:22.911840"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.913634"], ["updated_at", "2020-05-05 18:19:22.913634"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed tempora qui in?"], ["description", "Quo quod voluptates reiciendis."], ["date", "2020-05-06 18:19:22.915283"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.916921"], ["updated_at", "2020-05-05 18:19:22.916921"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et atque et neque?"], ["description", "Fuga consectetur reprehenderit tenetur."], ["date", "2020-05-06 18:19:22.918929"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.919941"], ["updated_at", "2020-05-05 18:19:22.919941"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum ea temporibus ipsam?"], ["description", "Eligendi ipsam qui aperiam."], ["date", "2020-05-06 18:19:22.921295"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.922072"], ["updated_at", "2020-05-05 18:19:22.922072"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reiciendis velit quis incidunt?"], ["description", "At beatae molestias illo."], ["date", "2020-05-06 18:19:22.923445"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.924300"], ["updated_at", "2020-05-05 18:19:22.924300"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias magnam autem nobis?"], ["description", "Et dolor voluptas eveniet."], ["date", "2020-05-06 18:19:22.925724"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.926688"], ["updated_at", "2020-05-05 18:19:22.926688"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At impedit aut blanditiis?"], ["description", "Rerum ut quo numquam."], ["date", "2020-05-06 18:19:22.928664"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.930880"], ["updated_at", "2020-05-05 18:19:22.930880"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non facilis dolore at?"], ["description", "Voluptatem sit qui eum."], ["date", "2020-05-06 18:19:22.932699"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.933881"], ["updated_at", "2020-05-05 18:19:22.933881"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores natus labore consequatur?"], ["description", "Natus accusamus harum nobis."], ["date", "2020-05-06 18:19:22.935424"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.936773"], ["updated_at", "2020-05-05 18:19:22.936773"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas nihil magnam modi?"], ["description", "Et enim dolores possimus."], ["date", "2020-05-06 18:19:22.939283"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.940375"], ["updated_at", "2020-05-05 18:19:22.940375"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae libero ad eius?"], ["description", "Similique soluta et quae."], ["date", "2020-05-06 18:19:22.941813"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.942610"], ["updated_at", "2020-05-05 18:19:22.942610"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:19:22 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.3ms) +Completed 200 OK in 13ms (Views: 10.5ms | ActiveRecord: 0.4ms | Allocations: 5516) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Burma Dibbert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$s4A33M9NPPsuTbUjNuAv4.MK/1SAthjihDurGevGt6SS.QJ3FSF4O"], ["created_at", "2020-05-05 18:19:22.972851"], ["updated_at", "2020-05-05 18:19:22.972851"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Dolorem adipisci unde sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:22.976143"], ["updated_at", "2020-05-05 18:19:22.976143"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Adipisci saepe non voluptatibus?"], ["description", "Perferendis ipsa repudiandae ipsum."], ["date", "2020-05-06 18:19:22.980076"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.981754"], ["updated_at", "2020-05-05 18:19:22.981754"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est laboriosam non ratione?"], ["description", "Exercitationem qui sapiente et."], ["date", "2020-05-06 18:19:22.985201"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.986701"], ["updated_at", "2020-05-05 18:19:22.986701"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti aut nam quia?"], ["description", "Voluptate maiores magni eum."], ["date", "2020-05-06 18:19:22.988107"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.988914"], ["updated_at", "2020-05-05 18:19:22.988914"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi debitis reiciendis quos?"], ["description", "Nihil beatae recusandae tempore."], ["date", "2020-05-06 18:19:22.990130"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.990874"], ["updated_at", "2020-05-05 18:19:22.990874"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore quia voluptatem et?"], ["description", "Illum cumque velit necessitatibus."], ["date", "2020-05-06 18:19:22.992025"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.992796"], ["updated_at", "2020-05-05 18:19:22.992796"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequuntur facilis rem pariatur?"], ["description", "Totam maiores ut labore."], ["date", "2020-05-06 18:19:22.994089"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:22.994997"], ["updated_at", "2020-05-05 18:19:22.994997"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et corporis sed hic?"], ["description", "Nostrum odio maiores cupiditate."], ["date", "2020-05-06 18:19:22.998358"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.000652"], ["updated_at", "2020-05-05 18:19:23.000652"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et dolores ipsa natus?"], ["description", "Voluptas et non et."], ["date", "2020-05-06 18:19:23.002425"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.004481"], ["updated_at", "2020-05-05 18:19:23.004481"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil non deserunt aut?"], ["description", "Eum possimus non et."], ["date", "2020-05-06 18:19:23.006821"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.007924"], ["updated_at", "2020-05-05 18:19:23.007924"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores voluptatibus quis repellendus?"], ["description", "Hic molestias et sed."], ["date", "2020-05-06 18:19:23.009911"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.010772"], ["updated_at", "2020-05-05 18:19:23.010772"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo adipisci aliquid voluptatum?"], ["description", "Quo qui maiores non."], ["date", "2020-05-06 18:19:23.012133"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.013023"], ["updated_at", "2020-05-05 18:19:23.013023"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea ad omnis provident?"], ["description", "Est dignissimos qui consequatur."], ["date", "2020-05-06 18:19:23.015197"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.016223"], ["updated_at", "2020-05-05 18:19:23.016223"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit iure impedit quo?"], ["description", "Occaecati impedit at sit."], ["date", "2020-05-06 18:19:23.018539"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.020121"], ["updated_at", "2020-05-05 18:19:23.020121"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo delectus eum sit?"], ["description", "Dolores explicabo provident aut."], ["date", "2020-05-06 18:19:23.022007"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.022994"], ["updated_at", "2020-05-05 18:19:23.022994"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi impedit vero eveniet?"], ["description", "Quos quas hic id."], ["date", "2020-05-06 18:19:23.024576"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.025602"], ["updated_at", "2020-05-05 18:19:23.025602"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor ut voluptates voluptatem?"], ["description", "Facilis quo debitis fugit."], ["date", "2020-05-06 18:19:23.027260"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.028384"], ["updated_at", "2020-05-05 18:19:23.028384"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis hic reprehenderit non?"], ["description", "Quasi quo commodi odit."], ["date", "2020-05-06 18:19:23.030271"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.031223"], ["updated_at", "2020-05-05 18:19:23.031223"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Adipisci reiciendis at rerum?"], ["description", "Rerum error nostrum rem."], ["date", "2020-05-06 18:19:23.032584"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.033411"], ["updated_at", "2020-05-05 18:19:23.033411"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt et necessitatibus ducimus?"], ["description", "Aut autem et sint."], ["date", "2020-05-06 18:19:23.034822"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.035672"], ["updated_at", "2020-05-05 18:19:23.035672"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit similique recusandae incidunt?"], ["description", "Mollitia porro eveniet suscipit."], ["date", "2020-05-06 18:19:23.037977"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.039843"], ["updated_at", "2020-05-05 18:19:23.039843"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:19:23 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms) +Completed 404 Not Found in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms | Allocations: 865) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (41.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Ashley Dickens"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pAQ2mfpCelPv7LCCXgACEOyBN42QV6ICvP.GIESG8zxC33cVGKycq"], ["created_at", "2020-05-05 18:19:23.094897"], ["updated_at", "2020-05-05 18:19:23.094897"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Non possimus omnis quaerat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.100027"], ["updated_at", "2020-05-05 18:19:23.100027"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequuntur ut minus eum?"], ["description", "Dolores maxime odit natus."], ["date", "2020-05-06 18:19:23.102950"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.104924"], ["updated_at", "2020-05-05 18:19:23.104924"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut enim nisi sit?"], ["description", "Autem animi sint rerum."], ["date", "2020-05-06 18:19:23.107097"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.108045"], ["updated_at", "2020-05-05 18:19:23.108045"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea consectetur consequatur omnis?"], ["description", "Omnis adipisci animi soluta."], ["date", "2020-05-06 18:19:23.109318"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.110067"], ["updated_at", "2020-05-05 18:19:23.110067"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo rerum vero sapiente?"], ["description", "Tenetur officia quia rerum."], ["date", "2020-05-06 18:19:23.111240"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.111985"], ["updated_at", "2020-05-05 18:19:23.111985"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias quia labore unde?"], ["description", "Nisi iure distinctio minus."], ["date", "2020-05-06 18:19:23.113547"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.115181"], ["updated_at", "2020-05-05 18:19:23.115181"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem ut reprehenderit nobis?"], ["description", "Harum sed nemo repellat."], ["date", "2020-05-06 18:19:23.116978"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.118957"], ["updated_at", "2020-05-05 18:19:23.118957"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel et sequi dolorem?"], ["description", "Molestiae aut eos error."], ["date", "2020-05-06 18:19:23.121769"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.123781"], ["updated_at", "2020-05-05 18:19:23.123781"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum rerum saepe tempore?"], ["description", "Pariatur suscipit repellendus ab."], ["date", "2020-05-06 18:19:23.125977"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.127012"], ["updated_at", "2020-05-05 18:19:23.127012"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et aut sed molestiae?"], ["description", "Aut occaecati velit vitae."], ["date", "2020-05-06 18:19:23.128380"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.129566"], ["updated_at", "2020-05-05 18:19:23.129566"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur illum animi ea?"], ["description", "Laudantium possimus rerum explicabo."], ["date", "2020-05-06 18:19:23.132440"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.133496"], ["updated_at", "2020-05-05 18:19:23.133496"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim eius laboriosam omnis?"], ["description", "Fugit minus non consequuntur."], ["date", "2020-05-06 18:19:23.135108"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.136186"], ["updated_at", "2020-05-05 18:19:23.136186"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam neque et aut?"], ["description", "Accusamus ut labore nostrum."], ["date", "2020-05-06 18:19:23.138589"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.140291"], ["updated_at", "2020-05-05 18:19:23.140291"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam voluptatem minus sit?"], ["description", "Sed facilis rerum sint."], ["date", "2020-05-06 18:19:23.143501"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.145257"], ["updated_at", "2020-05-05 18:19:23.145257"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum et architecto possimus?"], ["description", "Sed non hic dolorum."], ["date", "2020-05-06 18:19:23.148746"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.150508"], ["updated_at", "2020-05-05 18:19:23.150508"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque nihil eveniet blanditiis?"], ["description", "Et consequatur numquam dolores."], ["date", "2020-05-06 18:19:23.152271"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.153295"], ["updated_at", "2020-05-05 18:19:23.153295"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem ut in a?"], ["description", "Nulla voluptas omnis perferendis."], ["date", "2020-05-06 18:19:23.154992"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.156069"], ["updated_at", "2020-05-05 18:19:23.156069"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet in numquam eligendi?"], ["description", "Aut aut expedita veritatis."], ["date", "2020-05-06 18:19:23.158626"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.160184"], ["updated_at", "2020-05-05 18:19:23.160184"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio est maxime totam?"], ["description", "Ea aut voluptas eius."], ["date", "2020-05-06 18:19:23.162098"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.163692"], ["updated_at", "2020-05-05 18:19:23.163692"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae dolor perferendis iusto?"], ["description", "Voluptatem autem eligendi sint."], ["date", "2020-05-06 18:19:23.165568"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.166567"], ["updated_at", "2020-05-05 18:19:23.166567"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum blanditiis nobis id?"], ["description", "Illum iste minima in."], ["date", "2020-05-06 18:19:23.168335"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.169427"], ["updated_at", "2020-05-05 18:19:23.169427"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:19:23 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 509) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (10.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Geraldine Mante"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mOohx/ikiaZoEvWmShKmaemkKZlCE7kWz9ybFK/YklicRBJgPvr5S"], ["created_at", "2020-05-05 18:19:23.203683"], ["updated_at", "2020-05-05 18:19:23.203683"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Minus consequatur nulla voluptates."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.207193"], ["updated_at", "2020-05-05 18:19:23.207193"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas incidunt et nam?"], ["description", "Voluptatibus aperiam numquam eos."], ["date", "2020-05-06 18:19:23.208904"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.209894"], ["updated_at", "2020-05-05 18:19:23.209894"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum autem delectus corrupti?"], ["description", "Nemo repellendus mollitia qui."], ["date", "2020-05-06 18:19:23.211304"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.212445"], ["updated_at", "2020-05-05 18:19:23.212445"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea quidem qui quas?"], ["description", "Ab qui commodi esse."], ["date", "2020-05-06 18:19:23.214404"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.215391"], ["updated_at", "2020-05-05 18:19:23.215391"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis aliquam quidem at?"], ["description", "Nesciunt voluptatum dolores ex."], ["date", "2020-05-06 18:19:23.216811"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.218741"], ["updated_at", "2020-05-05 18:19:23.218741"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore voluptas aut error?"], ["description", "Et consectetur sit sed."], ["date", "2020-05-06 18:19:23.221483"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.223951"], ["updated_at", "2020-05-05 18:19:23.223951"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio autem dolor beatae?"], ["description", "Numquam ut ut architecto."], ["date", "2020-05-06 18:19:23.226218"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.227319"], ["updated_at", "2020-05-05 18:19:23.227319"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad quidem aut architecto?"], ["description", "Dolore enim dolores tenetur."], ["date", "2020-05-06 18:19:23.228852"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.230484"], ["updated_at", "2020-05-05 18:19:23.230484"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut et temporibus dolor?"], ["description", "Eum officia aut qui."], ["date", "2020-05-06 18:19:23.231961"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.232815"], ["updated_at", "2020-05-05 18:19:23.232815"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt unde recusandae et?"], ["description", "Suscipit ea reprehenderit perspiciatis."], ["date", "2020-05-06 18:19:23.234024"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.234863"], ["updated_at", "2020-05-05 18:19:23.234863"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum voluptatum quia error?"], ["description", "Eum fugit velit rerum."], ["date", "2020-05-06 18:19:23.236837"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.239126"], ["updated_at", "2020-05-05 18:19:23.239126"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe consequatur nihil quae?"], ["description", "Suscipit voluptatibus earum porro."], ["date", "2020-05-06 18:19:23.243437"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.246721"], ["updated_at", "2020-05-05 18:19:23.246721"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non ad et eligendi?"], ["description", "Ratione corporis quae sed."], ["date", "2020-05-06 18:19:23.248645"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.249732"], ["updated_at", "2020-05-05 18:19:23.249732"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti eos occaecati nobis?"], ["description", "Natus nemo perferendis dolores."], ["date", "2020-05-06 18:19:23.251318"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.252584"], ["updated_at", "2020-05-05 18:19:23.252584"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores nostrum at corrupti?"], ["description", "Alias quia incidunt nobis."], ["date", "2020-05-06 18:19:23.254302"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.255648"], ["updated_at", "2020-05-05 18:19:23.255648"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi est voluptatum maxime?"], ["description", "Voluptas sunt dignissimos recusandae."], ["date", "2020-05-06 18:19:23.257584"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.260217"], ["updated_at", "2020-05-05 18:19:23.260217"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam laborum distinctio dolor?"], ["description", "Suscipit at commodi dolorum."], ["date", "2020-05-06 18:19:23.266336"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.268195"], ["updated_at", "2020-05-05 18:19:23.268195"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla at doloremque asperiores?"], ["description", "Et nihil ducimus deleniti."], ["date", "2020-05-06 18:19:23.270470"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.271618"], ["updated_at", "2020-05-05 18:19:23.271618"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis rerum deleniti voluptas?"], ["description", "Id est dicta omnis."], ["date", "2020-05-06 18:19:23.273253"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.274063"], ["updated_at", "2020-05-05 18:19:23.274063"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi sint inventore asperiores?"], ["description", "Fugiat dolor inventore neque."], ["date", "2020-05-06 18:19:23.275487"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.276338"], ["updated_at", "2020-05-05 18:19:23.276338"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum voluptatem suscipit hic?"], ["description", "Atque adipisci in qui."], ["date", "2020-05-06 18:19:23.277665"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.281786"], ["updated_at", "2020-05-05 18:19:23.281786"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:19:23 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (1.07ms) +Completed 200 OK in 4ms (Views: 1.5ms | ActiveRecord: 0.3ms | Allocations: 1085) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Antone O'Connell Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8Pq1Oqgt0/QZjEETT5.YYOmGExg19HfHmivi2YhznF/4AD.RPBmb6"], ["created_at", "2020-05-05 18:19:23.309054"], ["updated_at", "2020-05-05 18:19:23.309054"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cumque"], ["description", "Est vel est quidem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.312583"], ["updated_at", "2020-05-05 18:19:23.312583"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis consequatur fuga quidem?"], ["description", "Officiis unde quod temporibus."], ["date", "2020-05-06 18:19:23.314859"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.316044"], ["updated_at", "2020-05-05 18:19:23.316044"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut commodi voluptatibus error?"], ["description", "Tempore similique eum laborum."], ["date", "2020-05-06 18:19:23.317699"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.320124"], ["updated_at", "2020-05-05 18:19:23.320124"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi eligendi et in?"], ["description", "Quisquam quis qui aspernatur."], ["date", "2020-05-06 18:19:23.324003"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.327077"], ["updated_at", "2020-05-05 18:19:23.327077"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut omnis laboriosam suscipit?"], ["description", "Ipsa perspiciatis dolor sed."], ["date", "2020-05-06 18:19:23.329084"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.330557"], ["updated_at", "2020-05-05 18:19:23.330557"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia et repellendus quisquam?"], ["description", "Provident ut earum culpa."], ["date", "2020-05-06 18:19:23.332033"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.332854"], ["updated_at", "2020-05-05 18:19:23.332854"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis ut voluptas eum?"], ["description", "Exercitationem sint perspiciatis in."], ["date", "2020-05-06 18:19:23.334056"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.334879"], ["updated_at", "2020-05-05 18:19:23.334879"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas qui velit illo?"], ["description", "Est aut at itaque."], ["date", "2020-05-06 18:19:23.336119"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.336845"], ["updated_at", "2020-05-05 18:19:23.336845"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque et aliquid harum?"], ["description", "Et assumenda ullam nemo."], ["date", "2020-05-06 18:19:23.338925"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.341344"], ["updated_at", "2020-05-05 18:19:23.341344"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui praesentium veniam aut?"], ["description", "Minima eum consequatur ex."], ["date", "2020-05-06 18:19:23.345711"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.350269"], ["updated_at", "2020-05-05 18:19:23.350269"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores unde et repellendus?"], ["description", "Incidunt omnis expedita consequuntur."], ["date", "2020-05-06 18:19:23.352719"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.353869"], ["updated_at", "2020-05-05 18:19:23.353869"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi voluptatum voluptatem ut?"], ["description", "Similique nihil eum ducimus."], ["date", "2020-05-06 18:19:23.355490"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.356337"], ["updated_at", "2020-05-05 18:19:23.356337"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt et praesentium nam?"], ["description", "Aut iure nemo ratione."], ["date", "2020-05-06 18:19:23.357596"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.358663"], ["updated_at", "2020-05-05 18:19:23.358663"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut cupiditate voluptas quasi?"], ["description", "Nihil necessitatibus aperiam dolores."], ["date", "2020-05-06 18:19:23.362238"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.364186"], ["updated_at", "2020-05-05 18:19:23.364186"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione quaerat et aut?"], ["description", "Omnis consequuntur dolore temporibus."], ["date", "2020-05-06 18:19:23.366871"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.368255"], ["updated_at", "2020-05-05 18:19:23.368255"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam et ut voluptate?"], ["description", "Rerum adipisci accusamus qui."], ["date", "2020-05-06 18:19:23.369826"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.370657"], ["updated_at", "2020-05-05 18:19:23.370657"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias dolore modi doloribus?"], ["description", "Voluptatem corporis accusamus distinctio."], ["date", "2020-05-06 18:19:23.372012"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.372906"], ["updated_at", "2020-05-05 18:19:23.372906"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat provident necessitatibus rerum?"], ["description", "Aperiam at dolores et."], ["date", "2020-05-06 18:19:23.374185"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.375021"], ["updated_at", "2020-05-05 18:19:23.375021"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et et nam laboriosam?"], ["description", "Modi consectetur voluptatem aut."], ["date", "2020-05-06 18:19:23.376282"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.377073"], ["updated_at", "2020-05-05 18:19:23.377073"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias est sed et?"], ["description", "Aut aperiam praesentium reiciendis."], ["date", "2020-05-06 18:19:23.379172"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.382705"], ["updated_at", "2020-05-05 18:19:23.382705"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum sed quia quo?"], ["description", "Minima enim repudiandae eveniet."], ["date", "2020-05-06 18:19:23.384752"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.385677"], ["updated_at", "2020-05-05 18:19:23.385677"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:19:23 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.69ms) +Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.2ms | Allocations: 1058) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (11.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Audry Russel Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OSn0taPbhBgpq/x2X7as4OVR4BwU3TUhqrsF6kJoQHuWeYcW5/A4q"], ["created_at", "2020-05-05 18:19:23.406907"], ["updated_at", "2020-05-05 18:19:23.406907"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquam"], ["description", "Voluptatem eos quia omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.409941"], ["updated_at", "2020-05-05 18:19:23.409941"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque delectus sunt accusantium?"], ["description", "Nulla consequuntur inventore vel."], ["date", "2020-05-06 18:19:23.411511"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.412558"], ["updated_at", "2020-05-05 18:19:23.412558"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti autem quia aut?"], ["description", "Veniam minima unde maiores."], ["date", "2020-05-06 18:19:23.414914"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.415902"], ["updated_at", "2020-05-05 18:19:23.415902"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia quia alias incidunt?"], ["description", "Libero sint quasi illo."], ["date", "2020-05-06 18:19:23.417202"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.417952"], ["updated_at", "2020-05-05 18:19:23.417952"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab vel deleniti voluptate?"], ["description", "Maxime quis dolorum ut."], ["date", "2020-05-06 18:19:23.420317"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.422587"], ["updated_at", "2020-05-05 18:19:23.422587"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed explicabo et perspiciatis?"], ["description", "Dolorum est itaque alias."], ["date", "2020-05-06 18:19:23.425411"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.426598"], ["updated_at", "2020-05-05 18:19:23.426598"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi quos corrupti pariatur?"], ["description", "Laboriosam magnam pariatur numquam."], ["date", "2020-05-06 18:19:23.428050"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.429499"], ["updated_at", "2020-05-05 18:19:23.429499"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt enim omnis ipsum?"], ["description", "Voluptas quos dolores sed."], ["date", "2020-05-06 18:19:23.431011"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.431950"], ["updated_at", "2020-05-05 18:19:23.431950"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas aut soluta aut?"], ["description", "Et cum eum et."], ["date", "2020-05-06 18:19:23.433315"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.434160"], ["updated_at", "2020-05-05 18:19:23.434160"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ducimus dolor sed incidunt?"], ["description", "Quo atque voluptatem mollitia."], ["date", "2020-05-06 18:19:23.435485"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.436306"], ["updated_at", "2020-05-05 18:19:23.436306"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti debitis optio atque?"], ["description", "Iste similique unde omnis."], ["date", "2020-05-06 18:19:23.438198"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.439727"], ["updated_at", "2020-05-05 18:19:23.439727"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor et reiciendis ut?"], ["description", "Quae quidem nam aperiam."], ["date", "2020-05-06 18:19:23.442141"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.443582"], ["updated_at", "2020-05-05 18:19:23.443582"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro tenetur sunt debitis?"], ["description", "Molestias dolorem pariatur similique."], ["date", "2020-05-06 18:19:23.445355"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.446934"], ["updated_at", "2020-05-05 18:19:23.446934"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut illum tempore magni?"], ["description", "Consequuntur et dicta ad."], ["date", "2020-05-06 18:19:23.448417"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.449207"], ["updated_at", "2020-05-05 18:19:23.449207"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta iusto rerum voluptas?"], ["description", "Ad assumenda eius architecto."], ["date", "2020-05-06 18:19:23.450493"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.451385"], ["updated_at", "2020-05-05 18:19:23.451385"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem assumenda voluptas laudantium?"], ["description", "Qui aspernatur velit cum."], ["date", "2020-05-06 18:19:23.452669"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.453405"], ["updated_at", "2020-05-05 18:19:23.453405"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt rerum earum minima?"], ["description", "Unde quas at nihil."], ["date", "2020-05-06 18:19:23.454906"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.455783"], ["updated_at", "2020-05-05 18:19:23.455783"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor possimus repellendus aperiam?"], ["description", "Aliquam est eos culpa."], ["date", "2020-05-06 18:19:23.457110"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.457901"], ["updated_at", "2020-05-05 18:19:23.457901"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat natus quasi quis?"], ["description", "Dolorem et eligendi alias."], ["date", "2020-05-06 18:19:23.460057"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.461319"], ["updated_at", "2020-05-05 18:19:23.461319"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum aliquid aut et?"], ["description", "In qui saepe minima."], ["date", "2020-05-06 18:19:23.464231"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.465256"], ["updated_at", "2020-05-05 18:19:23.465256"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus iusto doloremque voluptas?"], ["description", "Beatae laborum maxime soluta."], ["date", "2020-05-06 18:19:23.466745"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.467554"], ["updated_at", "2020-05-05 18:19:23.467554"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:19:23 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 884) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Tyron Kris"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YXe/jf2taI.oIFFF9vqZsOzzrVG1xhhuJdOLjNlYyK4jgpERE6j2O"], ["created_at", "2020-05-05 18:19:23.485276"], ["updated_at", "2020-05-05 18:19:23.485276"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nesciunt"], ["description", "Nemo est dolor esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.488533"], ["updated_at", "2020-05-05 18:19:23.488533"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis sed saepe qui?"], ["description", "Eum nemo beatae cumque."], ["date", "2020-05-06 18:19:23.490254"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.491312"], ["updated_at", "2020-05-05 18:19:23.491312"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero qui et corporis?"], ["description", "Fugit repellat labore voluptas."], ["date", "2020-05-06 18:19:23.492731"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.493582"], ["updated_at", "2020-05-05 18:19:23.493582"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis architecto voluptatibus perspiciatis?"], ["description", "Et optio consectetur omnis."], ["date", "2020-05-06 18:19:23.494905"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.496318"], ["updated_at", "2020-05-05 18:19:23.496318"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem sint neque ut?"], ["description", "Veniam consectetur id magni."], ["date", "2020-05-06 18:19:23.497805"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.498741"], ["updated_at", "2020-05-05 18:19:23.498741"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt quae totam voluptatem?"], ["description", "Aut nesciunt et architecto."], ["date", "2020-05-06 18:19:23.502152"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.503501"], ["updated_at", "2020-05-05 18:19:23.503501"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus at voluptatem eos?"], ["description", "Optio reiciendis nesciunt doloremque."], ["date", "2020-05-06 18:19:23.505766"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.507106"], ["updated_at", "2020-05-05 18:19:23.507106"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est quae nisi qui?"], ["description", "Adipisci non aut consectetur."], ["date", "2020-05-06 18:19:23.508558"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.509429"], ["updated_at", "2020-05-05 18:19:23.509429"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque sapiente sed repellendus?"], ["description", "Placeat ipsum aspernatur eum."], ["date", "2020-05-06 18:19:23.510678"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.511433"], ["updated_at", "2020-05-05 18:19:23.511433"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem deserunt reiciendis reprehenderit?"], ["description", "Omnis expedita vero eum."], ["date", "2020-05-06 18:19:23.513142"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.514538"], ["updated_at", "2020-05-05 18:19:23.514538"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo optio perferendis quo?"], ["description", "Doloribus molestias nesciunt voluptatem."], ["date", "2020-05-06 18:19:23.516648"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.517576"], ["updated_at", "2020-05-05 18:19:23.517576"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum quo ipsa aut?"], ["description", "Adipisci consequuntur distinctio eum."], ["date", "2020-05-06 18:19:23.519166"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.521254"], ["updated_at", "2020-05-05 18:19:23.521254"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia omnis id maxime?"], ["description", "Esse aut tenetur at."], ["date", "2020-05-06 18:19:23.523348"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.524381"], ["updated_at", "2020-05-05 18:19:23.524381"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia amet eum veniam?"], ["description", "Velit incidunt et quia."], ["date", "2020-05-06 18:19:23.525810"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.526616"], ["updated_at", "2020-05-05 18:19:23.526616"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis dolorem sint aut?"], ["description", "Odio illum provident neque."], ["date", "2020-05-06 18:19:23.528612"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.529607"], ["updated_at", "2020-05-05 18:19:23.529607"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil ut animi recusandae?"], ["description", "Ut omnis quae soluta."], ["date", "2020-05-06 18:19:23.531108"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.531947"], ["updated_at", "2020-05-05 18:19:23.531947"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum labore illo quis?"], ["description", "Omnis et excepturi nihil."], ["date", "2020-05-06 18:19:23.533331"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.534295"], ["updated_at", "2020-05-05 18:19:23.534295"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores modi perferendis et?"], ["description", "Eos qui asperiores neque."], ["date", "2020-05-06 18:19:23.535626"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.536411"], ["updated_at", "2020-05-05 18:19:23.536411"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id velit nesciunt in?"], ["description", "Velit illo sed architecto."], ["date", "2020-05-06 18:19:23.537652"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.538437"], ["updated_at", "2020-05-05 18:19:23.538437"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est enim officiis labore?"], ["description", "Earum ipsam nesciunt praesentium."], ["date", "2020-05-06 18:19:23.540839"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.542314"], ["updated_at", "2020-05-05 18:19:23.542314"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui sapiente iste iure?"], ["description", "Eos quod harum est."], ["date", "2020-05-06 18:19:23.544068"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:19:23.545001"], ["updated_at", "2020-05-05 18:19:23.545001"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:19:23 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 867) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Dolor excepturi sint illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.598935"], ["updated_at", "2020-05-05 18:19:23.598935"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Quae delectus et dignissimos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.604482"], ["updated_at", "2020-05-05 18:19:23.604482"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illo"], ["description", "Debitis dolores sunt adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.608912"], ["updated_at", "2020-05-05 18:19:23.608912"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Numquam voluptates deserunt in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.610785"], ["updated_at", "2020-05-05 18:19:23.610785"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Neque sed sed id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.612434"], ["updated_at", "2020-05-05 18:19:23.612434"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "similique"], ["description", "Voluptate maiores dolore quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.614714"], ["updated_at", "2020-05-05 18:19:23.614714"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corrupti"], ["description", "Ut rerum voluptas et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.616385"], ["updated_at", "2020-05-05 18:19:23.616385"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Aut non laborum explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.617638"], ["updated_at", "2020-05-05 18:19:23.617638"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellat"], ["description", "Similique incidunt dolorem ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.618972"], ["updated_at", "2020-05-05 18:19:23.618972"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perspiciatis"], ["description", "Totam reprehenderit molestiae ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.621398"], ["updated_at", "2020-05-05 18:19:23.621398"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Benny McClure"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UmzRYTs.k87WLV3K4owgf.Eh8JGAYB3eVHCOdyLGccfiYjL6S6NeS"], ["created_at", "2020-05-05 18:19:23.626715"], ["updated_at", "2020-05-05 18:19:23.626715"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:19:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.18ms) +Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.3ms | Allocations: 3005) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Eius aut odit doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.651736"], ["updated_at", "2020-05-05 18:19:23.651736"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "a"], ["description", "Hic voluptatem enim exercitationem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.654902"], ["updated_at", "2020-05-05 18:19:23.654902"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquid"], ["description", "Deleniti vel recusandae ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.656507"], ["updated_at", "2020-05-05 18:19:23.656507"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Ab distinctio est adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.657903"], ["updated_at", "2020-05-05 18:19:23.657903"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illo"], ["description", "Soluta fuga velit cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.659317"], ["updated_at", "2020-05-05 18:19:23.659317"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.5ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Ut libero consequatur voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.661739"], ["updated_at", "2020-05-05 18:19:23.661739"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "incidunt"], ["description", "Perspiciatis rerum est repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.665865"], ["updated_at", "2020-05-05 18:19:23.665865"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "culpa"], ["description", "Eligendi adipisci aut cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.668662"], ["updated_at", "2020-05-05 18:19:23.668662"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Pariatur accusantium commodi eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.670663"], ["updated_at", "2020-05-05 18:19:23.670663"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Eum provident fugiat laboriosam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.672066"], ["updated_at", "2020-05-05 18:19:23.672066"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Chong Ruecker"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kVfLDJHquMg/b5Ds752.eeoBXmnhnhsgLj81CgWQhvMzpSZskuBaG"], ["created_at", "2020-05-05 18:19:23.674941"], ["updated_at", "2020-05-05 18:19:23.674941"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:19:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.31ms) +Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.2ms | Allocations: 2845) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dignissimos"], ["description", "Dolores voluptas voluptates ullam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.693773"], ["updated_at", "2020-05-05 18:19:23.693773"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorum"], ["description", "Porro animi excepturi fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.697595"], ["updated_at", "2020-05-05 18:19:23.697595"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "beatae"], ["description", "Odio id esse sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.699365"], ["updated_at", "2020-05-05 18:19:23.699365"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquid"], ["description", "Et sed voluptatem expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.701576"], ["updated_at", "2020-05-05 18:19:23.701576"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Sint dolor sunt natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.709782"], ["updated_at", "2020-05-05 18:19:23.709782"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Dolore adipisci qui ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.712494"], ["updated_at", "2020-05-05 18:19:23.712494"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Cum ad vel qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.715839"], ["updated_at", "2020-05-05 18:19:23.715839"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Eum totam neque eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.717511"], ["updated_at", "2020-05-05 18:19:23.717511"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Nihil in magnam laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.719093"], ["updated_at", "2020-05-05 18:19:23.719093"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laboriosam"], ["description", "Eveniet id quos dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.720979"], ["updated_at", "2020-05-05 18:19:23.720979"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Macie Barrows"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2Ke2aF.2FBgSvb095RMLKuClx.vcMPzNvnQLP09ZzbjKcDYW3dcrq"], ["created_at", "2020-05-05 18:19:23.727577"], ["updated_at", "2020-05-05 18:19:23.727577"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:19:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (24.35ms) +Completed 200 OK in 26ms (Views: 25.6ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:19:23 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.81ms) +Completed 200 OK in 5ms (Views: 2.3ms | ActiveRecord: 0.4ms | Allocations: 1242) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Enim quis eum commodi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.776304"], ["updated_at", "2020-05-05 18:19:23.776304"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officia"], ["description", "Earum atque consequatur repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.779996"], ["updated_at", "2020-05-05 18:19:23.779996"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusantium"], ["description", "Error sit quisquam nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.783368"], ["updated_at", "2020-05-05 18:19:23.783368"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "necessitatibus"], ["description", "Consequatur reiciendis laboriosam quidem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.785476"], ["updated_at", "2020-05-05 18:19:23.785476"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugiat"], ["description", "Reprehenderit vel harum autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.786945"], ["updated_at", "2020-05-05 18:19:23.786945"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nam"], ["description", "Amet hic omnis et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.788329"], ["updated_at", "2020-05-05 18:19:23.788329"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Cum magni quibusdam ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.789650"], ["updated_at", "2020-05-05 18:19:23.789650"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sapiente"], ["description", "Est natus aut tenetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.790962"], ["updated_at", "2020-05-05 18:19:23.790962"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rem"], ["description", "In ab quis ipsum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.792282"], ["updated_at", "2020-05-05 18:19:23.792282"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "provident"], ["description", "Eligendi laborum dolorem expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.793614"], ["updated_at", "2020-05-05 18:19:23.793614"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lesley Krajcik I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$v4DE8f4WsZU4ocNOVgCv3.64mLHH9UBrrf3cU8tep3U5URcIaKO4W"], ["created_at", "2020-05-05 18:19:23.796947"], ["updated_at", "2020-05-05 18:19:23.796947"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:19:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.3ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.37ms) +Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.3ms | Allocations: 2841) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:19:23 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.26ms) +Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.2ms | Allocations: 1239) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Corporis perferendis reiciendis voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.823805"], ["updated_at", "2020-05-05 18:19:23.823805"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "A autem laborum et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.828048"], ["updated_at", "2020-05-05 18:19:23.828048"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facilis"], ["description", "Ullam omnis vel a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.832274"], ["updated_at", "2020-05-05 18:19:23.832274"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "pariatur"], ["description", "Corporis consequatur molestiae fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.834475"], ["updated_at", "2020-05-05 18:19:23.834475"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "Ipsa dolores eum sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.836055"], ["updated_at", "2020-05-05 18:19:23.836055"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Adipisci quisquam est quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.837474"], ["updated_at", "2020-05-05 18:19:23.837474"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Id repudiandae laboriosam voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.838858"], ["updated_at", "2020-05-05 18:19:23.838858"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Maxime qui temporibus sapiente."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.840229"], ["updated_at", "2020-05-05 18:19:23.840229"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "totam"], ["description", "Minus ab nesciunt et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.842431"], ["updated_at", "2020-05-05 18:19:23.842431"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.4ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Rerum eius occaecati quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.844873"], ["updated_at", "2020-05-05 18:19:23.844873"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Guadalupe Dare"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Gqb6TWOZNEHVmniilhHHTeoLdov9207DmNdjeTTCme2GeFDgny1Ba"], ["created_at", "2020-05-05 18:19:23.850153"], ["updated_at", "2020-05-05 18:19:23.850153"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:19:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.4ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:19:23 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.12ms) +Completed 404 Not Found in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 512) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Delectus aut voluptatem architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.871956"], ["updated_at", "2020-05-05 18:19:23.871956"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "similique"], ["description", "Magnam voluptatem asperiores voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.874771"], ["updated_at", "2020-05-05 18:19:23.874771"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Laborum ipsa nihil dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.876370"], ["updated_at", "2020-05-05 18:19:23.876370"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Aspernatur accusamus fugit et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.877705"], ["updated_at", "2020-05-05 18:19:23.877705"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "At eos nihil qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.879677"], ["updated_at", "2020-05-05 18:19:23.879677"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Adipisci atque cum voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.881458"], ["updated_at", "2020-05-05 18:19:23.881458"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Iste sequi eius sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.884121"], ["updated_at", "2020-05-05 18:19:23.884121"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Neque dolorem aut et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.886288"], ["updated_at", "2020-05-05 18:19:23.886288"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Fugiat repellat nemo cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.888741"], ["updated_at", "2020-05-05 18:19:23.888741"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Et illum ut voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.890187"], ["updated_at", "2020-05-05 18:19:23.890187"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Joella Skiles"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CklPbfuTYa3GVDiV1EwILO3L1FjCiEYtiRj7/2IdtmGf4hofJ7LOe"], ["created_at", "2020-05-05 18:19:23.892846"], ["updated_at", "2020-05-05 18:19:23.892846"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:19:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.44ms) +Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:19:23 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "praesentium"], ["description", "Sed eos modi alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.915655"], ["updated_at", "2020-05-05 18:19:23.915655"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "esse"], ["description", "Ut est quia consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.918614"], ["updated_at", "2020-05-05 18:19:23.918614"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illum"], ["description", "Quia ipsa veniam autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.920199"], ["updated_at", "2020-05-05 18:19:23.920199"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Voluptate adipisci aut similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.922104"], ["updated_at", "2020-05-05 18:19:23.922104"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Est voluptatem et et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.926218"], ["updated_at", "2020-05-05 18:19:23.926218"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Et ab voluptatem quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.929165"], ["updated_at", "2020-05-05 18:19:23.929165"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Nemo doloremque dolorem et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.930880"], ["updated_at", "2020-05-05 18:19:23.930880"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Molestias occaecati nesciunt quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.932395"], ["updated_at", "2020-05-05 18:19:23.932395"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "explicabo"], ["description", "Corrupti vero id mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.933814"], ["updated_at", "2020-05-05 18:19:23.933814"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Velit quis cupiditate doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:23.935210"], ["updated_at", "2020-05-05 18:19:23.935210"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ezequiel Lockman III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jnuWJM7NGHQmqepT72MnWueCwtqJLbiBqqKzITm7W1ZkQ3r7hlrIG"], ["created_at", "2020-05-05 18:19:23.937835"], ["updated_at", "2020-05-05 18:19:23.937835"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:19:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.13ms) +Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.1ms | Allocations: 2842) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:19:23 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:19:23.981432"], ["updated_at", "2020-05-05 18:19:23.981432"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.47ms) +Completed 201 Created in 23ms (Views: 0.9ms | ActiveRecord: 1.4ms | Allocations: 6231) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Est quae eum illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.000714"], ["updated_at", "2020-05-05 18:19:24.000714"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Et nobis animi recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.005161"], ["updated_at", "2020-05-05 18:19:24.005161"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Porro deleniti illo harum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.007927"], ["updated_at", "2020-05-05 18:19:24.007927"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptates"], ["description", "Numquam nihil eum aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.009822"], ["updated_at", "2020-05-05 18:19:24.009822"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Sit id culpa et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.011102"], ["updated_at", "2020-05-05 18:19:24.011102"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Atque fugit molestiae est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.013007"], ["updated_at", "2020-05-05 18:19:24.013007"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Consequatur aspernatur repudiandae nostrum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.014964"], ["updated_at", "2020-05-05 18:19:24.014964"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rem"], ["description", "Neque numquam facilis veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.016326"], ["updated_at", "2020-05-05 18:19:24.016326"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "In voluptatum ipsam illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.017623"], ["updated_at", "2020-05-05 18:19:24.017623"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "harum"], ["description", "Quisquam aut consequuntur numquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.019020"], ["updated_at", "2020-05-05 18:19:24.019020"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Amalia Blanda"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GnujDctaVgVutZrZAFwMxe7sjJwxnNMH.Pwoa6Kv5yF6mT6IHYJiO"], ["created_at", "2020-05-05 18:19:24.021815"], ["updated_at", "2020-05-05 18:19:24.021815"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:19:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.08ms) +Completed 200 OK in 8ms (Views: 6.4ms | ActiveRecord: 0.5ms | Allocations: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:19:24 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:19:24.039918"], ["updated_at", "2020-05-05 18:19:24.039918"], ["created_by", "1"]] +  (0.3ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.4ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.77ms) +Completed 201 Created in 10ms (Views: 1.5ms | ActiveRecord: 1.1ms | Allocations: 2251) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (17.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quas"], ["description", "Tenetur nulla suscipit ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.068215"], ["updated_at", "2020-05-05 18:19:24.068215"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Ea unde quo repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.071076"], ["updated_at", "2020-05-05 18:19:24.071076"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "unde"], ["description", "Aut quibusdam velit in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.072494"], ["updated_at", "2020-05-05 18:19:24.072494"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "hic"], ["description", "Omnis commodi omnis sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.073836"], ["updated_at", "2020-05-05 18:19:24.073836"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quos"], ["description", "Voluptatem mollitia velit ipsa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.075314"], ["updated_at", "2020-05-05 18:19:24.075314"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quos"], ["description", "Dolor architecto aut officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.076639"], ["updated_at", "2020-05-05 18:19:24.076639"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Possimus quibusdam blanditiis consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.077886"], ["updated_at", "2020-05-05 18:19:24.077886"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugiat"], ["description", "Reiciendis esse odit sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.079416"], ["updated_at", "2020-05-05 18:19:24.079416"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perspiciatis"], ["description", "Omnis dolorem veritatis ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.081474"], ["updated_at", "2020-05-05 18:19:24.081474"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "error"], ["description", "Nihil et pariatur magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.084183"], ["updated_at", "2020-05-05 18:19:24.084183"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dion Rath MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hoWNDpTxbHEkT12t4KIxne5ubZm84lY5GF1FdmeAB4QXPPzUb7FvG"], ["created_at", "2020-05-05 18:19:24.088069"], ["updated_at", "2020-05-05 18:19:24.088069"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:19:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2845) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:19:24 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 422 Unprocessable Entity in 7ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 4090) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (13.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perspiciatis"], ["description", "In et quis rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.122209"], ["updated_at", "2020-05-05 18:19:24.122209"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "porro"], ["description", "Soluta necessitatibus qui ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.126889"], ["updated_at", "2020-05-05 18:19:24.126889"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "suscipit"], ["description", "Nam tenetur corrupti quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.130570"], ["updated_at", "2020-05-05 18:19:24.130570"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Quisquam vitae asperiores blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.132246"], ["updated_at", "2020-05-05 18:19:24.132246"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Omnis alias aut voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.133562"], ["updated_at", "2020-05-05 18:19:24.133562"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempora"], ["description", "Unde expedita cumque dolore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.134890"], ["updated_at", "2020-05-05 18:19:24.134890"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Odit delectus cumque quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.136246"], ["updated_at", "2020-05-05 18:19:24.136246"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perferendis"], ["description", "Numquam omnis perferendis minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.137540"], ["updated_at", "2020-05-05 18:19:24.137540"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dignissimos"], ["description", "Et nisi et enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.138806"], ["updated_at", "2020-05-05 18:19:24.138806"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "inventore"], ["description", "Repellendus ut similique ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.140105"], ["updated_at", "2020-05-05 18:19:24.140105"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Ivey O'Conner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qg8yI6Hk9kWUByNXyVefP.9bzUxIEt.ujJ/KutosjRuZkNsgnJevy"], ["created_at", "2020-05-05 18:19:24.143144"], ["updated_at", "2020-05-05 18:19:24.143144"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:19:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.63ms) +Completed 200 OK in 7ms (Views: 4.9ms | ActiveRecord: 0.3ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:19:24 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3697) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illum"], ["description", "Est placeat nihil et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.173079"], ["updated_at", "2020-05-05 18:19:24.173079"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "optio"], ["description", "Quis molestiae minus aliquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.176115"], ["updated_at", "2020-05-05 18:19:24.176115"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempora"], ["description", "Ipsam blanditiis voluptatem animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.177941"], ["updated_at", "2020-05-05 18:19:24.177941"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Temporibus sit et eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.180915"], ["updated_at", "2020-05-05 18:19:24.180915"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Rerum est qui ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.183292"], ["updated_at", "2020-05-05 18:19:24.183292"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Qui voluptas perspiciatis ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.186206"], ["updated_at", "2020-05-05 18:19:24.186206"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Aperiam non corporis nostrum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.188815"], ["updated_at", "2020-05-05 18:19:24.188815"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eveniet"], ["description", "Dolorem error possimus veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.190599"], ["updated_at", "2020-05-05 18:19:24.190599"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "soluta"], ["description", "Corporis asperiores est qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.191974"], ["updated_at", "2020-05-05 18:19:24.191974"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quae"], ["description", "Accusantium eum nihil quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.193276"], ["updated_at", "2020-05-05 18:19:24.193276"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Robt Schroeder I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$T.nIRLDw8gaTDb/SqMrnTeXHCce9bng.4GvDCpucqXtoxcFvwJA3S"], ["created_at", "2020-05-05 18:19:24.196621"], ["updated_at", "2020-05-05 18:19:24.196621"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:19:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.27ms) +Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.1ms | Allocations: 2844) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:19:24 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:19:24.209166"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1072) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Voluptas aperiam voluptatem aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.218936"], ["updated_at", "2020-05-05 18:19:24.218936"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ullam"], ["description", "Voluptatum ipsam error doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.221725"], ["updated_at", "2020-05-05 18:19:24.221725"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolore"], ["description", "Eum eum voluptate necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.223511"], ["updated_at", "2020-05-05 18:19:24.223511"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maiores"], ["description", "Quidem quia incidunt eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.226442"], ["updated_at", "2020-05-05 18:19:24.226442"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Iusto voluptatum ea nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.230176"], ["updated_at", "2020-05-05 18:19:24.230176"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Ad consequatur debitis accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.231971"], ["updated_at", "2020-05-05 18:19:24.231971"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eligendi"], ["description", "Aliquam et omnis laboriosam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.233267"], ["updated_at", "2020-05-05 18:19:24.233267"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nostrum"], ["description", "Voluptatem quia accusamus iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.234665"], ["updated_at", "2020-05-05 18:19:24.234665"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Omnis ea officiis eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.236078"], ["updated_at", "2020-05-05 18:19:24.236078"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quos"], ["description", "Asperiores sit cum officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.237377"], ["updated_at", "2020-05-05 18:19:24.237377"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kimberley Greenfelder"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RH/tv4Tk29nX0s0wbrevz.9R4GSnNzMqfTqI9Qd7lb9Bd3yizdd6y"], ["created_at", "2020-05-05 18:19:24.240000"], ["updated_at", "2020-05-05 18:19:24.240000"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:19:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.48ms) +Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.3ms | Allocations: 2845) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:19:24 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:19:24.253434"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 999) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.2ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsum"], ["description", "Voluptatem sit et error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.265520"], ["updated_at", "2020-05-05 18:19:24.265520"], ["created_by", "1"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Aliquam vitae modi dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.270287"], ["updated_at", "2020-05-05 18:19:24.270287"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquam"], ["description", "Aut expedita omnis incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.272164"], ["updated_at", "2020-05-05 18:19:24.272164"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "provident"], ["description", "Harum debitis voluptas dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.273500"], ["updated_at", "2020-05-05 18:19:24.273500"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsam"], ["description", "Facere laborum quis est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.274950"], ["updated_at", "2020-05-05 18:19:24.274950"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "similique"], ["description", "Explicabo molestiae sequi eius."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.276369"], ["updated_at", "2020-05-05 18:19:24.276369"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Aut quisquam est labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.277998"], ["updated_at", "2020-05-05 18:19:24.277998"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Nulla illum autem delectus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.279877"], ["updated_at", "2020-05-05 18:19:24.279877"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fuga"], ["description", "Commodi nihil amet est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.281562"], ["updated_at", "2020-05-05 18:19:24.281562"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cumque"], ["description", "Delectus voluptatem non quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:19:24.282861"], ["updated_at", "2020-05-05 18:19:24.282861"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Saran Zulauf"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$PlP0xVPCoyHhKoFJuSb84OTjgSgd.UNo8gLWqenpH8uhMC7.YxLwm"], ["created_at", "2020-05-05 18:19:24.287304"], ["updated_at", "2020-05-05 18:19:24.287304"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:19:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.73ms) +Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms | Allocations: 2845) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:19:24 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1221) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (4.4ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (109.8ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (138.2ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (98.9ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (80.7ms) DELETE FROM "meets"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (105.1ms) DELETE FROM "conversations"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (190.3ms) DELETE FROM "messagems"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (129.2ms) DELETE FROM "users"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (4.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Margery Fadel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8j.TiI/o63eWslG9f.i2.uGCLzF1bEClIcN7/U/XgB9zIbanZaF4q"], ["created_at", "2020-05-05 18:20:07.686089"], ["updated_at", "2020-05-05 18:20:07.686089"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "animi"], ["description", "Porro officiis hic nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:07.710609"], ["updated_at", "2020-05-05 18:20:07.710609"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et sed cupiditate consequuntur?"], ["description", "Impedit est doloremque neque."], ["date", "2020-05-06 18:20:07.739226"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.770841"], ["updated_at", "2020-05-05 18:20:07.770841"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum itaque ut quos?"], ["description", "Eos qui consequatur nihil."], ["date", "2020-05-06 18:20:07.772613"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.773466"], ["updated_at", "2020-05-05 18:20:07.773466"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis doloremque facilis ut?"], ["description", "Voluptatem commodi dolorum quisquam."], ["date", "2020-05-06 18:20:07.774759"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.775495"], ["updated_at", "2020-05-05 18:20:07.775495"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum voluptatem eveniet dolores?"], ["description", "Quis corporis qui et."], ["date", "2020-05-06 18:20:07.776749"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.777431"], ["updated_at", "2020-05-05 18:20:07.777431"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione eligendi nam sit?"], ["description", "Sapiente a nemo cum."], ["date", "2020-05-06 18:20:07.779028"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.780058"], ["updated_at", "2020-05-05 18:20:07.780058"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti temporibus rem porro?"], ["description", "Porro deserunt et quis."], ["date", "2020-05-06 18:20:07.781570"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.782729"], ["updated_at", "2020-05-05 18:20:07.782729"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim dolores qui eos?"], ["description", "Laboriosam quam et velit."], ["date", "2020-05-06 18:20:07.784603"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.785579"], ["updated_at", "2020-05-05 18:20:07.785579"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam et voluptatibus quo?"], ["description", "Totam aut et repudiandae."], ["date", "2020-05-06 18:20:07.786835"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.787508"], ["updated_at", "2020-05-05 18:20:07.787508"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit accusantium asperiores doloremque?"], ["description", "Explicabo nesciunt pariatur ut."], ["date", "2020-05-06 18:20:07.788671"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.789399"], ["updated_at", "2020-05-05 18:20:07.789399"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui ut eaque reiciendis?"], ["description", "Nobis laborum placeat alias."], ["date", "2020-05-06 18:20:07.791217"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.792022"], ["updated_at", "2020-05-05 18:20:07.792022"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio voluptatem pariatur quasi?"], ["description", "Libero aut ad qui."], ["date", "2020-05-06 18:20:07.793354"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.794191"], ["updated_at", "2020-05-05 18:20:07.794191"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum quia fugiat ea?"], ["description", "Et vel dolorem quis."], ["date", "2020-05-06 18:20:07.796206"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.797166"], ["updated_at", "2020-05-05 18:20:07.797166"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Adipisci fugiat saepe perferendis?"], ["description", "Saepe et et quod."], ["date", "2020-05-06 18:20:07.798472"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.799163"], ["updated_at", "2020-05-05 18:20:07.799163"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore animi aspernatur nemo?"], ["description", "Qui consequuntur distinctio voluptatem."], ["date", "2020-05-06 18:20:07.800412"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.801176"], ["updated_at", "2020-05-05 18:20:07.801176"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam eaque dolorem dolorum?"], ["description", "Et illo consequatur neque."], ["date", "2020-05-06 18:20:07.802721"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.804156"], ["updated_at", "2020-05-05 18:20:07.804156"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident et delectus neque?"], ["description", "Recusandae quibusdam rerum vitae."], ["date", "2020-05-06 18:20:07.805632"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.806493"], ["updated_at", "2020-05-05 18:20:07.806493"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias sunt fugiat qui?"], ["description", "Similique in enim voluptatem."], ["date", "2020-05-06 18:20:07.807722"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.808427"], ["updated_at", "2020-05-05 18:20:07.808427"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus dolorem assumenda quidem?"], ["description", "Nesciunt tempore nihil consequuntur."], ["date", "2020-05-06 18:20:07.809636"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.810328"], ["updated_at", "2020-05-05 18:20:07.810328"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed officia quia et?"], ["description", "A commodi aliquam voluptatem."], ["date", "2020-05-06 18:20:07.811510"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.812350"], ["updated_at", "2020-05-05 18:20:07.812350"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut deleniti nam consectetur?"], ["description", "Sit libero quod soluta."], ["date", "2020-05-06 18:20:07.814135"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.815311"], ["updated_at", "2020-05-05 18:20:07.815311"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:20:07 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.37ms) +Completed 200 OK in 34ms (Views: 15.5ms | ActiveRecord: 0.5ms | Allocations: 8639) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mauricio Altenwerth"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Wkt5PcUXH.XDJHjYCmP3F.GZ3aIpkUMD.XRl6QveBoWmuW4yIAZyK"], ["created_at", "2020-05-05 18:20:07.902040"], ["updated_at", "2020-05-05 18:20:07.902040"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Et assumenda sequi ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:07.906804"], ["updated_at", "2020-05-05 18:20:07.906804"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima cumque et voluptate?"], ["description", "Officia dolorem repellendus omnis."], ["date", "2020-05-06 18:20:07.908506"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.909490"], ["updated_at", "2020-05-05 18:20:07.909490"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi enim corrupti vero?"], ["description", "Consequuntur minus doloribus eos."], ["date", "2020-05-06 18:20:07.910832"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.911990"], ["updated_at", "2020-05-05 18:20:07.911990"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil rerum excepturi accusantium?"], ["description", "Facere cumque voluptatem est."], ["date", "2020-05-06 18:20:07.913558"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.914498"], ["updated_at", "2020-05-05 18:20:07.914498"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure sit quibusdam saepe?"], ["description", "Reprehenderit inventore aut dolores."], ["date", "2020-05-06 18:20:07.915706"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.916396"], ["updated_at", "2020-05-05 18:20:07.916396"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam qui sit nostrum?"], ["description", "Et ipsa eos blanditiis."], ["date", "2020-05-06 18:20:07.917599"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.918250"], ["updated_at", "2020-05-05 18:20:07.918250"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum quis accusamus placeat?"], ["description", "Et recusandae sunt tempore."], ["date", "2020-05-06 18:20:07.919331"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.920055"], ["updated_at", "2020-05-05 18:20:07.920055"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem praesentium qui nisi?"], ["description", "Labore aut rerum beatae."], ["date", "2020-05-06 18:20:07.921200"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.921968"], ["updated_at", "2020-05-05 18:20:07.921968"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio aut et perferendis?"], ["description", "Eligendi molestiae et velit."], ["date", "2020-05-06 18:20:07.924067"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.925876"], ["updated_at", "2020-05-05 18:20:07.925876"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur et ut sed?"], ["description", "Officiis eos non ut."], ["date", "2020-05-06 18:20:07.928303"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.929347"], ["updated_at", "2020-05-05 18:20:07.929347"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto quas iste est?"], ["description", "Voluptatum velit tenetur aut."], ["date", "2020-05-06 18:20:07.931298"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.932089"], ["updated_at", "2020-05-05 18:20:07.932089"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium quos voluptas non?"], ["description", "Asperiores doloremque aut corporis."], ["date", "2020-05-06 18:20:07.933485"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.934309"], ["updated_at", "2020-05-05 18:20:07.934309"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt et officia corrupti?"], ["description", "In nostrum aliquam laborum."], ["date", "2020-05-06 18:20:07.935508"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.936255"], ["updated_at", "2020-05-05 18:20:07.936255"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut nihil ut accusamus?"], ["description", "Nulla quia dolor sunt."], ["date", "2020-05-06 18:20:07.937425"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.938124"], ["updated_at", "2020-05-05 18:20:07.938124"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis iure aperiam aut?"], ["description", "Tempora ab facere nihil."], ["date", "2020-05-06 18:20:07.939368"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.940056"], ["updated_at", "2020-05-05 18:20:07.940056"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit eos corporis sapiente?"], ["description", "Debitis quas cum numquam."], ["date", "2020-05-06 18:20:07.941290"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.942002"], ["updated_at", "2020-05-05 18:20:07.942002"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laudantium accusamus voluptatem cupiditate?"], ["description", "Incidunt voluptatem asperiores delectus."], ["date", "2020-05-06 18:20:07.944456"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.945825"], ["updated_at", "2020-05-05 18:20:07.945825"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui consequatur eos officiis?"], ["description", "Ullam vel vitae aut."], ["date", "2020-05-06 18:20:07.948018"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.948997"], ["updated_at", "2020-05-05 18:20:07.948997"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio aliquam accusamus id?"], ["description", "Qui praesentium doloribus error."], ["date", "2020-05-06 18:20:07.950381"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.951212"], ["updated_at", "2020-05-05 18:20:07.951212"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur enim perspiciatis et?"], ["description", "Velit quo voluptas quo."], ["date", "2020-05-06 18:20:07.952539"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.953414"], ["updated_at", "2020-05-05 18:20:07.953414"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et molestias qui fugit?"], ["description", "Veritatis commodi doloremque totam."], ["date", "2020-05-06 18:20:07.954823"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:07.955683"], ["updated_at", "2020-05-05 18:20:07.955683"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:20:07 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (7.86ms) +Completed 200 OK in 11ms (Views: 9.6ms | ActiveRecord: 0.2ms | Allocations: 5515) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (40.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (2.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hobert Koelpin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SyfshRjCLPuYeGJKSIPh3.P9TyLfdUVPDy6XU9TM9ZF5.ager1JsK"], ["created_at", "2020-05-05 18:20:08.020984"], ["updated_at", "2020-05-05 18:20:08.020984"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quod"], ["description", "Excepturi officiis nisi nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.027685"], ["updated_at", "2020-05-05 18:20:08.027685"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis quisquam minima occaecati?"], ["description", "Sit provident quidem aliquid."], ["date", "2020-05-06 18:20:08.032537"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.033877"], ["updated_at", "2020-05-05 18:20:08.033877"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam eligendi omnis error?"], ["description", "Pariatur debitis soluta sit."], ["date", "2020-05-06 18:20:08.035687"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.036623"], ["updated_at", "2020-05-05 18:20:08.036623"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut velit neque blanditiis?"], ["description", "Quidem sit earum repellat."], ["date", "2020-05-06 18:20:08.038065"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.038964"], ["updated_at", "2020-05-05 18:20:08.038964"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo et et atque?"], ["description", "Sit libero provident doloribus."], ["date", "2020-05-06 18:20:08.040415"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.041299"], ["updated_at", "2020-05-05 18:20:08.041299"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo culpa qui ex?"], ["description", "Dolor libero aut ut."], ["date", "2020-05-06 18:20:08.042767"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.043801"], ["updated_at", "2020-05-05 18:20:08.043801"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum voluptates qui in?"], ["description", "Exercitationem delectus occaecati soluta."], ["date", "2020-05-06 18:20:08.046682"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.047936"], ["updated_at", "2020-05-05 18:20:08.047936"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio iure et aut?"], ["description", "Et possimus in nobis."], ["date", "2020-05-06 18:20:08.049865"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.050802"], ["updated_at", "2020-05-05 18:20:08.050802"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga est enim excepturi?"], ["description", "Temporibus id et quidem."], ["date", "2020-05-06 18:20:08.052202"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.053124"], ["updated_at", "2020-05-05 18:20:08.053124"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores sed expedita voluptatem?"], ["description", "Dolor praesentium amet et."], ["date", "2020-05-06 18:20:08.054673"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.055649"], ["updated_at", "2020-05-05 18:20:08.055649"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit nam rem quis?"], ["description", "Numquam dolore officia nobis."], ["date", "2020-05-06 18:20:08.057986"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.058989"], ["updated_at", "2020-05-05 18:20:08.058989"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia veritatis quidem in?"], ["description", "Asperiores aut eaque eum."], ["date", "2020-05-06 18:20:08.060570"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.061458"], ["updated_at", "2020-05-05 18:20:08.061458"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum necessitatibus perspiciatis tenetur?"], ["description", "Voluptate occaecati tenetur reiciendis."], ["date", "2020-05-06 18:20:08.062980"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.064513"], ["updated_at", "2020-05-05 18:20:08.064513"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores praesentium perferendis libero?"], ["description", "Dolorem delectus ea at."], ["date", "2020-05-06 18:20:08.066438"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.067461"], ["updated_at", "2020-05-05 18:20:08.067461"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laudantium quisquam consequatur et?"], ["description", "Voluptatem deserunt sed eligendi."], ["date", "2020-05-06 18:20:08.068856"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.069588"], ["updated_at", "2020-05-05 18:20:08.069588"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est veritatis sint assumenda?"], ["description", "Itaque dignissimos in vel."], ["date", "2020-05-06 18:20:08.070711"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.071401"], ["updated_at", "2020-05-05 18:20:08.071401"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est eveniet sed sequi?"], ["description", "Quis aut impedit dolores."], ["date", "2020-05-06 18:20:08.072561"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.073252"], ["updated_at", "2020-05-05 18:20:08.073252"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur autem magnam odit?"], ["description", "Architecto illum et nobis."], ["date", "2020-05-06 18:20:08.093401"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.094563"], ["updated_at", "2020-05-05 18:20:08.094563"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos sit rem unde?"], ["description", "Tempore eius ab quia."], ["date", "2020-05-06 18:20:08.096611"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.097631"], ["updated_at", "2020-05-05 18:20:08.097631"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut omnis molestiae incidunt?"], ["description", "In eius provident sed."], ["date", "2020-05-06 18:20:08.099089"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.099807"], ["updated_at", "2020-05-05 18:20:08.099807"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem et impedit velit?"], ["description", "Et aspernatur autem minima."], ["date", "2020-05-06 18:20:08.101050"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.101748"], ["updated_at", "2020-05-05 18:20:08.101748"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:20:08 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms) +Completed 404 Not Found in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms | Allocations: 866) +  (0.7ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.8ms) rollback transaction +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sherice Connelly"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1ea9ZjqUZNiLiDoaZzZDvu4ItGZgSRB0yza6WdZczHJTw8c7Jo3/O"], ["created_at", "2020-05-05 18:20:08.128908"], ["updated_at", "2020-05-05 18:20:08.128908"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odio"], ["description", "Nisi reprehenderit alias voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.132776"], ["updated_at", "2020-05-05 18:20:08.132776"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus et et est?"], ["description", "Aspernatur et necessitatibus nulla."], ["date", "2020-05-06 18:20:08.134404"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.135345"], ["updated_at", "2020-05-05 18:20:08.135345"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui aspernatur omnis quas?"], ["description", "Nihil repellat tempore dolorum."], ["date", "2020-05-06 18:20:08.136685"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.137389"], ["updated_at", "2020-05-05 18:20:08.137389"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id et reprehenderit sit?"], ["description", "Error sed possimus amet."], ["date", "2020-05-06 18:20:08.138559"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.139252"], ["updated_at", "2020-05-05 18:20:08.139252"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod in quia accusantium?"], ["description", "Ab rerum nam possimus."], ["date", "2020-05-06 18:20:08.140435"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.141123"], ["updated_at", "2020-05-05 18:20:08.141123"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At omnis sed dolores?"], ["description", "Maiores ratione amet porro."], ["date", "2020-05-06 18:20:08.142228"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.142913"], ["updated_at", "2020-05-05 18:20:08.142913"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error nisi aut minus?"], ["description", "Explicabo eum et fugiat."], ["date", "2020-05-06 18:20:08.144301"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.147285"], ["updated_at", "2020-05-05 18:20:08.147285"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid rerum assumenda sunt?"], ["description", "In odio possimus voluptas."], ["date", "2020-05-06 18:20:08.149871"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.150855"], ["updated_at", "2020-05-05 18:20:08.150855"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem culpa adipisci ducimus?"], ["description", "Maiores necessitatibus explicabo quas."], ["date", "2020-05-06 18:20:08.152409"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.153330"], ["updated_at", "2020-05-05 18:20:08.153330"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis qui facere dolorem?"], ["description", "Rem porro totam aut."], ["date", "2020-05-06 18:20:08.155095"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.156288"], ["updated_at", "2020-05-05 18:20:08.156288"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio dolores debitis voluptatem?"], ["description", "Quidem eligendi at distinctio."], ["date", "2020-05-06 18:20:08.159281"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.161173"], ["updated_at", "2020-05-05 18:20:08.161173"]] +  (0.4ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor omnis laudantium veniam?"], ["description", "Et dolor consequatur doloremque."], ["date", "2020-05-06 18:20:08.166557"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.168823"], ["updated_at", "2020-05-05 18:20:08.168823"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid veritatis eius libero?"], ["description", "Magni velit in et."], ["date", "2020-05-06 18:20:08.170613"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.171527"], ["updated_at", "2020-05-05 18:20:08.171527"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti aperiam quia pariatur?"], ["description", "Commodi dolor quam officia."], ["date", "2020-05-06 18:20:08.172939"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.173998"], ["updated_at", "2020-05-05 18:20:08.173998"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et omnis reiciendis quis?"], ["description", "Maxime voluptatem dolores at."], ["date", "2020-05-06 18:20:08.175734"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.176857"], ["updated_at", "2020-05-05 18:20:08.176857"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum nisi eum et?"], ["description", "Cum repellat eum enim."], ["date", "2020-05-06 18:20:08.180847"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.182812"], ["updated_at", "2020-05-05 18:20:08.182812"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut veritatis necessitatibus asperiores?"], ["description", "Dolores et minus neque."], ["date", "2020-05-06 18:20:08.185764"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.188409"], ["updated_at", "2020-05-05 18:20:08.188409"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae omnis sed itaque?"], ["description", "Doloribus magni repellendus sit."], ["date", "2020-05-06 18:20:08.192296"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.193870"], ["updated_at", "2020-05-05 18:20:08.193870"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque et maxime et?"], ["description", "Impedit exercitationem quos odit."], ["date", "2020-05-06 18:20:08.195774"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.196766"], ["updated_at", "2020-05-05 18:20:08.196766"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita quidem quis et?"], ["description", "Aperiam neque est expedita."], ["date", "2020-05-06 18:20:08.198545"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.199569"], ["updated_at", "2020-05-05 18:20:08.199569"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio rem expedita dolorem?"], ["description", "Optio et neque et."], ["date", "2020-05-06 18:20:08.201721"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.204049"], ["updated_at", "2020-05-05 18:20:08.204049"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:20:08 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 509) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (2.0ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bruce Robel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Z41GtG0JpDbVmwthd3fjFumUKvE5cwsyIpcCOpRqXA9sOUNmd8qO2"], ["created_at", "2020-05-05 18:20:08.239686"], ["updated_at", "2020-05-05 18:20:08.239686"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Culpa eius quas laboriosam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.245394"], ["updated_at", "2020-05-05 18:20:08.245394"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae temporibus quis similique?"], ["description", "Repellendus rem quis fugiat."], ["date", "2020-05-06 18:20:08.249809"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.251269"], ["updated_at", "2020-05-05 18:20:08.251269"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi sapiente sunt qui?"], ["description", "Unde qui dolor dolore."], ["date", "2020-05-06 18:20:08.253679"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.255178"], ["updated_at", "2020-05-05 18:20:08.255178"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque quis facilis beatae?"], ["description", "Placeat ex veritatis deleniti."], ["date", "2020-05-06 18:20:08.256824"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.257663"], ["updated_at", "2020-05-05 18:20:08.257663"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem consequatur rem sit?"], ["description", "Unde ea qui dolorum."], ["date", "2020-05-06 18:20:08.259021"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.259943"], ["updated_at", "2020-05-05 18:20:08.259943"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo molestias voluptatem consequuntur?"], ["description", "Doloribus distinctio modi esse."], ["date", "2020-05-06 18:20:08.262058"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.266840"], ["updated_at", "2020-05-05 18:20:08.266840"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quibusdam vero doloribus dignissimos?"], ["description", "Aliquam rerum et accusamus."], ["date", "2020-05-06 18:20:08.270484"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.272109"], ["updated_at", "2020-05-05 18:20:08.272109"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat ipsa minus vitae?"], ["description", "Amet a nemo explicabo."], ["date", "2020-05-06 18:20:08.275623"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.276848"], ["updated_at", "2020-05-05 18:20:08.276848"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error sint vitae sed?"], ["description", "Velit cum molestiae qui."], ["date", "2020-05-06 18:20:08.278638"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.280012"], ["updated_at", "2020-05-05 18:20:08.280012"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae ipsa nihil reiciendis?"], ["description", "Rerum expedita labore deserunt."], ["date", "2020-05-06 18:20:08.281686"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.282748"], ["updated_at", "2020-05-05 18:20:08.282748"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil impedit mollitia possimus?"], ["description", "Reprehenderit adipisci saepe eos."], ["date", "2020-05-06 18:20:08.286161"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.288644"], ["updated_at", "2020-05-05 18:20:08.288644"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui rerum qui atque?"], ["description", "Animi non ipsum beatae."], ["date", "2020-05-06 18:20:08.291633"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.293288"], ["updated_at", "2020-05-05 18:20:08.293288"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati nobis autem recusandae?"], ["description", "Vitae et sit sapiente."], ["date", "2020-05-06 18:20:08.296857"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.298542"], ["updated_at", "2020-05-05 18:20:08.298542"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate labore voluptatum eius?"], ["description", "Aliquam tempore error laboriosam."], ["date", "2020-05-06 18:20:08.300068"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.300979"], ["updated_at", "2020-05-05 18:20:08.300979"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure rerum consequuntur doloribus?"], ["description", "Repudiandae dolores aut rerum."], ["date", "2020-05-06 18:20:08.302683"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.303628"], ["updated_at", "2020-05-05 18:20:08.303628"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat nisi in voluptatem?"], ["description", "Veniam dolorem non ab."], ["date", "2020-05-06 18:20:08.305203"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.306659"], ["updated_at", "2020-05-05 18:20:08.306659"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui laborum quo nihil?"], ["description", "Facere repellendus et ipsum."], ["date", "2020-05-06 18:20:08.308300"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.309694"], ["updated_at", "2020-05-05 18:20:08.309694"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et ratione consequatur voluptatem?"], ["description", "Consequatur provident nobis unde."], ["date", "2020-05-06 18:20:08.311245"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.312774"], ["updated_at", "2020-05-05 18:20:08.312774"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque voluptates sit molestiae?"], ["description", "Assumenda et ipsum qui."], ["date", "2020-05-06 18:20:08.314816"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.315841"], ["updated_at", "2020-05-05 18:20:08.315841"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi repellat inventore repudiandae?"], ["description", "Modi repellat ipsum ad."], ["date", "2020-05-06 18:20:08.317685"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.318579"], ["updated_at", "2020-05-05 18:20:08.318579"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos amet adipisci sit?"], ["description", "Ea eos nihil sequi."], ["date", "2020-05-06 18:20:08.319951"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.320706"], ["updated_at", "2020-05-05 18:20:08.320706"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:20:08 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.95ms) +Completed 200 OK in 4ms (Views: 1.6ms | ActiveRecord: 0.3ms | Allocations: 1086) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (2.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Edwin Will"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$077x7tV8hciMyxJEMsHEfe3huD8cL3syyTEld8nSZU2ZHOu3BnS8e"], ["created_at", "2020-05-05 18:20:08.345872"], ["updated_at", "2020-05-05 18:20:08.345872"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facilis"], ["description", "Aliquam error saepe sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.354972"], ["updated_at", "2020-05-05 18:20:08.354972"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque fuga magnam quo?"], ["description", "Dolores ut sit praesentium."], ["date", "2020-05-06 18:20:08.367056"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.369458"], ["updated_at", "2020-05-05 18:20:08.369458"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum aliquam ut ipsa?"], ["description", "Et eligendi fugit aspernatur."], ["date", "2020-05-06 18:20:08.372043"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.373692"], ["updated_at", "2020-05-05 18:20:08.373692"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum reprehenderit totam sint?"], ["description", "Commodi adipisci eos debitis."], ["date", "2020-05-06 18:20:08.375570"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.377751"], ["updated_at", "2020-05-05 18:20:08.377751"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis libero hic sed?"], ["description", "Quam quidem et ipsam."], ["date", "2020-05-06 18:20:08.380363"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.381728"], ["updated_at", "2020-05-05 18:20:08.381728"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa mollitia non a?"], ["description", "Et laudantium unde aut."], ["date", "2020-05-06 18:20:08.383290"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.384418"], ["updated_at", "2020-05-05 18:20:08.384418"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed eos voluptas molestiae?"], ["description", "Tempore voluptatibus nesciunt harum."], ["date", "2020-05-06 18:20:08.387289"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.389841"], ["updated_at", "2020-05-05 18:20:08.389841"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et nulla vel sed?"], ["description", "Consequuntur itaque repellat id."], ["date", "2020-05-06 18:20:08.392093"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.393300"], ["updated_at", "2020-05-05 18:20:08.393300"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est nostrum fuga voluptate?"], ["description", "Suscipit mollitia molestiae sit."], ["date", "2020-05-06 18:20:08.397025"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.398107"], ["updated_at", "2020-05-05 18:20:08.398107"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe sit rem quisquam?"], ["description", "Est et illum saepe."], ["date", "2020-05-06 18:20:08.399489"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.400599"], ["updated_at", "2020-05-05 18:20:08.400599"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae quibusdam laudantium adipisci?"], ["description", "Voluptas cumque rerum temporibus."], ["date", "2020-05-06 18:20:08.403241"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.404765"], ["updated_at", "2020-05-05 18:20:08.404765"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem dolorem veritatis adipisci?"], ["description", "Aut eligendi qui eius."], ["date", "2020-05-06 18:20:08.408434"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.410536"], ["updated_at", "2020-05-05 18:20:08.410536"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae non deserunt libero?"], ["description", "Consectetur reprehenderit ad recusandae."], ["date", "2020-05-06 18:20:08.413337"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.415942"], ["updated_at", "2020-05-05 18:20:08.415942"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita odio reprehenderit debitis?"], ["description", "Corrupti aut repellendus ut."], ["date", "2020-05-06 18:20:08.418706"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.419868"], ["updated_at", "2020-05-05 18:20:08.419868"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora eum autem mollitia?"], ["description", "Dolor sed ducimus repellat."], ["date", "2020-05-06 18:20:08.421858"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.423060"], ["updated_at", "2020-05-05 18:20:08.423060"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quibusdam possimus odit?"], ["description", "Voluptates sed id ut."], ["date", "2020-05-06 18:20:08.426090"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.428759"], ["updated_at", "2020-05-05 18:20:08.428759"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem recusandae delectus beatae?"], ["description", "Sit placeat qui quia."], ["date", "2020-05-06 18:20:08.431322"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.432498"], ["updated_at", "2020-05-05 18:20:08.432498"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias dolores est sed?"], ["description", "Eos ducimus laboriosam fugiat."], ["date", "2020-05-06 18:20:08.435586"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.436591"], ["updated_at", "2020-05-05 18:20:08.436591"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ducimus et et excepturi?"], ["description", "Sint eum animi itaque."], ["date", "2020-05-06 18:20:08.438308"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.439424"], ["updated_at", "2020-05-05 18:20:08.439424"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel rem aspernatur facilis?"], ["description", "Harum quo neque cumque."], ["date", "2020-05-06 18:20:08.441084"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.442078"], ["updated_at", "2020-05-05 18:20:08.442078"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus numquam doloribus unde?"], ["description", "Provident repudiandae vel cupiditate."], ["date", "2020-05-06 18:20:08.444425"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.447240"], ["updated_at", "2020-05-05 18:20:08.447240"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:20:08 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.81ms) +Completed 200 OK in 5ms (Views: 1.3ms | ActiveRecord: 0.4ms | Allocations: 1057) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.9ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Tracey Hagenes"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZlMFcY7VElknzEO/vfFkW.m19FJuiOQYBdYvHc/f.rryk.WvOaEBa"], ["created_at", "2020-05-05 18:20:08.472266"], ["updated_at", "2020-05-05 18:20:08.472266"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eveniet"], ["description", "Sit error non beatae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.478072"], ["updated_at", "2020-05-05 18:20:08.478072"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae ullam accusantium autem?"], ["description", "Qui dolorem ea nesciunt."], ["date", "2020-05-06 18:20:08.480359"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.481445"], ["updated_at", "2020-05-05 18:20:08.481445"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit molestias eum quaerat?"], ["description", "Qui saepe doloremque quibusdam."], ["date", "2020-05-06 18:20:08.482929"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.483658"], ["updated_at", "2020-05-05 18:20:08.483658"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus distinctio qui enim?"], ["description", "Incidunt vel qui dicta."], ["date", "2020-05-06 18:20:08.484834"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.485562"], ["updated_at", "2020-05-05 18:20:08.485562"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure dolore repudiandae quibusdam?"], ["description", "In eaque unde et."], ["date", "2020-05-06 18:20:08.487150"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.488926"], ["updated_at", "2020-05-05 18:20:08.488926"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi numquam veniam explicabo?"], ["description", "Hic natus et quasi."], ["date", "2020-05-06 18:20:08.491027"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.492341"], ["updated_at", "2020-05-05 18:20:08.492341"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate quos rerum exercitationem?"], ["description", "Sunt voluptatem et neque."], ["date", "2020-05-06 18:20:08.493701"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.494507"], ["updated_at", "2020-05-05 18:20:08.494507"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum aspernatur aliquam libero?"], ["description", "Beatae alias vel et."], ["date", "2020-05-06 18:20:08.496159"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.497163"], ["updated_at", "2020-05-05 18:20:08.497163"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat dolor qui in?"], ["description", "Occaecati pariatur aut est."], ["date", "2020-05-06 18:20:08.498514"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.499228"], ["updated_at", "2020-05-05 18:20:08.499228"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et eaque hic fugit?"], ["description", "Voluptas ad in voluptatem."], ["date", "2020-05-06 18:20:08.500307"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.501008"], ["updated_at", "2020-05-05 18:20:08.501008"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur illo a minus?"], ["description", "Voluptatem nesciunt officiis aliquid."], ["date", "2020-05-06 18:20:08.502893"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.503668"], ["updated_at", "2020-05-05 18:20:08.503668"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut recusandae mollitia maiores?"], ["description", "Esse fuga maxime sequi."], ["date", "2020-05-06 18:20:08.505001"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.505724"], ["updated_at", "2020-05-05 18:20:08.505724"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est est quas numquam?"], ["description", "Deserunt magni consequuntur nostrum."], ["date", "2020-05-06 18:20:08.507449"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.508774"], ["updated_at", "2020-05-05 18:20:08.508774"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptate ab reiciendis qui?"], ["description", "Vero debitis inventore delectus."], ["date", "2020-05-06 18:20:08.510243"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.511065"], ["updated_at", "2020-05-05 18:20:08.511065"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit dolores aliquid non?"], ["description", "Voluptate reiciendis et ullam."], ["date", "2020-05-06 18:20:08.512348"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.513594"], ["updated_at", "2020-05-05 18:20:08.513594"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos perspiciatis deleniti autem?"], ["description", "Dolores adipisci aut repellendus."], ["date", "2020-05-06 18:20:08.515177"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.516041"], ["updated_at", "2020-05-05 18:20:08.516041"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores accusamus fugit laborum?"], ["description", "Asperiores eveniet voluptatem assumenda."], ["date", "2020-05-06 18:20:08.517214"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.517889"], ["updated_at", "2020-05-05 18:20:08.517889"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem autem minus omnis?"], ["description", "Cum beatae consequuntur optio."], ["date", "2020-05-06 18:20:08.519080"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.519746"], ["updated_at", "2020-05-05 18:20:08.519746"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt fuga ipsum maxime?"], ["description", "Natus quasi ut ipsa."], ["date", "2020-05-06 18:20:08.520986"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.521688"], ["updated_at", "2020-05-05 18:20:08.521688"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut asperiores in eius?"], ["description", "Optio libero voluptas dolores."], ["date", "2020-05-06 18:20:08.522931"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.523616"], ["updated_at", "2020-05-05 18:20:08.523616"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non aut recusandae molestias?"], ["description", "Sed ullam itaque possimus."], ["date", "2020-05-06 18:20:08.524919"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.525633"], ["updated_at", "2020-05-05 18:20:08.525633"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:20:08 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 3ms (Views: 0.4ms | ActiveRecord: 0.3ms | Allocations: 884) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (32.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kermit Torphy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$AnB9Fuyje5/daUjpFje5vONvjDP6xknWDbYHNeOVgR5cJxCiTBxiO"], ["created_at", "2020-05-05 18:20:08.569372"], ["updated_at", "2020-05-05 18:20:08.569372"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Laborum voluptas voluptatem officiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.573920"], ["updated_at", "2020-05-05 18:20:08.573920"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis quidem quibusdam impedit?"], ["description", "Veniam est quas laborum."], ["date", "2020-05-06 18:20:08.576346"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.577421"], ["updated_at", "2020-05-05 18:20:08.577421"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et incidunt sed totam?"], ["description", "Qui quia alias voluptatem."], ["date", "2020-05-06 18:20:08.579630"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.580901"], ["updated_at", "2020-05-05 18:20:08.580901"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut suscipit consequuntur amet?"], ["description", "Et ea voluptatem ducimus."], ["date", "2020-05-06 18:20:08.582542"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.583683"], ["updated_at", "2020-05-05 18:20:08.583683"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus veniam fugiat atque?"], ["description", "Labore id velit iste."], ["date", "2020-05-06 18:20:08.585379"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.586327"], ["updated_at", "2020-05-05 18:20:08.586327"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas fugit tempore aperiam?"], ["description", "Fugiat nesciunt cupiditate libero."], ["date", "2020-05-06 18:20:08.588656"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.589952"], ["updated_at", "2020-05-05 18:20:08.589952"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium ipsum velit repellat?"], ["description", "Explicabo unde ducimus incidunt."], ["date", "2020-05-06 18:20:08.591387"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.592218"], ["updated_at", "2020-05-05 18:20:08.592218"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil culpa eligendi excepturi?"], ["description", "Dolorum consequatur rerum nobis."], ["date", "2020-05-06 18:20:08.593472"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.594415"], ["updated_at", "2020-05-05 18:20:08.594415"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat deserunt omnis molestias?"], ["description", "Voluptas vitae beatae facilis."], ["date", "2020-05-06 18:20:08.596901"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.598163"], ["updated_at", "2020-05-05 18:20:08.598163"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam nostrum reiciendis qui?"], ["description", "Molestias quas ducimus quis."], ["date", "2020-05-06 18:20:08.600000"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.601282"], ["updated_at", "2020-05-05 18:20:08.601282"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt sunt consequuntur recusandae?"], ["description", "Laudantium perferendis qui dolore."], ["date", "2020-05-06 18:20:08.604555"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.606048"], ["updated_at", "2020-05-05 18:20:08.606048"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error omnis qui eveniet?"], ["description", "Quasi quam totam rem."], ["date", "2020-05-06 18:20:08.607918"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.609505"], ["updated_at", "2020-05-05 18:20:08.609505"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo voluptate ad occaecati?"], ["description", "Qui consequatur dolorem sapiente."], ["date", "2020-05-06 18:20:08.611241"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.612289"], ["updated_at", "2020-05-05 18:20:08.612289"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias amet dolor sed?"], ["description", "Esse fuga qui quo."], ["date", "2020-05-06 18:20:08.614279"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.615217"], ["updated_at", "2020-05-05 18:20:08.615217"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos nostrum non voluptas?"], ["description", "Expedita eos sit sint."], ["date", "2020-05-06 18:20:08.616573"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.617282"], ["updated_at", "2020-05-05 18:20:08.617282"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur qui provident error?"], ["description", "Sit inventore rerum quo."], ["date", "2020-05-06 18:20:08.618534"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.619240"], ["updated_at", "2020-05-05 18:20:08.619240"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita dolores quia culpa?"], ["description", "Optio quidem ea sint."], ["date", "2020-05-06 18:20:08.620499"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.621296"], ["updated_at", "2020-05-05 18:20:08.621296"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet non molestiae itaque?"], ["description", "Iusto perferendis et labore."], ["date", "2020-05-06 18:20:08.622452"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.623139"], ["updated_at", "2020-05-05 18:20:08.623139"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit nobis dicta rem?"], ["description", "Et enim est saepe."], ["date", "2020-05-06 18:20:08.624258"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.624950"], ["updated_at", "2020-05-05 18:20:08.624950"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis aut deleniti quisquam?"], ["description", "Suscipit commodi non dignissimos."], ["date", "2020-05-06 18:20:08.626125"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.626839"], ["updated_at", "2020-05-05 18:20:08.626839"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque minima magnam autem?"], ["description", "Nulla labore quam harum."], ["date", "2020-05-06 18:20:08.629039"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:08.630372"], ["updated_at", "2020-05-05 18:20:08.630372"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:20:08 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 867) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (2.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Sit et doloribus laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.648351"], ["updated_at", "2020-05-05 18:20:08.648351"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Qui culpa dolor perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.655520"], ["updated_at", "2020-05-05 18:20:08.655520"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quidem"], ["description", "Id est error enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.657286"], ["updated_at", "2020-05-05 18:20:08.657286"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "commodi"], ["description", "Cupiditate quasi commodi eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.659087"], ["updated_at", "2020-05-05 18:20:08.659087"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Veritatis rerum voluptas qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.662040"], ["updated_at", "2020-05-05 18:20:08.662040"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "error"], ["description", "Commodi dolore aut totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.664385"], ["updated_at", "2020-05-05 18:20:08.664385"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Porro et nihil esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.666218"], ["updated_at", "2020-05-05 18:20:08.666218"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorum"], ["description", "Eos aut nostrum modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.668267"], ["updated_at", "2020-05-05 18:20:08.668267"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iusto"], ["description", "Nihil et ratione eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.670534"], ["updated_at", "2020-05-05 18:20:08.670534"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Non molestias dolor et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.672010"], ["updated_at", "2020-05-05 18:20:08.672010"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rosina Romaguera"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7iELP5WHi1Aj7f4dJz849eJdIHVpjbRto4egoGLx3dKX6yyAHVSWC"], ["created_at", "2020-05-05 18:20:08.674624"], ["updated_at", "2020-05-05 18:20:08.674624"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:08 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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.1ms | ActiveRecord: 0.3ms | Allocations: 3003) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Veritatis illo saepe soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.698426"], ["updated_at", "2020-05-05 18:20:08.698426"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tenetur"], ["description", "Corrupti facilis ut expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.702400"], ["updated_at", "2020-05-05 18:20:08.702400"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "error"], ["description", "Ut sunt animi similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.704001"], ["updated_at", "2020-05-05 18:20:08.704001"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "esse"], ["description", "Iure quo odit illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.705384"], ["updated_at", "2020-05-05 18:20:08.705384"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "possimus"], ["description", "Sapiente sit omnis eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.706670"], ["updated_at", "2020-05-05 18:20:08.706670"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "modi"], ["description", "Aut dicta repudiandae eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.708955"], ["updated_at", "2020-05-05 18:20:08.708955"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Omnis voluptatibus eligendi voluptatum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.711545"], ["updated_at", "2020-05-05 18:20:08.711545"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dicta"], ["description", "Porro ducimus autem incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.713360"], ["updated_at", "2020-05-05 18:20:08.713360"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Asperiores illum tempora in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.714971"], ["updated_at", "2020-05-05 18:20:08.714971"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quisquam"], ["description", "Nobis architecto sapiente recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.716384"], ["updated_at", "2020-05-05 18:20:08.716384"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ouida Champlin Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6AKtBt8ZY1vYuiqtIeJtEuOQaf21x1IgSzO7W.olbHu50YbqwBifi"], ["created_at", "2020-05-05 18:20:08.718958"], ["updated_at", "2020-05-05 18:20:08.718958"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:08 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.4ms) +Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms | Allocations: 2844) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Iure inventore voluptas rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.737234"], ["updated_at", "2020-05-05 18:20:08.737234"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Consequatur accusantium ut nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.741228"], ["updated_at", "2020-05-05 18:20:08.741228"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Incidunt excepturi ut iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.742828"], ["updated_at", "2020-05-05 18:20:08.742828"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "placeat"], ["description", "Enim tempore qui dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.744159"], ["updated_at", "2020-05-05 18:20:08.744159"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rem"], ["description", "Iure molestiae dicta eius."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.746206"], ["updated_at", "2020-05-05 18:20:08.746206"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cumque"], ["description", "Illo incidunt blanditiis consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.748024"], ["updated_at", "2020-05-05 18:20:08.748024"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iusto"], ["description", "Ea a sit et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.750601"], ["updated_at", "2020-05-05 18:20:08.750601"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eveniet"], ["description", "Quia vitae blanditiis doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.752738"], ["updated_at", "2020-05-05 18:20:08.752738"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Voluptates soluta ut consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.754172"], ["updated_at", "2020-05-05 18:20:08.754172"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Necessitatibus qui inventore expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.755541"], ["updated_at", "2020-05-05 18:20:08.755541"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Salvador Predovic"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xczaLAg14JeOZkd1kFv62OD.GWvD03KGWBWWzXH/oJ88p0ze5oZV."], ["created_at", "2020-05-05 18:20:08.758115"], ["updated_at", "2020-05-05 18:20:08.758115"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:08 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.45ms) +Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms | Allocations: 2845) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:20:08 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.2ms) +Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.3ms | Allocations: 1242) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Perspiciatis aspernatur et tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.780760"], ["updated_at", "2020-05-05 18:20:08.780760"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quam"], ["description", "Sed dolore quam iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.784468"], ["updated_at", "2020-05-05 18:20:08.784468"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "delectus"], ["description", "Quisquam illum assumenda aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.786430"], ["updated_at", "2020-05-05 18:20:08.786430"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facere"], ["description", "Magnam sequi accusantium aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.787866"], ["updated_at", "2020-05-05 18:20:08.787866"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "mollitia"], ["description", "Et error non explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.789872"], ["updated_at", "2020-05-05 18:20:08.789872"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "soluta"], ["description", "Et voluptate sed adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.791646"], ["updated_at", "2020-05-05 18:20:08.791646"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sequi"], ["description", "Sed pariatur expedita mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.793833"], ["updated_at", "2020-05-05 18:20:08.793833"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Quisquam totam provident ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.795790"], ["updated_at", "2020-05-05 18:20:08.795790"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ratione"], ["description", "Sit delectus id doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.797283"], ["updated_at", "2020-05-05 18:20:08.797283"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Hic reiciendis non repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.798580"], ["updated_at", "2020-05-05 18:20:08.798580"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hobert Schiller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$K88TXWZ7wyCh1q2DiFoi.eFFhKy0ic5JsAU0ZfIZLZhDDhzwUs9zi"], ["created_at", "2020-05-05 18:20:08.801277"], ["updated_at", "2020-05-05 18:20:08.801277"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:08 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.67ms) +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 15:20:08 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.37ms) +Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.3ms | Allocations: 1240) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rem"], ["description", "Magnam nisi repudiandae cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.823924"], ["updated_at", "2020-05-05 18:20:08.823924"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "explicabo"], ["description", "Et eos sint porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.827692"], ["updated_at", "2020-05-05 18:20:08.827692"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "praesentium"], ["description", "Et quibusdam nihil dolore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.831040"], ["updated_at", "2020-05-05 18:20:08.831040"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dignissimos"], ["description", "Minima sit qui quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.832575"], ["updated_at", "2020-05-05 18:20:08.832575"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rem"], ["description", "Voluptas dolor et ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.833879"], ["updated_at", "2020-05-05 18:20:08.833879"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "debitis"], ["description", "Rerum magnam earum quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.835257"], ["updated_at", "2020-05-05 18:20:08.835257"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Perferendis esse perspiciatis incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.836693"], ["updated_at", "2020-05-05 18:20:08.836693"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquam"], ["description", "Ut quo maxime in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.838204"], ["updated_at", "2020-05-05 18:20:08.838204"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Aut omnis itaque perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.840024"], ["updated_at", "2020-05-05 18:20:08.840024"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Et aspernatur aliquid repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.842303"], ["updated_at", "2020-05-05 18:20:08.842303"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.9ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Aleta Ebert DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$exaoT0oKSBYp/0YIFfuYt.kVWuwsJQJaKmOJz5a9Uh.eELd3jyLFC"], ["created_at", "2020-05-05 18:20:08.847422"], ["updated_at", "2020-05-05 18:20:08.847422"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:08 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.35ms) +Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:20:08 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Alias unde quibusdam consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.873028"], ["updated_at", "2020-05-05 18:20:08.873028"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Vero repellendus nobis hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.875938"], ["updated_at", "2020-05-05 18:20:08.875938"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Cum unde eveniet aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.877491"], ["updated_at", "2020-05-05 18:20:08.877491"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Facilis distinctio harum aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.879518"], ["updated_at", "2020-05-05 18:20:08.879518"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odio"], ["description", "Autem vel ratione et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.881025"], ["updated_at", "2020-05-05 18:20:08.881025"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Ut rerum nihil laboriosam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.882340"], ["updated_at", "2020-05-05 18:20:08.882340"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maiores"], ["description", "Sed incidunt molestiae pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.883606"], ["updated_at", "2020-05-05 18:20:08.883606"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nobis"], ["description", "Provident consequatur reiciendis sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.884926"], ["updated_at", "2020-05-05 18:20:08.884926"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Veritatis libero ipsam labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.886178"], ["updated_at", "2020-05-05 18:20:08.886178"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consectetur"], ["description", "Sunt aut doloribus architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.887437"], ["updated_at", "2020-05-05 18:20:08.887437"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dara Wilderman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fNXLqKnbVyW2vTpTzlRNPeuG.2brA7FQkSEraaIcVqNtCqynyMGgS"], ["created_at", "2020-05-05 18:20:08.890695"], ["updated_at", "2020-05-05 18:20:08.890695"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:08 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (2.94ms) +Completed 200 OK in 7ms (Views: 4.4ms | ActiveRecord: 0.3ms | Allocations: 2845) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:20:08 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Optio nihil exercitationem dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.915735"], ["updated_at", "2020-05-05 18:20:08.915735"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Quod autem rerum aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.918746"], ["updated_at", "2020-05-05 18:20:08.918746"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nam"], ["description", "Adipisci ullam eaque ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.920194"], ["updated_at", "2020-05-05 18:20:08.920194"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "recusandae"], ["description", "Dignissimos voluptatem velit et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.921444"], ["updated_at", "2020-05-05 18:20:08.921444"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Consequatur corrupti ipsam aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.939238"], ["updated_at", "2020-05-05 18:20:08.939238"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magnam"], ["description", "Est cum et sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.941082"], ["updated_at", "2020-05-05 18:20:08.941082"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugiat"], ["description", "Et vero eos qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.942392"], ["updated_at", "2020-05-05 18:20:08.942392"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsam"], ["description", "Eligendi rem accusamus nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.943666"], ["updated_at", "2020-05-05 18:20:08.943666"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "explicabo"], ["description", "Illo quisquam dolorem veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.945372"], ["updated_at", "2020-05-05 18:20:08.945372"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Et ex consequatur totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:08.947038"], ["updated_at", "2020-05-05 18:20:08.947038"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gerald Mertz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/ani.qlutHLmXelQ2d0xmOQZcGL2HGN27KKjEcmnUO5aPIMRxhDna"], ["created_at", "2020-05-05 18:20:08.950134"], ["updated_at", "2020-05-05 18:20:08.950134"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:08 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.3ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:20:08 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:20:08.990754"], ["updated_at", "2020-05-05 18:20:08.990754"], ["created_by", "1"]] +  (0.2ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.51ms) +Completed 201 Created in 23ms (Views: 1.0ms | ActiveRecord: 1.3ms | Allocations: 6197) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quae"], ["description", "Magnam aut rerum soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.009223"], ["updated_at", "2020-05-05 18:20:09.009223"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquam"], ["description", "Veritatis ipsam possimus qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.013569"], ["updated_at", "2020-05-05 18:20:09.013569"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Non quo id sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.015598"], ["updated_at", "2020-05-05 18:20:09.015598"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Repellat impedit sunt qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.017086"], ["updated_at", "2020-05-05 18:20:09.017086"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eligendi"], ["description", "Assumenda mollitia nostrum quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.018409"], ["updated_at", "2020-05-05 18:20:09.018409"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempore"], ["description", "Exercitationem eligendi doloremque sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.019709"], ["updated_at", "2020-05-05 18:20:09.019709"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nam"], ["description", "Amet nihil repudiandae omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.020974"], ["updated_at", "2020-05-05 18:20:09.020974"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Magnam reiciendis et ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.022320"], ["updated_at", "2020-05-05 18:20:09.022320"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsum"], ["description", "Inventore voluptatem reprehenderit non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.023658"], ["updated_at", "2020-05-05 18:20:09.023658"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Nisi asperiores necessitatibus dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.024931"], ["updated_at", "2020-05-05 18:20:09.024931"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Antoine Hyatt"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5n13C/lEyxAV8kfvzxCkZuJduu6teDiHs/EvssGxC/DtE6x3FNwHe"], ["created_at", "2020-05-05 18:20:09.027668"], ["updated_at", "2020-05-05 18:20:09.027668"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.45ms) +Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms | Allocations: 2845) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:20:09 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:20:09.041243"], ["updated_at", "2020-05-05 18:20:09.041243"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.56ms) +Completed 201 Created in 6ms (Views: 1.2ms | ActiveRecord: 0.6ms | Allocations: 2251) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusantium"], ["description", "Qui eveniet recusandae quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.055257"], ["updated_at", "2020-05-05 18:20:09.055257"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Totam doloremque illo similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.058005"], ["updated_at", "2020-05-05 18:20:09.058005"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Omnis omnis cupiditate maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.059430"], ["updated_at", "2020-05-05 18:20:09.059430"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Fugiat praesentium in ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.060700"], ["updated_at", "2020-05-05 18:20:09.060700"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ducimus"], ["description", "Quos aut mollitia quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.062384"], ["updated_at", "2020-05-05 18:20:09.062384"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellendus"], ["description", "Et quos nobis modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.064798"], ["updated_at", "2020-05-05 18:20:09.064798"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "soluta"], ["description", "Natus qui fugiat porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.066189"], ["updated_at", "2020-05-05 18:20:09.066189"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "labore"], ["description", "Voluptas pariatur enim voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.067489"], ["updated_at", "2020-05-05 18:20:09.067489"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Qui minima voluptatum animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.068834"], ["updated_at", "2020-05-05 18:20:09.068834"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Qui rerum est quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.070707"], ["updated_at", "2020-05-05 18:20:09.070707"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Terrie Thompson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jnCL2rB26qFcsla7foxdkeNEt92xORnY8PnJjj/XhyFlysPB1VTBG"], ["created_at", "2020-05-05 18:20:09.074895"], ["updated_at", "2020-05-05 18:20:09.074895"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.08ms) +Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:20:09 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.1ms) +Completed 422 Unprocessable Entity in 7ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 4090) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Corporis suscipit officiis et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.103472"], ["updated_at", "2020-05-05 18:20:09.103472"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quibusdam"], ["description", "Perferendis sequi qui accusantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.106300"], ["updated_at", "2020-05-05 18:20:09.106300"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ab"], ["description", "Et natus autem recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.107719"], ["updated_at", "2020-05-05 18:20:09.107719"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aperiam"], ["description", "Nobis officia nihil laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.108998"], ["updated_at", "2020-05-05 18:20:09.108998"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "in"], ["description", "Et fugiat tempore temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.110662"], ["updated_at", "2020-05-05 18:20:09.110662"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quae"], ["description", "Beatae deleniti est quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.115755"], ["updated_at", "2020-05-05 18:20:09.115755"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "exercitationem"], ["description", "Qui dolorem aut magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.118306"], ["updated_at", "2020-05-05 18:20:09.118306"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Quia aliquam est iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.119854"], ["updated_at", "2020-05-05 18:20:09.119854"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Velit atque dolore corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.121170"], ["updated_at", "2020-05-05 18:20:09.121170"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Tempore sunt exercitationem qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.122512"], ["updated_at", "2020-05-05 18:20:09.122512"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miriam King"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hUJftZjsznlgp6KkpzfQ0OcY8B5nR8/ltqMRObAHVRjEp1D4XCEKm"], ["created_at", "2020-05-05 18:20:09.125067"], ["updated_at", "2020-05-05 18:20:09.125067"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.49ms) +Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.1ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:20:09 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 3697) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quaerat"], ["description", "Placeat pariatur ea molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.152511"], ["updated_at", "2020-05-05 18:20:09.152511"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Eius iusto temporibus occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.155659"], ["updated_at", "2020-05-05 18:20:09.155659"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "inventore"], ["description", "Qui aut maiores labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.157120"], ["updated_at", "2020-05-05 18:20:09.157120"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Ad voluptatem aliquam quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.158433"], ["updated_at", "2020-05-05 18:20:09.158433"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quas"], ["description", "Aliquam iure quia earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.159826"], ["updated_at", "2020-05-05 18:20:09.159826"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Dolorum neque autem dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.161160"], ["updated_at", "2020-05-05 18:20:09.161160"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Et corporis aut omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.162681"], ["updated_at", "2020-05-05 18:20:09.162681"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Corporis dicta assumenda quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.164531"], ["updated_at", "2020-05-05 18:20:09.164531"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "assumenda"], ["description", "Ut architecto necessitatibus illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.166028"], ["updated_at", "2020-05-05 18:20:09.166028"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nostrum"], ["description", "Nam et quis voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.167350"], ["updated_at", "2020-05-05 18:20:09.167350"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Maxwell Ritchie"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vAoczP2YuVxVb5Vw3yGJEOwp/prIxoYxxQogYHfQ35TrcmJ1eqU8C"], ["created_at", "2020-05-05 18:20:09.169925"], ["updated_at", "2020-05-05 18:20:09.169925"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.11ms) +Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:20:09 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.2ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:20:09.184085"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1090) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusamus"], ["description", "A aut perferendis et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.195958"], ["updated_at", "2020-05-05 18:20:09.195958"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempore"], ["description", "At est amet non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.199025"], ["updated_at", "2020-05-05 18:20:09.199025"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veniam"], ["description", "Consequatur ut itaque facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.200565"], ["updated_at", "2020-05-05 18:20:09.200565"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ullam"], ["description", "Praesentium vero tenetur earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.201861"], ["updated_at", "2020-05-05 18:20:09.201861"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugiat"], ["description", "Voluptatibus quia veritatis et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.203204"], ["updated_at", "2020-05-05 18:20:09.203204"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eaque"], ["description", "Corrupti sed soluta non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.204552"], ["updated_at", "2020-05-05 18:20:09.204552"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Sed ut aperiam placeat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.205840"], ["updated_at", "2020-05-05 18:20:09.205840"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quaerat"], ["description", "Sapiente saepe atque ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.207068"], ["updated_at", "2020-05-05 18:20:09.207068"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "delectus"], ["description", "Quam quia rerum maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.208338"], ["updated_at", "2020-05-05 18:20:09.208338"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsam"], ["description", "Impedit aut eum repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.209605"], ["updated_at", "2020-05-05 18:20:09.209605"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Isabella Kilback MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BX.eiqSaarN36h1MZAIPu.O9x.9/oByXCcUcS8U41vlrYkKsDc05S"], ["created_at", "2020-05-05 18:20:09.213458"], ["updated_at", "2020-05-05 18:20:09.213458"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.5ms) +Completed 200 OK in 7ms (Views: 5.1ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:20:09 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:20:09.226307"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 998) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Qui animi maiores consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.237692"], ["updated_at", "2020-05-05 18:20:09.237692"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "commodi"], ["description", "Laborum et eos illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.240351"], ["updated_at", "2020-05-05 18:20:09.240351"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ducimus"], ["description", "A et pariatur molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.241674"], ["updated_at", "2020-05-05 18:20:09.241674"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "soluta"], ["description", "Quo impedit et animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.243047"], ["updated_at", "2020-05-05 18:20:09.243047"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Error ut asperiores fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.244539"], ["updated_at", "2020-05-05 18:20:09.244539"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Placeat harum aperiam deleniti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.247160"], ["updated_at", "2020-05-05 18:20:09.247160"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Qui reiciendis autem esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.249334"], ["updated_at", "2020-05-05 18:20:09.249334"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dignissimos"], ["description", "Aut ducimus nisi in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.250943"], ["updated_at", "2020-05-05 18:20:09.250943"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Sit magnam ut rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.253449"], ["updated_at", "2020-05-05 18:20:09.253449"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempora"], ["description", "Quaerat nihil voluptatem et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:09.256504"], ["updated_at", "2020-05-05 18:20:09.256504"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kerry Johnston"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tDIrHl42KKlYbNnpGiQpp.rtJ8QA3M4cqDRQLT0F8h/wJwH6YaW0K"], ["created_at", "2020-05-05 18:20:09.259918"], ["updated_at", "2020-05-05 18:20:09.259918"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | Allocations: 2842) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:20:09 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.2ms) SAVEPOINT active_record_2 + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 4ms (ActiveRecord: 0.7ms | Allocations: 1221) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (6.0ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (116.9ms) DELETE FROM "meetings"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (138.5ms) DELETE FROM "user_meets"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (97.5ms) DELETE FROM "user_meetings"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (98.5ms) DELETE FROM "meets"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (87.6ms) DELETE FROM "conversations"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (98.3ms) DELETE FROM "messagems"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (73.5ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (4.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ora Huel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vArGWJJzDl2VumzWQ7Alj.pq424DVM2Q/ypXRACB4OpRhdfvGoOKC"], ["created_at", "2020-05-05 18:20:40.713055"], ["updated_at", "2020-05-05 18:20:40.713055"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Est debitis dolores facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:40.736167"], ["updated_at", "2020-05-05 18:20:40.736167"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit possimus mollitia expedita?"], ["description", "Explicabo amet inventore et."], ["date", "2020-05-06 18:20:40.771489"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.798316"], ["updated_at", "2020-05-05 18:20:40.798316"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur nesciunt aut numquam?"], ["description", "Dignissimos ullam ut explicabo."], ["date", "2020-05-06 18:20:40.800405"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.801450"], ["updated_at", "2020-05-05 18:20:40.801450"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti est provident odio?"], ["description", "Quos quas cupiditate nulla."], ["date", "2020-05-06 18:20:40.802719"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.803426"], ["updated_at", "2020-05-05 18:20:40.803426"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum dolores molestiae unde?"], ["description", "Eum in tempore et."], ["date", "2020-05-06 18:20:40.804675"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.805423"], ["updated_at", "2020-05-05 18:20:40.805423"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis eligendi qui fugit?"], ["description", "Sunt deleniti ipsa mollitia."], ["date", "2020-05-06 18:20:40.806699"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.807380"], ["updated_at", "2020-05-05 18:20:40.807380"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium temporibus ex inventore?"], ["description", "Et delectus iure quod."], ["date", "2020-05-06 18:20:40.808665"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.809433"], ["updated_at", "2020-05-05 18:20:40.809433"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi reiciendis omnis tempora?"], ["description", "Ipsa animi quod qui."], ["date", "2020-05-06 18:20:40.810774"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.811504"], ["updated_at", "2020-05-05 18:20:40.811504"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et illo veniam velit?"], ["description", "Repudiandae eligendi qui rerum."], ["date", "2020-05-06 18:20:40.812807"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.814716"], ["updated_at", "2020-05-05 18:20:40.814716"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque sit unde praesentium?"], ["description", "Eum sed repellat eaque."], ["date", "2020-05-06 18:20:40.816394"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.817472"], ["updated_at", "2020-05-05 18:20:40.817472"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil et animi beatae?"], ["description", "Nihil non inventore molestiae."], ["date", "2020-05-06 18:20:40.821996"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.823668"], ["updated_at", "2020-05-05 18:20:40.823668"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt voluptatum ipsa ullam?"], ["description", "Aliquid quo architecto voluptatem."], ["date", "2020-05-06 18:20:40.825523"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.826323"], ["updated_at", "2020-05-05 18:20:40.826323"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui quia doloremque quo?"], ["description", "Repellat rerum et deleniti."], ["date", "2020-05-06 18:20:40.827571"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.828266"], ["updated_at", "2020-05-05 18:20:40.828266"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo similique libero excepturi?"], ["description", "Corrupti adipisci at voluptatem."], ["date", "2020-05-06 18:20:40.829581"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.830310"], ["updated_at", "2020-05-05 18:20:40.830310"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error sit ducimus illo?"], ["description", "Possimus cumque accusamus rem."], ["date", "2020-05-06 18:20:40.831685"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.832393"], ["updated_at", "2020-05-05 18:20:40.832393"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe id assumenda iusto?"], ["description", "Voluptas tempora qui est."], ["date", "2020-05-06 18:20:40.833709"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.834563"], ["updated_at", "2020-05-05 18:20:40.834563"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni quo repudiandae tempore?"], ["description", "Aperiam ut optio atque."], ["date", "2020-05-06 18:20:40.836035"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.836942"], ["updated_at", "2020-05-05 18:20:40.836942"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat inventore autem deleniti?"], ["description", "Doloribus eum est et."], ["date", "2020-05-06 18:20:40.838335"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.839345"], ["updated_at", "2020-05-05 18:20:40.839345"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem et nihil qui?"], ["description", "Nisi voluptates nihil corrupti."], ["date", "2020-05-06 18:20:40.841082"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.841963"], ["updated_at", "2020-05-05 18:20:40.841963"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora itaque a ipsum?"], ["description", "Iste aut ex cumque."], ["date", "2020-05-06 18:20:40.843113"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.843790"], ["updated_at", "2020-05-05 18:20:40.843790"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt modi quidem ut?"], ["description", "Laborum deleniti excepturi ullam."], ["date", "2020-05-06 18:20:40.845278"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.846492"], ["updated_at", "2020-05-05 18:20:40.846492"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:20:40 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.76ms) +Completed 200 OK in 35ms (Views: 16.1ms | ActiveRecord: 0.5ms | Allocations: 8639) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rodger Brown"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2oSO5EV197yCCaEBWWHC2eZ2B3GjLalO/bdpWncvjXPVFx/JYYXY6"], ["created_at", "2020-05-05 18:20:40.932821"], ["updated_at", "2020-05-05 18:20:40.932821"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nesciunt"], ["description", "Cumque quos facere quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:40.936757"], ["updated_at", "2020-05-05 18:20:40.936757"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis et corporis sed?"], ["description", "Eum cumque necessitatibus voluptate."], ["date", "2020-05-06 18:20:40.938377"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.939757"], ["updated_at", "2020-05-05 18:20:40.939757"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora id quia magni?"], ["description", "Culpa optio consequatur suscipit."], ["date", "2020-05-06 18:20:40.941923"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.943020"], ["updated_at", "2020-05-05 18:20:40.943020"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad ex quasi corporis?"], ["description", "Et nesciunt vel perferendis."], ["date", "2020-05-06 18:20:40.945427"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.946638"], ["updated_at", "2020-05-05 18:20:40.946638"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est voluptas hic omnis?"], ["description", "Veritatis nostrum ad repudiandae."], ["date", "2020-05-06 18:20:40.948066"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.948834"], ["updated_at", "2020-05-05 18:20:40.948834"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum soluta assumenda inventore?"], ["description", "Deleniti laudantium necessitatibus voluptatibus."], ["date", "2020-05-06 18:20:40.950058"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.950765"], ["updated_at", "2020-05-05 18:20:40.950765"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia quia impedit est?"], ["description", "Sed rerum et adipisci."], ["date", "2020-05-06 18:20:40.952017"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.952703"], ["updated_at", "2020-05-05 18:20:40.952703"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed quis quae rerum?"], ["description", "Odit animi pariatur alias."], ["date", "2020-05-06 18:20:40.954127"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.954956"], ["updated_at", "2020-05-05 18:20:40.954956"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio et nisi commodi?"], ["description", "Rerum quaerat alias voluptatibus."], ["date", "2020-05-06 18:20:40.956248"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.957010"], ["updated_at", "2020-05-05 18:20:40.957010"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et dolorem enim quisquam?"], ["description", "Reiciendis illo delectus est."], ["date", "2020-05-06 18:20:40.958246"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.959039"], ["updated_at", "2020-05-05 18:20:40.959039"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel itaque unde necessitatibus?"], ["description", "Quis omnis placeat atque."], ["date", "2020-05-06 18:20:40.961691"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.962743"], ["updated_at", "2020-05-05 18:20:40.962743"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem modi commodi tempore?"], ["description", "Beatae magni aliquam sequi."], ["date", "2020-05-06 18:20:40.964732"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.965668"], ["updated_at", "2020-05-05 18:20:40.965668"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam suscipit temporibus aliquam?"], ["description", "Sed commodi quasi voluptas."], ["date", "2020-05-06 18:20:40.966904"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.967609"], ["updated_at", "2020-05-05 18:20:40.967609"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit provident dolores labore?"], ["description", "Corrupti sit dolor distinctio."], ["date", "2020-05-06 18:20:40.968784"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.969493"], ["updated_at", "2020-05-05 18:20:40.969493"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed odit non dolor?"], ["description", "Incidunt et facere dolor."], ["date", "2020-05-06 18:20:40.970668"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.971388"], ["updated_at", "2020-05-05 18:20:40.971388"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi eaque distinctio ut?"], ["description", "Qui accusantium tempore facilis."], ["date", "2020-05-06 18:20:40.972565"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.973475"], ["updated_at", "2020-05-05 18:20:40.973475"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis necessitatibus omnis beatae?"], ["description", "Voluptatem occaecati molestiae cum."], ["date", "2020-05-06 18:20:40.974731"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.975457"], ["updated_at", "2020-05-05 18:20:40.975457"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum accusamus voluptatum animi?"], ["description", "Asperiores hic earum vel."], ["date", "2020-05-06 18:20:40.976621"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.977303"], ["updated_at", "2020-05-05 18:20:40.977303"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos aut a non?"], ["description", "Repellat quos aut optio."], ["date", "2020-05-06 18:20:40.978515"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.979504"], ["updated_at", "2020-05-05 18:20:40.979504"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem nemo in ut?"], ["description", "Recusandae blanditiis doloremque quasi."], ["date", "2020-05-06 18:20:40.982119"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.983145"], ["updated_at", "2020-05-05 18:20:40.983145"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste totam ab quibusdam?"], ["description", "Quas dolorem iste dolorem."], ["date", "2020-05-06 18:20:40.984573"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:40.985307"], ["updated_at", "2020-05-05 18:20:40.985307"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:20:40 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (7.88ms) +Completed 200 OK in 11ms (Views: 9.6ms | ActiveRecord: 0.2ms | Allocations: 5516) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Richelle Goodwin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BBg9rk6xg9inm6OfBPzyOOrqKYEH2vQ3iXUfn1FJ.y8X98jXSA6cm"], ["created_at", "2020-05-05 18:20:41.013831"], ["updated_at", "2020-05-05 18:20:41.013831"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "assumenda"], ["description", "Ea pariatur et doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.017694"], ["updated_at", "2020-05-05 18:20:41.017694"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam ut minus soluta?"], ["description", "Illo non neque earum."], ["date", "2020-05-06 18:20:41.019552"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.021013"], ["updated_at", "2020-05-05 18:20:41.021013"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias ut voluptatum ex?"], ["description", "Distinctio dolores commodi ratione."], ["date", "2020-05-06 18:20:41.022765"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.024109"], ["updated_at", "2020-05-05 18:20:41.024109"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus qui laudantium quasi?"], ["description", "Natus dicta quae aut."], ["date", "2020-05-06 18:20:41.026036"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.026942"], ["updated_at", "2020-05-05 18:20:41.026942"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At omnis et tempore?"], ["description", "Nihil molestiae est reprehenderit."], ["date", "2020-05-06 18:20:41.028119"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.028814"], ["updated_at", "2020-05-05 18:20:41.028814"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo culpa qui consequatur?"], ["description", "Eum occaecati accusamus vitae."], ["date", "2020-05-06 18:20:41.030389"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.031490"], ["updated_at", "2020-05-05 18:20:41.031490"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id itaque nostrum laborum?"], ["description", "Molestiae deserunt debitis voluptatem."], ["date", "2020-05-06 18:20:41.032898"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.033703"], ["updated_at", "2020-05-05 18:20:41.033703"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut earum nobis et?"], ["description", "Doloremque autem at mollitia."], ["date", "2020-05-06 18:20:41.034987"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.035699"], ["updated_at", "2020-05-05 18:20:41.035699"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed facere sequi aliquid?"], ["description", "Optio ut voluptatem sequi."], ["date", "2020-05-06 18:20:41.036840"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.037541"], ["updated_at", "2020-05-05 18:20:41.037541"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur assumenda veritatis voluptate?"], ["description", "Architecto porro ut nobis."], ["date", "2020-05-06 18:20:41.038674"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.039414"], ["updated_at", "2020-05-05 18:20:41.039414"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea quibusdam amet modi?"], ["description", "Doloribus nesciunt eaque voluptatem."], ["date", "2020-05-06 18:20:41.042152"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.043254"], ["updated_at", "2020-05-05 18:20:41.043254"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem et esse cupiditate?"], ["description", "Quae voluptatem corporis id."], ["date", "2020-05-06 18:20:41.044805"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.046631"], ["updated_at", "2020-05-05 18:20:41.046631"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et inventore quo repellat?"], ["description", "Facilis quae laudantium doloribus."], ["date", "2020-05-06 18:20:41.048147"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.049032"], ["updated_at", "2020-05-05 18:20:41.049032"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui facilis fuga voluptas?"], ["description", "Ex quos assumenda labore."], ["date", "2020-05-06 18:20:41.050355"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.051109"], ["updated_at", "2020-05-05 18:20:41.051109"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt quisquam iste dolores?"], ["description", "Nobis voluptatem numquam deleniti."], ["date", "2020-05-06 18:20:41.052405"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.053168"], ["updated_at", "2020-05-05 18:20:41.053168"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae dolorem quisquam dolorem?"], ["description", "Corporis fugiat culpa perspiciatis."], ["date", "2020-05-06 18:20:41.054595"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.055506"], ["updated_at", "2020-05-05 18:20:41.055506"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores est architecto iste?"], ["description", "Eaque dolorum et voluptas."], ["date", "2020-05-06 18:20:41.056774"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.057503"], ["updated_at", "2020-05-05 18:20:41.057503"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui animi voluptas soluta?"], ["description", "Ipsa dignissimos perspiciatis molestias."], ["date", "2020-05-06 18:20:41.058800"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.059721"], ["updated_at", "2020-05-05 18:20:41.059721"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque ea nobis non?"], ["description", "Dolor ea laboriosam tempora."], ["date", "2020-05-06 18:20:41.061692"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.062696"], ["updated_at", "2020-05-05 18:20:41.062696"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias laudantium provident vitae?"], ["description", "Aut maxime similique nobis."], ["date", "2020-05-06 18:20:41.064192"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.065000"], ["updated_at", "2020-05-05 18:20:41.065000"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptate cum asperiores vel?"], ["description", "Odit esse fugiat dolor."], ["date", "2020-05-06 18:20:41.066288"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.067061"], ["updated_at", "2020-05-05 18:20:41.067061"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:20:41 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 404 Not Found in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms | Allocations: 865) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Pauletta Krajcik"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$i5jyG9ylD0bMnqHPWL6ZpOUjFC0qc2lHo2hZNdbX0kd23qMW4vbdW"], ["created_at", "2020-05-05 18:20:41.087555"], ["updated_at", "2020-05-05 18:20:41.087555"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Blanditiis atque dolores necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.091504"], ["updated_at", "2020-05-05 18:20:41.091504"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi esse nihil expedita?"], ["description", "Repellat delectus eligendi magnam."], ["date", "2020-05-06 18:20:41.093182"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.094361"], ["updated_at", "2020-05-05 18:20:41.094361"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Unde harum est quia?"], ["description", "Illo sint cumque voluptas."], ["date", "2020-05-06 18:20:41.096125"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.097608"], ["updated_at", "2020-05-05 18:20:41.097608"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime praesentium aspernatur magni?"], ["description", "Rerum fugit vel consequatur."], ["date", "2020-05-06 18:20:41.099083"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.100005"], ["updated_at", "2020-05-05 18:20:41.100005"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium aperiam odit quia?"], ["description", "Aut eos molestiae repellat."], ["date", "2020-05-06 18:20:41.102264"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.103601"], ["updated_at", "2020-05-05 18:20:41.103601"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam cupiditate ratione eligendi?"], ["description", "Praesentium alias quam eos."], ["date", "2020-05-06 18:20:41.105946"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.106870"], ["updated_at", "2020-05-05 18:20:41.106870"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque qui mollitia esse?"], ["description", "Eum suscipit voluptate similique."], ["date", "2020-05-06 18:20:41.108028"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.108726"], ["updated_at", "2020-05-05 18:20:41.108726"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum id ut laboriosam?"], ["description", "Consequatur autem numquam molestias."], ["date", "2020-05-06 18:20:41.109905"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.110614"], ["updated_at", "2020-05-05 18:20:41.110614"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit at voluptatum consectetur?"], ["description", "Ut quidem nesciunt et."], ["date", "2020-05-06 18:20:41.112043"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.113324"], ["updated_at", "2020-05-05 18:20:41.113324"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro enim illo vel?"], ["description", "Nesciunt occaecati blanditiis voluptatem."], ["date", "2020-05-06 18:20:41.114786"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.115746"], ["updated_at", "2020-05-05 18:20:41.115746"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel labore alias incidunt?"], ["description", "Blanditiis et repellendus esse."], ["date", "2020-05-06 18:20:41.117835"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.118736"], ["updated_at", "2020-05-05 18:20:41.118736"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui delectus consequuntur eum?"], ["description", "Provident sint incidunt unde."], ["date", "2020-05-06 18:20:41.120102"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.121252"], ["updated_at", "2020-05-05 18:20:41.121252"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias dolores voluptatibus repellat?"], ["description", "Quod fuga provident ea."], ["date", "2020-05-06 18:20:41.122988"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.123879"], ["updated_at", "2020-05-05 18:20:41.123879"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi sapiente similique reprehenderit?"], ["description", "Dolores accusamus saepe eveniet."], ["date", "2020-05-06 18:20:41.125134"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.125867"], ["updated_at", "2020-05-05 18:20:41.125867"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi qui odit fugit?"], ["description", "Amet accusamus officia et."], ["date", "2020-05-06 18:20:41.127161"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.127861"], ["updated_at", "2020-05-05 18:20:41.127861"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste quod voluptatem vero?"], ["description", "Eum exercitationem dicta ut."], ["date", "2020-05-06 18:20:41.129952"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.131043"], ["updated_at", "2020-05-05 18:20:41.131043"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minus non aut ut?"], ["description", "In quia error labore."], ["date", "2020-05-06 18:20:41.132513"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.133262"], ["updated_at", "2020-05-05 18:20:41.133262"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Delectus voluptatem incidunt iste?"], ["description", "Rerum quasi et laboriosam."], ["date", "2020-05-06 18:20:41.134502"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.135226"], ["updated_at", "2020-05-05 18:20:41.135226"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos et aut eum?"], ["description", "Soluta sed consequatur ut."], ["date", "2020-05-06 18:20:41.136494"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.137228"], ["updated_at", "2020-05-05 18:20:41.137228"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi dolorum ut in?"], ["description", "Numquam blanditiis fugit occaecati."], ["date", "2020-05-06 18:20:41.138473"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.139160"], ["updated_at", "2020-05-05 18:20:41.139160"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae dicta iure sit?"], ["description", "Et et odit voluptas."], ["date", "2020-05-06 18:20:41.140435"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.141917"], ["updated_at", "2020-05-05 18:20:41.141917"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:20:41 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 509) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (28.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tomas Osinski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fT03KtTOBkjlOo1erYlMeeMP.Zo32mO9PyAw4qZvMFYiuKn/B0wqq"], ["created_at", "2020-05-05 18:20:41.183730"], ["updated_at", "2020-05-05 18:20:41.183730"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Quis voluptatem veritatis nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.187550"], ["updated_at", "2020-05-05 18:20:41.187550"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis ut ipsa amet?"], ["description", "Fugit quaerat fuga laboriosam."], ["date", "2020-05-06 18:20:41.189185"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.190177"], ["updated_at", "2020-05-05 18:20:41.190177"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius dolores possimus id?"], ["description", "Qui odio dolore provident."], ["date", "2020-05-06 18:20:41.191652"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.192538"], ["updated_at", "2020-05-05 18:20:41.192538"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis omnis autem corrupti?"], ["description", "Ut itaque maiores ea."], ["date", "2020-05-06 18:20:41.194028"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.195351"], ["updated_at", "2020-05-05 18:20:41.195351"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi quo animi accusamus?"], ["description", "Vitae reiciendis consequatur perspiciatis."], ["date", "2020-05-06 18:20:41.196854"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.197707"], ["updated_at", "2020-05-05 18:20:41.197707"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos in iusto officiis?"], ["description", "In sed molestias distinctio."], ["date", "2020-05-06 18:20:41.198831"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.199538"], ["updated_at", "2020-05-05 18:20:41.199538"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae quasi et repellat?"], ["description", "Modi quis quo inventore."], ["date", "2020-05-06 18:20:41.200853"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.202481"], ["updated_at", "2020-05-05 18:20:41.202481"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias porro iste omnis?"], ["description", "Placeat nisi quasi iusto."], ["date", "2020-05-06 18:20:41.204380"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.205890"], ["updated_at", "2020-05-05 18:20:41.205890"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae quo est repellendus?"], ["description", "Aut ipsum dolores at."], ["date", "2020-05-06 18:20:41.207384"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.208115"], ["updated_at", "2020-05-05 18:20:41.208115"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit autem quis nam?"], ["description", "Dolor aspernatur architecto vero."], ["date", "2020-05-06 18:20:41.209303"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.210005"], ["updated_at", "2020-05-05 18:20:41.210005"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi quas qui ut?"], ["description", "Voluptas architecto tempore a."], ["date", "2020-05-06 18:20:41.212528"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.213625"], ["updated_at", "2020-05-05 18:20:41.213625"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta provident consequatur eos?"], ["description", "Voluptatum rerum quia autem."], ["date", "2020-05-06 18:20:41.215162"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.215978"], ["updated_at", "2020-05-05 18:20:41.215978"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum provident est eum?"], ["description", "Aut consectetur facere aliquid."], ["date", "2020-05-06 18:20:41.217180"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.217896"], ["updated_at", "2020-05-05 18:20:41.217896"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id quibusdam asperiores sapiente?"], ["description", "Et necessitatibus et ut."], ["date", "2020-05-06 18:20:41.219050"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.219769"], ["updated_at", "2020-05-05 18:20:41.219769"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos accusantium est sequi?"], ["description", "Impedit cum quidem eius."], ["date", "2020-05-06 18:20:41.221224"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.222558"], ["updated_at", "2020-05-05 18:20:41.222558"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo quae aut accusantium?"], ["description", "Dolorem illo ea inventore."], ["date", "2020-05-06 18:20:41.224139"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.224994"], ["updated_at", "2020-05-05 18:20:41.224994"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam numquam eos ullam?"], ["description", "Unde nisi laborum non."], ["date", "2020-05-06 18:20:41.226179"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.226879"], ["updated_at", "2020-05-05 18:20:41.226879"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere suscipit ut sit?"], ["description", "Nam eaque non numquam."], ["date", "2020-05-06 18:20:41.228038"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.228762"], ["updated_at", "2020-05-05 18:20:41.228762"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint nemo ut in?"], ["description", "Quis ipsum earum dolorem."], ["date", "2020-05-06 18:20:41.230578"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.231566"], ["updated_at", "2020-05-05 18:20:41.231566"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia porro necessitatibus nesciunt?"], ["description", "Ut omnis nisi quas."], ["date", "2020-05-06 18:20:41.232957"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.233714"], ["updated_at", "2020-05-05 18:20:41.233714"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae quam asperiores officia?"], ["description", "Assumenda esse maxime nulla."], ["date", "2020-05-06 18:20:41.234811"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.235517"], ["updated_at", "2020-05-05 18:20:41.235517"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:20:41 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.72ms) +Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.3ms | Allocations: 1085) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rochelle Armstrong"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$zy3VpGUmO.2vTdAt1HOXzOXr7oDXgyF3tFTUK470y/7ZyKMrQlOK2"], ["created_at", "2020-05-05 18:20:41.252949"], ["updated_at", "2020-05-05 18:20:41.252949"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "porro"], ["description", "Omnis est aspernatur temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.256018"], ["updated_at", "2020-05-05 18:20:41.256018"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus odit adipisci atque?"], ["description", "Qui est nostrum animi."], ["date", "2020-05-06 18:20:41.257591"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.258568"], ["updated_at", "2020-05-05 18:20:41.258568"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi quae consequatur maxime?"], ["description", "Veniam pariatur alias ratione."], ["date", "2020-05-06 18:20:41.259891"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.260853"], ["updated_at", "2020-05-05 18:20:41.260853"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi fugiat velit enim?"], ["description", "Qui eum et non."], ["date", "2020-05-06 18:20:41.263970"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.265533"], ["updated_at", "2020-05-05 18:20:41.265533"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid quo aspernatur ut?"], ["description", "Et labore aliquam id."], ["date", "2020-05-06 18:20:41.267265"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.268108"], ["updated_at", "2020-05-05 18:20:41.268108"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est eaque rerum provident?"], ["description", "Voluptas dolores dolores natus."], ["date", "2020-05-06 18:20:41.269346"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.270066"], ["updated_at", "2020-05-05 18:20:41.270066"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Unde placeat sint sequi?"], ["description", "Libero quis eaque facilis."], ["date", "2020-05-06 18:20:41.271285"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.272004"], ["updated_at", "2020-05-05 18:20:41.272004"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut sapiente iure quasi?"], ["description", "Delectus ipsa esse consequatur."], ["date", "2020-05-06 18:20:41.273315"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.274280"], ["updated_at", "2020-05-05 18:20:41.274280"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit dolores eligendi ut?"], ["description", "Quaerat dolor ut nobis."], ["date", "2020-05-06 18:20:41.275610"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.276640"], ["updated_at", "2020-05-05 18:20:41.276640"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Hic ut aut magni?"], ["description", "Omnis voluptas hic aut."], ["date", "2020-05-06 18:20:41.278031"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.279397"], ["updated_at", "2020-05-05 18:20:41.279397"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut ab animi illo?"], ["description", "Tenetur incidunt consequatur molestiae."], ["date", "2020-05-06 18:20:41.284073"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.285566"], ["updated_at", "2020-05-05 18:20:41.285566"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim quidem est ipsa?"], ["description", "Aut voluptatem cupiditate quos."], ["date", "2020-05-06 18:20:41.287461"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.288846"], ["updated_at", "2020-05-05 18:20:41.288846"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi praesentium autem cum?"], ["description", "Nihil doloremque illum ut."], ["date", "2020-05-06 18:20:41.290746"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.291774"], ["updated_at", "2020-05-05 18:20:41.291774"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore qui eos iste?"], ["description", "Tenetur dolorem porro atque."], ["date", "2020-05-06 18:20:41.293347"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.294325"], ["updated_at", "2020-05-05 18:20:41.294325"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia qui illo minima?"], ["description", "Quidem et nisi sunt."], ["date", "2020-05-06 18:20:41.295806"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.296751"], ["updated_at", "2020-05-05 18:20:41.296751"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui quisquam unde non?"], ["description", "Nihil at omnis consequatur."], ["date", "2020-05-06 18:20:41.298183"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.298968"], ["updated_at", "2020-05-05 18:20:41.298968"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut modi voluptatum sunt?"], ["description", "Possimus non ad voluptatem."], ["date", "2020-05-06 18:20:41.300275"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.301679"], ["updated_at", "2020-05-05 18:20:41.301679"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias ex in delectus?"], ["description", "Quae tempore deserunt a."], ["date", "2020-05-06 18:20:41.303807"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.304824"], ["updated_at", "2020-05-05 18:20:41.304824"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae qui amet fugiat?"], ["description", "Quos mollitia soluta reiciendis."], ["date", "2020-05-06 18:20:41.306221"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.307050"], ["updated_at", "2020-05-05 18:20:41.307050"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas sapiente sint sunt?"], ["description", "Voluptate fugiat quo esse."], ["date", "2020-05-06 18:20:41.308369"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.309233"], ["updated_at", "2020-05-05 18:20:41.309233"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum eum quia et?"], ["description", "Id mollitia qui tempora."], ["date", "2020-05-06 18:20:41.310543"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.311388"], ["updated_at", "2020-05-05 18:20:41.311388"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:20:41 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.8ms) +Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.2ms | Allocations: 1057) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Elmo Mayert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XH.uxE2ySYR8/4BExsfC.OM7y7cpfuRn2fbVRKN6XuKX3HpyrVUWm"], ["created_at", "2020-05-05 18:20:41.352906"], ["updated_at", "2020-05-05 18:20:41.352906"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Et commodi exercitationem qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.356169"], ["updated_at", "2020-05-05 18:20:41.356169"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem id aut saepe?"], ["description", "Dolorem voluptatem consequatur aperiam."], ["date", "2020-05-06 18:20:41.357675"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.358623"], ["updated_at", "2020-05-05 18:20:41.358623"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque ipsum consequatur at?"], ["description", "Quibusdam officia accusamus architecto."], ["date", "2020-05-06 18:20:41.359908"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.360760"], ["updated_at", "2020-05-05 18:20:41.360760"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique impedit velit veritatis?"], ["description", "Voluptate quam numquam impedit."], ["date", "2020-05-06 18:20:41.364599"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.366295"], ["updated_at", "2020-05-05 18:20:41.366295"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis vitae voluptatem ratione?"], ["description", "Fuga quae rerum aut."], ["date", "2020-05-06 18:20:41.368274"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.369646"], ["updated_at", "2020-05-05 18:20:41.369646"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae nihil et eligendi?"], ["description", "Omnis sit maiores eligendi."], ["date", "2020-05-06 18:20:41.371482"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.373025"], ["updated_at", "2020-05-05 18:20:41.373025"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et deleniti illo voluptatem?"], ["description", "Deserunt iure autem tempore."], ["date", "2020-05-06 18:20:41.375238"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.376238"], ["updated_at", "2020-05-05 18:20:41.376238"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis nesciunt quo ea?"], ["description", "Corrupti incidunt vitae a."], ["date", "2020-05-06 18:20:41.377554"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.378239"], ["updated_at", "2020-05-05 18:20:41.378239"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit rerum temporibus autem?"], ["description", "Repellendus est debitis nostrum."], ["date", "2020-05-06 18:20:41.379725"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.380950"], ["updated_at", "2020-05-05 18:20:41.380950"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis vel dolorem repellendus?"], ["description", "Et sequi aliquid quam."], ["date", "2020-05-06 18:20:41.383537"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.385010"], ["updated_at", "2020-05-05 18:20:41.385010"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam assumenda esse vitae?"], ["description", "Ut iusto eius temporibus."], ["date", "2020-05-06 18:20:41.387110"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.388137"], ["updated_at", "2020-05-05 18:20:41.388137"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias ratione earum pariatur?"], ["description", "Qui culpa commodi quod."], ["date", "2020-05-06 18:20:41.389488"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.390227"], ["updated_at", "2020-05-05 18:20:41.390227"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At ipsum voluptas praesentium?"], ["description", "Provident magnam tempore et."], ["date", "2020-05-06 18:20:41.391455"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.392165"], ["updated_at", "2020-05-05 18:20:41.392165"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui suscipit tempora dolorum?"], ["description", "Qui voluptate animi magnam."], ["date", "2020-05-06 18:20:41.393370"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.394117"], ["updated_at", "2020-05-05 18:20:41.394117"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident rem quae voluptatem?"], ["description", "Quaerat ipsum dignissimos voluptatibus."], ["date", "2020-05-06 18:20:41.395618"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.396882"], ["updated_at", "2020-05-05 18:20:41.396882"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem praesentium id fugiat?"], ["description", "Et aperiam possimus voluptas."], ["date", "2020-05-06 18:20:41.398347"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.399099"], ["updated_at", "2020-05-05 18:20:41.399099"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea iure quibusdam quia?"], ["description", "Perferendis reiciendis voluptas suscipit."], ["date", "2020-05-06 18:20:41.400331"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.401107"], ["updated_at", "2020-05-05 18:20:41.401107"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam facere fugiat architecto?"], ["description", "Minima non quos et."], ["date", "2020-05-06 18:20:41.403062"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.405085"], ["updated_at", "2020-05-05 18:20:41.405085"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus a dolores eum?"], ["description", "Debitis rerum consequatur iusto."], ["date", "2020-05-06 18:20:41.406783"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.407747"], ["updated_at", "2020-05-05 18:20:41.407747"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti nulla a voluptates?"], ["description", "Numquam sit aut laboriosam."], ["date", "2020-05-06 18:20:41.408988"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.409720"], ["updated_at", "2020-05-05 18:20:41.409720"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui non et dolores?"], ["description", "Porro dolor qui ad."], ["date", "2020-05-06 18:20:41.410955"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.411822"], ["updated_at", "2020-05-05 18:20:41.411822"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:20:41 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 884) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (26.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nickole Williamson DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8C56jJGuLFvqEW6IqpgAfu8saRaCegL4DR5ZuzCu2uI0rhsT0UmgS"], ["created_at", "2020-05-05 18:20:41.461602"], ["updated_at", "2020-05-05 18:20:41.461602"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequuntur"], ["description", "Blanditiis quo nihil quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.467029"], ["updated_at", "2020-05-05 18:20:41.467029"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil amet quo fuga?"], ["description", "Voluptate nulla provident tenetur."], ["date", "2020-05-06 18:20:41.468776"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.469762"], ["updated_at", "2020-05-05 18:20:41.469762"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore excepturi modi qui?"], ["description", "Enim deserunt architecto quia."], ["date", "2020-05-06 18:20:41.471073"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.471803"], ["updated_at", "2020-05-05 18:20:41.471803"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias nesciunt sequi suscipit?"], ["description", "Aspernatur voluptas sequi qui."], ["date", "2020-05-06 18:20:41.472904"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.473677"], ["updated_at", "2020-05-05 18:20:41.473677"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis enim non dolore?"], ["description", "Perferendis et aspernatur voluptas."], ["date", "2020-05-06 18:20:41.474976"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.475717"], ["updated_at", "2020-05-05 18:20:41.475717"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad harum et iusto?"], ["description", "Enim et reprehenderit labore."], ["date", "2020-05-06 18:20:41.476964"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.477652"], ["updated_at", "2020-05-05 18:20:41.477652"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima et impedit commodi?"], ["description", "In iste aut ab."], ["date", "2020-05-06 18:20:41.478813"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.480021"], ["updated_at", "2020-05-05 18:20:41.480021"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et esse nemo voluptate?"], ["description", "Quae aspernatur quia non."], ["date", "2020-05-06 18:20:41.482166"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.485805"], ["updated_at", "2020-05-05 18:20:41.485805"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et odio inventore accusamus?"], ["description", "Amet ut a blanditiis."], ["date", "2020-05-06 18:20:41.488069"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.489799"], ["updated_at", "2020-05-05 18:20:41.489799"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error molestias delectus doloribus?"], ["description", "Architecto dolorem libero molestiae."], ["date", "2020-05-06 18:20:41.491333"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.492159"], ["updated_at", "2020-05-05 18:20:41.492159"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores perspiciatis ipsum voluptatem?"], ["description", "Ipsa omnis sint vitae."], ["date", "2020-05-06 18:20:41.494169"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.495092"], ["updated_at", "2020-05-05 18:20:41.495092"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor aut ducimus est?"], ["description", "Est velit quia perferendis."], ["date", "2020-05-06 18:20:41.496387"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.497090"], ["updated_at", "2020-05-05 18:20:41.497090"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem molestiae natus libero?"], ["description", "Quae sed officia dolorem."], ["date", "2020-05-06 18:20:41.498222"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.498968"], ["updated_at", "2020-05-05 18:20:41.498968"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis voluptas saepe beatae?"], ["description", "Aut ea consectetur animi."], ["date", "2020-05-06 18:20:41.500140"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.500857"], ["updated_at", "2020-05-05 18:20:41.500857"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est ut qui repudiandae?"], ["description", "Quis exercitationem possimus omnis."], ["date", "2020-05-06 18:20:41.502106"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.504247"], ["updated_at", "2020-05-05 18:20:41.504247"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam ipsum dolor perferendis?"], ["description", "Excepturi culpa a error."], ["date", "2020-05-06 18:20:41.506496"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.507454"], ["updated_at", "2020-05-05 18:20:41.507454"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis rerum eaque ut?"], ["description", "Perferendis at nam laudantium."], ["date", "2020-05-06 18:20:41.508766"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.509477"], ["updated_at", "2020-05-05 18:20:41.509477"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis a delectus modi?"], ["description", "Molestiae eum voluptatem omnis."], ["date", "2020-05-06 18:20:41.510713"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.511431"], ["updated_at", "2020-05-05 18:20:41.511431"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate quae sunt molestias?"], ["description", "Sit mollitia sed eligendi."], ["date", "2020-05-06 18:20:41.513221"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.514412"], ["updated_at", "2020-05-05 18:20:41.514412"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam et sit magni?"], ["description", "Qui sunt explicabo repellat."], ["date", "2020-05-06 18:20:41.515985"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.516771"], ["updated_at", "2020-05-05 18:20:41.516771"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum voluptas ipsum distinctio?"], ["description", "Blanditiis quisquam facilis qui."], ["date", "2020-05-06 18:20:41.518088"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.518839"], ["updated_at", "2020-05-05 18:20:41.518839"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:20:41 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.1ms) +Completed 404 Not Found in 3ms (Views: 0.8ms | ActiveRecord: 0.2ms | Allocations: 867) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jere Zboncak"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KyYr8WDLaCoEsOVdUhhVl.1veB7EVM925lr1fqHbGtsIS5qVnwrK."], ["created_at", "2020-05-05 18:20:41.536589"], ["updated_at", "2020-05-05 18:20:41.536589"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "architecto"], ["description", "A corrupti ea et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.540221"], ["updated_at", "2020-05-05 18:20:41.540221"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit eos culpa quo?"], ["description", "Unde natus temporibus consequatur."], ["date", "2020-05-06 18:20:41.541863"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.543048"], ["updated_at", "2020-05-05 18:20:41.543048"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis voluptatum quod impedit?"], ["description", "Culpa reiciendis dolorem maiores."], ["date", "2020-05-06 18:20:41.545645"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.547276"], ["updated_at", "2020-05-05 18:20:41.547276"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero aperiam maxime nam?"], ["description", "Minus nam minima eos."], ["date", "2020-05-06 18:20:41.549279"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.550187"], ["updated_at", "2020-05-05 18:20:41.550187"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum consequatur quasi rerum?"], ["description", "Autem est suscipit recusandae."], ["date", "2020-05-06 18:20:41.551480"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.552211"], ["updated_at", "2020-05-05 18:20:41.552211"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quia cupiditate totam?"], ["description", "Dignissimos rem quae in."], ["date", "2020-05-06 18:20:41.553457"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.554188"], ["updated_at", "2020-05-05 18:20:41.554188"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum reprehenderit placeat molestiae?"], ["description", "Repellat ea voluptatem quod."], ["date", "2020-05-06 18:20:41.555484"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.556203"], ["updated_at", "2020-05-05 18:20:41.556203"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore ex minima et?"], ["description", "Ad esse fugiat voluptas."], ["date", "2020-05-06 18:20:41.557506"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.558216"], ["updated_at", "2020-05-05 18:20:41.558216"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae libero minima hic?"], ["description", "Neque soluta accusantium animi."], ["date", "2020-05-06 18:20:41.559375"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.560111"], ["updated_at", "2020-05-05 18:20:41.560111"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit ut labore quae?"], ["description", "Et sit iusto omnis."], ["date", "2020-05-06 18:20:41.561620"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.563056"], ["updated_at", "2020-05-05 18:20:41.563056"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non repellat quo minima?"], ["description", "Aut beatae nisi necessitatibus."], ["date", "2020-05-06 18:20:41.565877"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.566850"], ["updated_at", "2020-05-05 18:20:41.566850"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora facilis dignissimos aut?"], ["description", "Hic sit quidem accusamus."], ["date", "2020-05-06 18:20:41.568372"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.569092"], ["updated_at", "2020-05-05 18:20:41.569092"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam esse ut est?"], ["description", "Autem vel sunt nostrum."], ["date", "2020-05-06 18:20:41.570309"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.571042"], ["updated_at", "2020-05-05 18:20:41.571042"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem quae cum officia?"], ["description", "Corporis dolorem eius dolorem."], ["date", "2020-05-06 18:20:41.572230"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.572990"], ["updated_at", "2020-05-05 18:20:41.572990"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem dicta iste id?"], ["description", "Et iure consequatur itaque."], ["date", "2020-05-06 18:20:41.574391"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.575219"], ["updated_at", "2020-05-05 18:20:41.575219"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum est minima ipsum?"], ["description", "Quo accusamus hic in."], ["date", "2020-05-06 18:20:41.576579"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.577319"], ["updated_at", "2020-05-05 18:20:41.577319"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reiciendis cupiditate dolorem quo?"], ["description", "Repellendus numquam quam aliquid."], ["date", "2020-05-06 18:20:41.578891"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.579976"], ["updated_at", "2020-05-05 18:20:41.579976"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam eum quos perferendis?"], ["description", "Quibusdam sed et reiciendis."], ["date", "2020-05-06 18:20:41.581383"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.582183"], ["updated_at", "2020-05-05 18:20:41.582183"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio delectus sit qui?"], ["description", "Voluptatem quia minima reiciendis."], ["date", "2020-05-06 18:20:41.584164"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.585332"], ["updated_at", "2020-05-05 18:20:41.585332"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum magnam culpa qui?"], ["description", "Doloremque necessitatibus blanditiis qui."], ["date", "2020-05-06 18:20:41.586770"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.587474"], ["updated_at", "2020-05-05 18:20:41.587474"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam rerum qui sequi?"], ["description", "Autem sed et ipsa."], ["date", "2020-05-06 18:20:41.588669"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.589392"], ["updated_at", "2020-05-05 18:20:41.589392"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:20:41 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"title"=>"Visit Narnia", "description"=>"false", "meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 422 Unprocessable Entity in 4ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 2135) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.0ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alonso Hirthe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Jw3F8EXg0XUrGyPTyffzheCaf.WTAM.ZISKdBomTA3GdN1X/J1koS"], ["created_at", "2020-05-05 18:20:41.673798"], ["updated_at", "2020-05-05 18:20:41.673798"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quaerat"], ["description", "Sapiente tempora ipsa amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.678045"], ["updated_at", "2020-05-05 18:20:41.678045"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis ipsam debitis a?"], ["description", "Facere mollitia architecto consequatur."], ["date", "2020-05-06 18:20:41.680737"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.681806"], ["updated_at", "2020-05-05 18:20:41.681806"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae omnis nisi cupiditate?"], ["description", "Nam id provident magni."], ["date", "2020-05-06 18:20:41.683678"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.685838"], ["updated_at", "2020-05-05 18:20:41.685838"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto magni temporibus corporis?"], ["description", "Alias deleniti quis atque."], ["date", "2020-05-06 18:20:41.687690"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.689069"], ["updated_at", "2020-05-05 18:20:41.689069"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur quis sunt iusto?"], ["description", "Suscipit quidem ut voluptas."], ["date", "2020-05-06 18:20:41.690489"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.691278"], ["updated_at", "2020-05-05 18:20:41.691278"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit ut deleniti sapiente?"], ["description", "Nesciunt ut sequi nihil."], ["date", "2020-05-06 18:20:41.692492"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.693202"], ["updated_at", "2020-05-05 18:20:41.693202"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia dicta corporis minus?"], ["description", "Debitis officia consectetur aut."], ["date", "2020-05-06 18:20:41.694469"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.695255"], ["updated_at", "2020-05-05 18:20:41.695255"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi atque est nesciunt?"], ["description", "Alias id accusantium adipisci."], ["date", "2020-05-06 18:20:41.696470"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.697217"], ["updated_at", "2020-05-05 18:20:41.697217"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui fugiat ex omnis?"], ["description", "Eum tempora eum sit."], ["date", "2020-05-06 18:20:41.698317"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.699005"], ["updated_at", "2020-05-05 18:20:41.699005"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta dolorem quia ipsa?"], ["description", "Incidunt qui quis blanditiis."], ["date", "2020-05-06 18:20:41.700074"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.700776"], ["updated_at", "2020-05-05 18:20:41.700776"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos sed natus itaque?"], ["description", "Sapiente nam rem eaque."], ["date", "2020-05-06 18:20:41.702685"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.703829"], ["updated_at", "2020-05-05 18:20:41.703829"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil voluptas quas possimus?"], ["description", "Qui omnis veritatis suscipit."], ["date", "2020-05-06 18:20:41.706011"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.706968"], ["updated_at", "2020-05-05 18:20:41.706968"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae vel iure eaque?"], ["description", "Non facilis eos in."], ["date", "2020-05-06 18:20:41.708257"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.709006"], ["updated_at", "2020-05-05 18:20:41.709006"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit quibusdam dolorem quis?"], ["description", "Sint est labore quia."], ["date", "2020-05-06 18:20:41.710323"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.711064"], ["updated_at", "2020-05-05 18:20:41.711064"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque aliquid molestiae neque?"], ["description", "Quibusdam exercitationem veritatis et."], ["date", "2020-05-06 18:20:41.712712"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.714077"], ["updated_at", "2020-05-05 18:20:41.714077"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum aliquam qui qui?"], ["description", "Harum aperiam nisi recusandae."], ["date", "2020-05-06 18:20:41.715792"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.716645"], ["updated_at", "2020-05-05 18:20:41.716645"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor dolores voluptas facilis?"], ["description", "Sed a est tempora."], ["date", "2020-05-06 18:20:41.717925"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.718642"], ["updated_at", "2020-05-05 18:20:41.718642"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem omnis id quis?"], ["description", "Quidem placeat nemo quasi."], ["date", "2020-05-06 18:20:41.719943"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.720726"], ["updated_at", "2020-05-05 18:20:41.720726"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut sit impedit minus?"], ["description", "Tempora nemo asperiores ut."], ["date", "2020-05-06 18:20:41.721934"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.722628"], ["updated_at", "2020-05-05 18:20:41.722628"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo nihil nihil qui?"], ["description", "Soluta beatae occaecati alias."], ["date", "2020-05-06 18:20:41.724024"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.725615"], ["updated_at", "2020-05-05 18:20:41.725615"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum eveniet odit exercitationem?"], ["description", "Consequuntur ut cum dicta."], ["date", "2020-05-06 18:20:41.727049"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.727908"], ["updated_at", "2020-05-05 18:20:41.727908"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:20:41 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 2785) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Wallace Hoeger"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$O3QbjIYvQSnvJEEznhYcA.DzpwxyolCpOe3gpV0BRafU6casLhIdO"], ["created_at", "2020-05-05 18:20:41.747791"], ["updated_at", "2020-05-05 18:20:41.747791"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Neque mollitia tempora maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.751632"], ["updated_at", "2020-05-05 18:20:41.751632"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In eos quia sunt?"], ["description", "Voluptatem voluptates ut vel."], ["date", "2020-05-06 18:20:41.753290"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.754310"], ["updated_at", "2020-05-05 18:20:41.754310"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt est ab id?"], ["description", "Nostrum aut possimus sequi."], ["date", "2020-05-06 18:20:41.755677"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.756435"], ["updated_at", "2020-05-05 18:20:41.756435"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis eum in voluptates?"], ["description", "Aliquam molestiae expedita officia."], ["date", "2020-05-06 18:20:41.757654"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.758349"], ["updated_at", "2020-05-05 18:20:41.758349"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt odio deleniti provident?"], ["description", "Ut modi voluptatem dolores."], ["date", "2020-05-06 18:20:41.759452"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.760126"], ["updated_at", "2020-05-05 18:20:41.760126"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et ex voluptatum non?"], ["description", "Sed quo nisi est."], ["date", "2020-05-06 18:20:41.761487"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.762692"], ["updated_at", "2020-05-05 18:20:41.762692"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit maxime quasi qui?"], ["description", "Recusandae ab at eius."], ["date", "2020-05-06 18:20:41.764542"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.766596"], ["updated_at", "2020-05-05 18:20:41.766596"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id sapiente suscipit vel?"], ["description", "Quia molestias nesciunt in."], ["date", "2020-05-06 18:20:41.768972"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.769962"], ["updated_at", "2020-05-05 18:20:41.769962"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum voluptas consequatur velit?"], ["description", "Omnis aut facilis voluptatem."], ["date", "2020-05-06 18:20:41.771389"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.772167"], ["updated_at", "2020-05-05 18:20:41.772167"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem voluptas ut aut?"], ["description", "Ea quam laboriosam mollitia."], ["date", "2020-05-06 18:20:41.773461"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.774287"], ["updated_at", "2020-05-05 18:20:41.774287"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et voluptates ex dolorem?"], ["description", "Sint accusantium qui unde."], ["date", "2020-05-06 18:20:41.776301"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.777178"], ["updated_at", "2020-05-05 18:20:41.777178"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit consectetur ea aut?"], ["description", "Et impedit asperiores voluptas."], ["date", "2020-05-06 18:20:41.778559"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.779998"], ["updated_at", "2020-05-05 18:20:41.779998"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda voluptatem repellendus non?"], ["description", "Consequuntur neque aut occaecati."], ["date", "2020-05-06 18:20:41.781752"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.782674"], ["updated_at", "2020-05-05 18:20:41.782674"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas quisquam aliquam suscipit?"], ["description", "Autem debitis laboriosam aliquid."], ["date", "2020-05-06 18:20:41.784921"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.787267"], ["updated_at", "2020-05-05 18:20:41.787267"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit eligendi veniam rerum?"], ["description", "Aut placeat quas temporibus."], ["date", "2020-05-06 18:20:41.788941"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.789899"], ["updated_at", "2020-05-05 18:20:41.789899"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut autem sunt consequatur?"], ["description", "Vero ullam provident est."], ["date", "2020-05-06 18:20:41.791294"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.792205"], ["updated_at", "2020-05-05 18:20:41.792205"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est ullam consequatur officia?"], ["description", "Et fuga vero sed."], ["date", "2020-05-06 18:20:41.793711"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.794807"], ["updated_at", "2020-05-05 18:20:41.794807"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias natus saepe eveniet?"], ["description", "Perferendis dolorem officiis nihil."], ["date", "2020-05-06 18:20:41.796934"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.798028"], ["updated_at", "2020-05-05 18:20:41.798028"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto nam eius neque?"], ["description", "Dignissimos eos quia asperiores."], ["date", "2020-05-06 18:20:41.799692"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.800697"], ["updated_at", "2020-05-05 18:20:41.800697"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut laborum quo perspiciatis?"], ["description", "Repudiandae ut minima eos."], ["date", "2020-05-06 18:20:41.802133"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.802886"], ["updated_at", "2020-05-05 18:20:41.802886"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptate qui sunt et?"], ["description", "Reprehenderit eos in maiores."], ["date", "2020-05-06 18:20:41.804150"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:20:41.805495"], ["updated_at", "2020-05-05 18:20:41.805495"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:20:41 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 2697) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Omnis veritatis eos dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.823530"], ["updated_at", "2020-05-05 18:20:41.823530"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Quia ipsum ut atque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.829012"], ["updated_at", "2020-05-05 18:20:41.829012"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Voluptates dolore labore non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.831627"], ["updated_at", "2020-05-05 18:20:41.831627"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Nam consequuntur facere enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.833421"], ["updated_at", "2020-05-05 18:20:41.833421"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "libero"], ["description", "Omnis minima cumque nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.835024"], ["updated_at", "2020-05-05 18:20:41.835024"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "libero"], ["description", "Nihil id reprehenderit officiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.836503"], ["updated_at", "2020-05-05 18:20:41.836503"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Libero ut labore facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.837990"], ["updated_at", "2020-05-05 18:20:41.837990"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Eligendi aperiam consequatur aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.839443"], ["updated_at", "2020-05-05 18:20:41.839443"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "delectus"], ["description", "Omnis omnis laborum odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.840859"], ["updated_at", "2020-05-05 18:20:41.840859"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Inventore minus odio velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.842338"], ["updated_at", "2020-05-05 18:20:41.842338"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Garfield Heaney"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0nfk7Bc.YOd29.2n4jmsf.02DRXcZ/29gXPH9kA86oalm.LUekm1K"], ["created_at", "2020-05-05 18:20:41.846752"], ["updated_at", "2020-05-05 18:20:41.846752"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:41 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.6ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.12ms) +Completed 200 OK in 9ms (Views: 6.9ms | ActiveRecord: 0.7ms | Allocations: 3007) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Provident cumque placeat et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.872714"], ["updated_at", "2020-05-05 18:20:41.872714"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "a"], ["description", "Aut sint maxime et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.876035"], ["updated_at", "2020-05-05 18:20:41.876035"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Neque magnam animi rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.877961"], ["updated_at", "2020-05-05 18:20:41.877961"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Accusamus aut et voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.880409"], ["updated_at", "2020-05-05 18:20:41.880409"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusamus"], ["description", "Praesentium aliquid commodi quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.881974"], ["updated_at", "2020-05-05 18:20:41.881974"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "numquam"], ["description", "Recusandae ut minus nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.883400"], ["updated_at", "2020-05-05 18:20:41.883400"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officiis"], ["description", "Quo unde maiores repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.885592"], ["updated_at", "2020-05-05 18:20:41.885592"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sequi"], ["description", "Illo doloribus magnam temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.888150"], ["updated_at", "2020-05-05 18:20:41.888150"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorum"], ["description", "Qui animi laudantium rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.890719"], ["updated_at", "2020-05-05 18:20:41.890719"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "reprehenderit"], ["description", "Dolor aut officia ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.893125"], ["updated_at", "2020-05-05 18:20:41.893125"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lucie Oberbrunner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VeU9CcqgTI9TW4MrvPVrT.3QvKkwXk.OFnoITVQFKI36hAQAkjYxG"], ["created_at", "2020-05-05 18:20:41.896778"], ["updated_at", "2020-05-05 18:20:41.896778"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:41 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2845) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsam"], ["description", "Sunt est occaecati numquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.917510"], ["updated_at", "2020-05-05 18:20:41.917510"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "earum"], ["description", "Quia nihil praesentium iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.921288"], ["updated_at", "2020-05-05 18:20:41.921288"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facilis"], ["description", "Est et ipsa reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.923111"], ["updated_at", "2020-05-05 18:20:41.923111"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eius"], ["description", "Accusantium in porro suscipit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.925038"], ["updated_at", "2020-05-05 18:20:41.925038"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Pariatur ipsam voluptates fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.927639"], ["updated_at", "2020-05-05 18:20:41.927639"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "exercitationem"], ["description", "Omnis dolor quis repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.929911"], ["updated_at", "2020-05-05 18:20:41.929911"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptates"], ["description", "Et blanditiis ut aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.933195"], ["updated_at", "2020-05-05 18:20:41.933195"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perferendis"], ["description", "Laborum ut expedita et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.935528"], ["updated_at", "2020-05-05 18:20:41.935528"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sapiente"], ["description", "Magni quaerat ipsam quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.937004"], ["updated_at", "2020-05-05 18:20:41.937004"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ratione"], ["description", "Et est reiciendis natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.938387"], ["updated_at", "2020-05-05 18:20:41.938387"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Towanda Orn PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$..Bwi0GbWJrR.SGx0QxMmOGza5pJaqucXZrl67BgPU/wfbHuBBbUW"], ["created_at", "2020-05-05 18:20:41.941106"], ["updated_at", "2020-05-05 18:20:41.941106"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:41 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (5.12ms) +Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:20:41 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.39ms) +Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.2ms | Allocations: 1242) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Sed vitae quasi veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.966515"], ["updated_at", "2020-05-05 18:20:41.966515"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facere"], ["description", "Omnis sed ipsa est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.969925"], ["updated_at", "2020-05-05 18:20:41.969925"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Sit et ut velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.971282"], ["updated_at", "2020-05-05 18:20:41.971282"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "suscipit"], ["description", "Voluptas sint magni voluptatum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.972575"], ["updated_at", "2020-05-05 18:20:41.972575"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "pariatur"], ["description", "Placeat blanditiis excepturi rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.973914"], ["updated_at", "2020-05-05 18:20:41.973914"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Quia quidem vel excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.975290"], ["updated_at", "2020-05-05 18:20:41.975290"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellendus"], ["description", "Voluptatibus ducimus ea nostrum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.976607"], ["updated_at", "2020-05-05 18:20:41.976607"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptates"], ["description", "Consectetur beatae quia quas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.977996"], ["updated_at", "2020-05-05 18:20:41.977996"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Perferendis voluptatem qui autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.979264"], ["updated_at", "2020-05-05 18:20:41.979264"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloremque"], ["description", "Et sed esse culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:41.981081"], ["updated_at", "2020-05-05 18:20:41.981081"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Herbert Kirlin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nAT4UA0AcULyOSQXNl93NOH.JBDNIv8GfKtWr2J44WIvbCPjfJfUO"], ["created_at", "2020-05-05 18:20:41.984177"], ["updated_at", "2020-05-05 18:20:41.984177"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:41 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.8ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:20:41 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.44ms) +Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.3ms | Allocations: 1240) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptates"], ["description", "Dolorum et veritatis quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.009829"], ["updated_at", "2020-05-05 18:20:42.009829"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloribus"], ["description", "Dicta velit ratione sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.013640"], ["updated_at", "2020-05-05 18:20:42.013640"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Amet velit quia nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.015506"], ["updated_at", "2020-05-05 18:20:42.015506"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nostrum"], ["description", "Reprehenderit consectetur vel aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.017051"], ["updated_at", "2020-05-05 18:20:42.017051"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "esse"], ["description", "Consequatur voluptatem eius quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.018496"], ["updated_at", "2020-05-05 18:20:42.018496"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "commodi"], ["description", "Ducimus non similique fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.019873"], ["updated_at", "2020-05-05 18:20:42.019873"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Nihil pariatur id provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.021245"], ["updated_at", "2020-05-05 18:20:42.021245"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloribus"], ["description", "Dolorem perspiciatis ad quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.022591"], ["updated_at", "2020-05-05 18:20:42.022591"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nam"], ["description", "Quam tenetur excepturi deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.024025"], ["updated_at", "2020-05-05 18:20:42.024025"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Enim occaecati iste mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.025787"], ["updated_at", "2020-05-05 18:20:42.025787"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Barrett Hermann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ElV3QnUH9vZ3ndlnFDYol.gSdz7jhCt.LAmd93qMX8pe1V7G2vStO"], ["created_at", "2020-05-05 18:20:42.030079"], ["updated_at", "2020-05-05 18:20:42.030079"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:42 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.4ms | ActiveRecord: 0.2ms | Allocations: 2846) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:20:42 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "at"], ["description", "Et quae voluptatem eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.053932"], ["updated_at", "2020-05-05 18:20:42.053932"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "culpa"], ["description", "Et repudiandae quia quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.057021"], ["updated_at", "2020-05-05 18:20:42.057021"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempore"], ["description", "Et qui dolor quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.058626"], ["updated_at", "2020-05-05 18:20:42.058626"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veritatis"], ["description", "Ut molestiae eaque minus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.060042"], ["updated_at", "2020-05-05 18:20:42.060042"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Iusto aut odit enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.061494"], ["updated_at", "2020-05-05 18:20:42.061494"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "a"], ["description", "Et officiis quod perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.063739"], ["updated_at", "2020-05-05 18:20:42.063739"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Non ullam cumque consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.065941"], ["updated_at", "2020-05-05 18:20:42.065941"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Commodi velit dignissimos et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.068554"], ["updated_at", "2020-05-05 18:20:42.068554"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptate"], ["description", "Neque nihil eos ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.070797"], ["updated_at", "2020-05-05 18:20:42.070797"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Sequi distinctio blanditiis cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.073582"], ["updated_at", "2020-05-05 18:20:42.073582"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lakia Braun"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$A0tH9kK2zUsR.sqgo1wIV.CBrzMVEbpndzB7gAREd7g2TyIZqB9jC"], ["created_at", "2020-05-05 18:20:42.076967"], ["updated_at", "2020-05-05 18:20:42.076967"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:42 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.01ms) +Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.3ms | Allocations: 2843) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:20:42 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (12.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consectetur"], ["description", "Sequi minima reprehenderit voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.106738"], ["updated_at", "2020-05-05 18:20:42.106738"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laudantium"], ["description", "Consequuntur omnis molestias et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.110762"], ["updated_at", "2020-05-05 18:20:42.110762"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "mollitia"], ["description", "Omnis sint corrupti blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.114577"], ["updated_at", "2020-05-05 18:20:42.114577"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Autem sit est consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.117546"], ["updated_at", "2020-05-05 18:20:42.117546"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quaerat"], ["description", "Rerum qui quos voluptates."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.119372"], ["updated_at", "2020-05-05 18:20:42.119372"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quam"], ["description", "Est dolores et sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.120815"], ["updated_at", "2020-05-05 18:20:42.120815"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Explicabo praesentium quaerat porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.122319"], ["updated_at", "2020-05-05 18:20:42.122319"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eius"], ["description", "Consequatur provident quidem quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.123991"], ["updated_at", "2020-05-05 18:20:42.123991"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corrupti"], ["description", "Deserunt quas cumque ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.125727"], ["updated_at", "2020-05-05 18:20:42.125727"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Omnis nisi consequatur autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.128909"], ["updated_at", "2020-05-05 18:20:42.128909"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Darryl Huels"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Yt37qoxJKFbBsiZpbplDdOcGWZZY8gAuBFSjv531otaStNAakXDLy"], ["created_at", "2020-05-05 18:20:42.133092"], ["updated_at", "2020-05-05 18:20:42.133092"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:42 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.13ms) +Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms | Allocations: 2845) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:20:42 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:20:42.158976"], ["updated_at", "2020-05-05 18:20:42.158976"], ["created_by", "1"]] +  (0.2ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.3ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.67ms) +Completed 201 Created in 25ms (Views: 1.6ms | ActiveRecord: 1.3ms | Allocations: 6189) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "hic"], ["description", "Facilis eos et odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.179032"], ["updated_at", "2020-05-05 18:20:42.179032"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Aspernatur necessitatibus doloribus id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.182576"], ["updated_at", "2020-05-05 18:20:42.182576"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Nihil reprehenderit et ipsum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.184240"], ["updated_at", "2020-05-05 18:20:42.184240"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Accusantium deserunt temporibus rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.185637"], ["updated_at", "2020-05-05 18:20:42.185637"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aperiam"], ["description", "Quaerat molestiae inventore explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.188209"], ["updated_at", "2020-05-05 18:20:42.188209"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Eligendi qui nihil ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.190346"], ["updated_at", "2020-05-05 18:20:42.190346"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Excepturi libero ducimus consectetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.192981"], ["updated_at", "2020-05-05 18:20:42.192981"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perferendis"], ["description", "Laborum nulla eum rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.196091"], ["updated_at", "2020-05-05 18:20:42.196091"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Aut asperiores reiciendis doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.200552"], ["updated_at", "2020-05-05 18:20:42.200552"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestias"], ["description", "Quidem error blanditiis aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.201979"], ["updated_at", "2020-05-05 18:20:42.201979"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alona Stiedemann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fyJzRJJZOcHDg9tTMtpp1.324L5unR3tG5PhMIaImD.ts1wmCXD6e"], ["created_at", "2020-05-05 18:20:42.204503"], ["updated_at", "2020-05-05 18:20:42.204503"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:42 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.52ms) +Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:20:42 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:20:42.218044"], ["updated_at", "2020-05-05 18:20:42.218044"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.44ms) +Completed 201 Created in 6ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 2217) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (31.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorum"], ["description", "Omnis sequi veritatis molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.257337"], ["updated_at", "2020-05-05 18:20:42.257337"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "temporibus"], ["description", "Voluptate repellendus corrupti nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.260428"], ["updated_at", "2020-05-05 18:20:42.260428"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ab"], ["description", "Nesciunt totam rerum est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.262756"], ["updated_at", "2020-05-05 18:20:42.262756"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eaque"], ["description", "Et eveniet excepturi vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.264645"], ["updated_at", "2020-05-05 18:20:42.264645"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Commodi quisquam ipsa consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.266269"], ["updated_at", "2020-05-05 18:20:42.266269"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Illum aliquid sed quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.269204"], ["updated_at", "2020-05-05 18:20:42.269204"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Atque consequuntur laudantium sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.271725"], ["updated_at", "2020-05-05 18:20:42.271725"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Eligendi voluptatem sed aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.274464"], ["updated_at", "2020-05-05 18:20:42.274464"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quae"], ["description", "Repellat non in repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.276289"], ["updated_at", "2020-05-05 18:20:42.276289"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officia"], ["description", "Commodi in vel ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.277692"], ["updated_at", "2020-05-05 18:20:42.277692"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kindra O'Reilly"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$lwyVtYuFVmcFlVA2atQn7.MFONsA4lfDh6/nBiyCxv4..RWszSEIu"], ["created_at", "2020-05-05 18:20:42.280874"], ["updated_at", "2020-05-05 18:20:42.280874"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:42 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.39ms) +Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:20:42 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 4006) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Voluptatum quis non facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.307184"], ["updated_at", "2020-05-05 18:20:42.307184"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Fuga itaque doloremque alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.311566"], ["updated_at", "2020-05-05 18:20:42.311566"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nisi"], ["description", "Voluptatem ratione nam temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.313895"], ["updated_at", "2020-05-05 18:20:42.313895"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aperiam"], ["description", "Numquam qui qui et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.315707"], ["updated_at", "2020-05-05 18:20:42.315707"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "porro"], ["description", "Aut qui sed reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.317238"], ["updated_at", "2020-05-05 18:20:42.317238"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "hic"], ["description", "Ea non beatae et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.318615"], ["updated_at", "2020-05-05 18:20:42.318615"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laborum"], ["description", "Eos eaque dignissimos ipsa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.319931"], ["updated_at", "2020-05-05 18:20:42.319931"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Ducimus odio quia officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.321298"], ["updated_at", "2020-05-05 18:20:42.321298"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ratione"], ["description", "Odio debitis repellendus ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.322632"], ["updated_at", "2020-05-05 18:20:42.322632"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Molestiae qui sit aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.324058"], ["updated_at", "2020-05-05 18:20:42.324058"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Deandre Kiehn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$U7T0/hBaF.W1CyH5W2lF7uaTlVN2C61kGKQqBZrEDKkz2LgKiHO/C"], ["created_at", "2020-05-05 18:20:42.326789"], ["updated_at", "2020-05-05 18:20:42.326789"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:42 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.37ms) +Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.3ms | Allocations: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:20:42 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 3697) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quisquam"], ["description", "Libero tenetur aliquid animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.358254"], ["updated_at", "2020-05-05 18:20:42.358254"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quasi"], ["description", "Reprehenderit et molestiae at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.361542"], ["updated_at", "2020-05-05 18:20:42.361542"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "temporibus"], ["description", "Fuga ut voluptatibus commodi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.364075"], ["updated_at", "2020-05-05 18:20:42.364075"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "assumenda"], ["description", "Modi esse nesciunt doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.366266"], ["updated_at", "2020-05-05 18:20:42.366266"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ullam"], ["description", "Porro perspiciatis voluptates et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.368834"], ["updated_at", "2020-05-05 18:20:42.368834"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quae"], ["description", "Consequatur ut voluptate ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.372252"], ["updated_at", "2020-05-05 18:20:42.372252"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corrupti"], ["description", "Voluptas facilis repudiandae rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.375842"], ["updated_at", "2020-05-05 18:20:42.375842"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Doloribus et veritatis et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.378098"], ["updated_at", "2020-05-05 18:20:42.378098"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatum"], ["description", "Aut deleniti consequatur iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.380203"], ["updated_at", "2020-05-05 18:20:42.380203"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Fuga inventore adipisci culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.381762"], ["updated_at", "2020-05-05 18:20:42.381762"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Brian Dibbert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6wQ1SPqAoMO/M5XOJ5TE5.4cRcZFnAm0F.bVjMAZobYBJYUx2sBre"], ["created_at", "2020-05-05 18:20:42.384998"], ["updated_at", "2020-05-05 18:20:42.384998"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:42 -0300 +Processing by MeetsController#index as HTML + User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.18ms) +Completed 200 OK in 8ms (Views: 5.6ms | ActiveRecord: 0.5ms | Allocations: 2846) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:20:42 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:20:42.399629"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1088) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "itaque"], ["description", "Doloremque aut occaecati rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.411323"], ["updated_at", "2020-05-05 18:20:42.411323"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Nobis facere quas assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.414722"], ["updated_at", "2020-05-05 18:20:42.414722"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Aut animi laborum et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.416379"], ["updated_at", "2020-05-05 18:20:42.416379"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Tempore quod beatae fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.417686"], ["updated_at", "2020-05-05 18:20:42.417686"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "atque"], ["description", "Soluta sit fuga quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.419024"], ["updated_at", "2020-05-05 18:20:42.419024"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "animi"], ["description", "Culpa doloribus nulla dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.420283"], ["updated_at", "2020-05-05 18:20:42.420283"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatum"], ["description", "Quia sunt voluptatem natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.421562"], ["updated_at", "2020-05-05 18:20:42.421562"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nesciunt"], ["description", "Itaque ipsum numquam animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.422882"], ["updated_at", "2020-05-05 18:20:42.422882"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Et neque aut veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.424166"], ["updated_at", "2020-05-05 18:20:42.424166"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "error"], ["description", "Cupiditate et maxime voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.425418"], ["updated_at", "2020-05-05 18:20:42.425418"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Michal Mertz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2L/slMozipBH.LGJvRGa.upMb6um04UuoZ8kfAmrgm7S7bp2eLmHG"], ["created_at", "2020-05-05 18:20:42.428288"], ["updated_at", "2020-05-05 18:20:42.428288"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:42 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.06ms) +Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.3ms | Allocations: 2843) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:20:42 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:20:42.442766"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 999) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veritatis"], ["description", "Laboriosam incidunt dolor velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.455281"], ["updated_at", "2020-05-05 18:20:42.455281"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quisquam"], ["description", "Incidunt commodi et dicta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.458275"], ["updated_at", "2020-05-05 18:20:42.458275"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Reprehenderit molestiae hic mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.459926"], ["updated_at", "2020-05-05 18:20:42.459926"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "praesentium"], ["description", "Libero nesciunt unde excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.461241"], ["updated_at", "2020-05-05 18:20:42.461241"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Quis ea minima incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.462623"], ["updated_at", "2020-05-05 18:20:42.462623"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloremque"], ["description", "A enim officiis doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.464252"], ["updated_at", "2020-05-05 18:20:42.464252"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "Nobis id et sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.465978"], ["updated_at", "2020-05-05 18:20:42.465978"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "error"], ["description", "Sunt quis tempore inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.468069"], ["updated_at", "2020-05-05 18:20:42.468069"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Quis eligendi ut fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.471951"], ["updated_at", "2020-05-05 18:20:42.471951"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "commodi"], ["description", "Labore nihil eum voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:20:42.476357"], ["updated_at", "2020-05-05 18:20:42.476357"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Bryant Stracke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xzxLZl8AbRfDv5adwbc5vOWxvMo7UvLtLvaork29LQdmpoXA4Fn7i"], ["created_at", "2020-05-05 18:20:42.480700"], ["updated_at", "2020-05-05 18:20:42.480700"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:20:42 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (5.0ms) +Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:20:42 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 4ms (ActiveRecord: 0.6ms | Allocations: 1221) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (11.8ms) rollback transaction +  (4.8ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (127.1ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (93.1ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (191.2ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (90.4ms) DELETE FROM "meets"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (105.9ms) DELETE FROM "conversations"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (162.8ms) DELETE FROM "messagems"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (115.1ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (1.0ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.2ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dorothy Kihn DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Lh1MNqQLTt5DoZ1/RJ2rNO6UkHLcmMvVNZAaHx3LWR0lEg3MPS4du"], ["created_at", "2020-05-05 18:22:57.781696"], ["updated_at", "2020-05-05 18:22:57.781696"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Occaecati aut sint molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:57.816475"], ["updated_at", "2020-05-05 18:22:57.816475"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos sit odio et?"], ["description", "Sit minima exercitationem possimus."], ["date", "2020-05-06 18:22:57.842360"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:57.902812"], ["updated_at", "2020-05-05 18:22:57.902812"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit occaecati veniam repellendus?"], ["description", "Rem aut odit et."], ["date", "2020-05-06 18:22:57.905252"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:57.907226"], ["updated_at", "2020-05-05 18:22:57.907226"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.4ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit ea corrupti maiores?"], ["description", "Suscipit ut mollitia aut."], ["date", "2020-05-06 18:22:57.911366"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:57.915648"], ["updated_at", "2020-05-05 18:22:57.915648"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos et rerum sint?"], ["description", "Assumenda ut ex quia."], ["date", "2020-05-06 18:22:57.920545"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:57.921726"], ["updated_at", "2020-05-05 18:22:57.921726"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut quisquam perferendis maiores?"], ["description", "Non velit quia nisi."], ["date", "2020-05-06 18:22:57.923761"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:57.924944"], ["updated_at", "2020-05-05 18:22:57.924944"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias sequi delectus necessitatibus?"], ["description", "Illum praesentium voluptatem voluptatibus."], ["date", "2020-05-06 18:22:57.926535"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:57.928410"], ["updated_at", "2020-05-05 18:22:57.928410"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla quos itaque maxime?"], ["description", "Nostrum perferendis odio expedita."], ["date", "2020-05-06 18:22:57.930612"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:57.931961"], ["updated_at", "2020-05-05 18:22:57.931961"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Culpa ipsa sunt minus?"], ["description", "A doloremque vero blanditiis."], ["date", "2020-05-06 18:22:57.933962"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:57.936001"], ["updated_at", "2020-05-05 18:22:57.936001"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi fugiat minus provident?"], ["description", "Dignissimos ut vel totam."], ["date", "2020-05-06 18:22:57.938341"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:57.939798"], ["updated_at", "2020-05-05 18:22:57.939798"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laudantium hic voluptas ad?"], ["description", "Sit est dicta quis."], ["date", "2020-05-06 18:22:57.943567"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:57.945851"], ["updated_at", "2020-05-05 18:22:57.945851"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil iusto quis sunt?"], ["description", "Pariatur ullam nisi et."], ["date", "2020-05-06 18:22:57.947773"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:57.949201"], ["updated_at", "2020-05-05 18:22:57.949201"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia vel perspiciatis commodi?"], ["description", "Incidunt ut possimus inventore."], ["date", "2020-05-06 18:22:57.950943"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:57.952661"], ["updated_at", "2020-05-05 18:22:57.952661"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta dignissimos velit qui?"], ["description", "Et odit quasi sed."], ["date", "2020-05-06 18:22:57.955452"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:57.956766"], ["updated_at", "2020-05-05 18:22:57.956766"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore rem id est?"], ["description", "Doloribus earum magni nemo."], ["date", "2020-05-06 18:22:57.958733"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:57.959862"], ["updated_at", "2020-05-05 18:22:57.959862"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo ratione eaque et?"], ["description", "Molestiae ut qui necessitatibus."], ["date", "2020-05-06 18:22:57.962214"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:57.963859"], ["updated_at", "2020-05-05 18:22:57.963859"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint excepturi esse consequuntur?"], ["description", "Velit ea dolores ut."], ["date", "2020-05-06 18:22:57.966452"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:57.968070"], ["updated_at", "2020-05-05 18:22:57.968070"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi veniam eos qui?"], ["description", "Facilis dolor aut sed."], ["date", "2020-05-06 18:22:57.970323"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:57.971457"], ["updated_at", "2020-05-05 18:22:57.971457"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima illo quisquam suscipit?"], ["description", "Fuga eos veniam consequatur."], ["date", "2020-05-06 18:22:57.973883"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:57.975845"], ["updated_at", "2020-05-05 18:22:57.975845"]] +  (0.4ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis sed quod quisquam?"], ["description", "Accusamus perspiciatis omnis iste."], ["date", "2020-05-06 18:22:58.014605"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.018044"], ["updated_at", "2020-05-05 18:22:58.018044"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas mollitia corporis fugiat?"], ["description", "Qui odio sapiente occaecati."], ["date", "2020-05-06 18:22:58.020398"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.021965"], ["updated_at", "2020-05-05 18:22:58.021965"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:22:58 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.6ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (10.24ms) +Completed 200 OK in 70ms (Views: 38.8ms | ActiveRecord: 1.0ms | Allocations: 8636) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Deena Fisher PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$P1vtyUpOf46KYZEdar5FEuXdZzsKedT5Fvr/3Nd6C6.ty9jAnyuOS"], ["created_at", "2020-05-05 18:22:58.173268"], ["updated_at", "2020-05-05 18:22:58.173268"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.4ms) SAVEPOINT active_record_2 + Meet Create (0.9ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Consequatur id quos cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:58.180783"], ["updated_at", "2020-05-05 18:22:58.180783"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem dolores cumque ducimus?"], ["description", "Vel dicta quo sed."], ["date", "2020-05-06 18:22:58.185801"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.187291"], ["updated_at", "2020-05-05 18:22:58.187291"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id velit dolorem omnis?"], ["description", "Animi excepturi quasi assumenda."], ["date", "2020-05-06 18:22:58.189597"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.191837"], ["updated_at", "2020-05-05 18:22:58.191837"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi ad facere modi?"], ["description", "Consequatur non aut id."], ["date", "2020-05-06 18:22:58.194126"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.197852"], ["updated_at", "2020-05-05 18:22:58.197852"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt voluptatem rerum eum?"], ["description", "Ipsum sint molestiae ducimus."], ["date", "2020-05-06 18:22:58.201430"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.202817"], ["updated_at", "2020-05-05 18:22:58.202817"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A iusto beatae qui?"], ["description", "Quisquam aliquam beatae iure."], ["date", "2020-05-06 18:22:58.204565"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.205536"], ["updated_at", "2020-05-05 18:22:58.205536"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit omnis excepturi nostrum?"], ["description", "Nisi consequatur alias corrupti."], ["date", "2020-05-06 18:22:58.206911"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.207865"], ["updated_at", "2020-05-05 18:22:58.207865"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Delectus debitis ut et?"], ["description", "Tempora rem sint optio."], ["date", "2020-05-06 18:22:58.209185"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.210088"], ["updated_at", "2020-05-05 18:22:58.210088"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea beatae et voluptate?"], ["description", "Tempore consequatur asperiores nesciunt."], ["date", "2020-05-06 18:22:58.211968"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.213369"], ["updated_at", "2020-05-05 18:22:58.213369"]] +  (0.4ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat eos aut eum?"], ["description", "Tempora quas laudantium voluptate."], ["date", "2020-05-06 18:22:58.216390"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.217896"], ["updated_at", "2020-05-05 18:22:58.217896"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam quos officia eligendi?"], ["description", "Aspernatur corporis nemo aut."], ["date", "2020-05-06 18:22:58.220100"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.221592"], ["updated_at", "2020-05-05 18:22:58.221592"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum natus qui explicabo?"], ["description", "Nihil exercitationem et qui."], ["date", "2020-05-06 18:22:58.223225"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.224393"], ["updated_at", "2020-05-05 18:22:58.224393"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam dolore quasi velit?"], ["description", "Et dolores autem labore."], ["date", "2020-05-06 18:22:58.226994"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.228287"], ["updated_at", "2020-05-05 18:22:58.228287"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus porro qui ipsa?"], ["description", "Recusandae et voluptate est."], ["date", "2020-05-06 18:22:58.229950"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.230876"], ["updated_at", "2020-05-05 18:22:58.230876"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est ab voluptatibus nesciunt?"], ["description", "Non et voluptas optio."], ["date", "2020-05-06 18:22:58.232228"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.233090"], ["updated_at", "2020-05-05 18:22:58.233090"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In eligendi quidem reprehenderit?"], ["description", "Omnis vel cumque ut."], ["date", "2020-05-06 18:22:58.235990"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.237996"], ["updated_at", "2020-05-05 18:22:58.237996"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Possimus tempore quos perferendis?"], ["description", "Blanditiis excepturi occaecati et."], ["date", "2020-05-06 18:22:58.240302"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.241413"], ["updated_at", "2020-05-05 18:22:58.241413"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus dolores est aut?"], ["description", "Iure maiores aut officiis."], ["date", "2020-05-06 18:22:58.243138"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.244483"], ["updated_at", "2020-05-05 18:22:58.244483"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique soluta veritatis ut?"], ["description", "Omnis praesentium dolore quibusdam."], ["date", "2020-05-06 18:22:58.246366"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.247385"], ["updated_at", "2020-05-05 18:22:58.247385"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et ex aut eos?"], ["description", "Minus repellendus ut consequuntur."], ["date", "2020-05-06 18:22:58.248969"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.249965"], ["updated_at", "2020-05-05 18:22:58.249965"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur quia ut unde?"], ["description", "Voluptates voluptas et omnis."], ["date", "2020-05-06 18:22:58.251395"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.252542"], ["updated_at", "2020-05-05 18:22:58.252542"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:22:58 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.18ms) +Completed 200 OK in 12ms (Views: 10.3ms | ActiveRecord: 0.4ms | Allocations: 5513) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.9ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Edra Wiza DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mpi1xdLHNqGdQSG/KFtGZu5ZqOlMRzwmW68ry/8PcIhja9wgv78SO"], ["created_at", "2020-05-05 18:22:58.288567"], ["updated_at", "2020-05-05 18:22:58.288567"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fuga"], ["description", "Non ducimus occaecati aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:58.292855"], ["updated_at", "2020-05-05 18:22:58.292855"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor ut repudiandae eum?"], ["description", "Aut quam officia sapiente."], ["date", "2020-05-06 18:22:58.296148"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.298772"], ["updated_at", "2020-05-05 18:22:58.298772"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis eligendi eum mollitia?"], ["description", "Nulla voluptatem sit maxime."], ["date", "2020-05-06 18:22:58.301267"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.302587"], ["updated_at", "2020-05-05 18:22:58.302587"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut non voluptas rerum?"], ["description", "Omnis laudantium deserunt quasi."], ["date", "2020-05-06 18:22:58.304158"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.305330"], ["updated_at", "2020-05-05 18:22:58.305330"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus autem soluta itaque?"], ["description", "Sint itaque omnis et."], ["date", "2020-05-06 18:22:58.306931"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.308383"], ["updated_at", "2020-05-05 18:22:58.308383"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates autem consequuntur dolorem?"], ["description", "Aliquam nisi mollitia consequatur."], ["date", "2020-05-06 18:22:58.311638"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.313286"], ["updated_at", "2020-05-05 18:22:58.313286"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo nobis exercitationem sit?"], ["description", "Eius quia omnis corrupti."], ["date", "2020-05-06 18:22:58.315057"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.317233"], ["updated_at", "2020-05-05 18:22:58.317233"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem ipsum nostrum tempora?"], ["description", "Rem unde et impedit."], ["date", "2020-05-06 18:22:58.318920"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.320260"], ["updated_at", "2020-05-05 18:22:58.320260"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At consectetur voluptatem laboriosam?"], ["description", "Aliquam officia inventore praesentium."], ["date", "2020-05-06 18:22:58.321936"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.323377"], ["updated_at", "2020-05-05 18:22:58.323377"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error hic nulla eos?"], ["description", "Repellat inventore consectetur ad."], ["date", "2020-05-06 18:22:58.325297"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.327401"], ["updated_at", "2020-05-05 18:22:58.327401"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit cum quia maiores?"], ["description", "Iste et illo velit."], ["date", "2020-05-06 18:22:58.330182"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.331470"], ["updated_at", "2020-05-05 18:22:58.331470"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore incidunt voluptatem nisi?"], ["description", "Rerum explicabo voluptas autem."], ["date", "2020-05-06 18:22:58.333218"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.334329"], ["updated_at", "2020-05-05 18:22:58.334329"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia ea dolorum ducimus?"], ["description", "Aut quae aut voluptatem."], ["date", "2020-05-06 18:22:58.337374"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.338547"], ["updated_at", "2020-05-05 18:22:58.338547"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil exercitationem architecto dolorem?"], ["description", "Itaque aliquid eum repellat."], ["date", "2020-05-06 18:22:58.340066"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.341140"], ["updated_at", "2020-05-05 18:22:58.341140"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis sed molestiae similique?"], ["description", "Ut facere sit et."], ["date", "2020-05-06 18:22:58.343015"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.344856"], ["updated_at", "2020-05-05 18:22:58.344856"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis et sint nesciunt?"], ["description", "Velit et esse velit."], ["date", "2020-05-06 18:22:58.347150"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.348538"], ["updated_at", "2020-05-05 18:22:58.348538"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor vel officiis alias?"], ["description", "Tempora odio animi accusantium."], ["date", "2020-05-06 18:22:58.350571"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.352168"], ["updated_at", "2020-05-05 18:22:58.352168"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt aut illo vel?"], ["description", "Et delectus explicabo sint."], ["date", "2020-05-06 18:22:58.354024"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.355329"], ["updated_at", "2020-05-05 18:22:58.355329"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error quis assumenda quo?"], ["description", "Non pariatur fugiat aut."], ["date", "2020-05-06 18:22:58.358219"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.359555"], ["updated_at", "2020-05-05 18:22:58.359555"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque tenetur odio eveniet?"], ["description", "Tempore sint voluptas aut."], ["date", "2020-05-06 18:22:58.361805"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.363589"], ["updated_at", "2020-05-05 18:22:58.363589"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui similique dolores quia?"], ["description", "Exercitationem repellendus iusto ducimus."], ["date", "2020-05-06 18:22:58.365360"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.366435"], ["updated_at", "2020-05-05 18:22:58.366435"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:22:58 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.13ms) +Completed 404 Not Found in 7ms (Views: 5.5ms | ActiveRecord: 0.1ms | Allocations: 865) +  (0.8ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (2.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Brenda Streich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oFaESKHsLpgTzypwKNvkYO.DsYR7ONaAS9vmzoW6VqpBVfEdKJGXy"], ["created_at", "2020-05-05 18:22:58.393750"], ["updated_at", "2020-05-05 18:22:58.393750"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Molestiae nostrum sed qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:58.400625"], ["updated_at", "2020-05-05 18:22:58.400625"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora quas quam vel?"], ["description", "Quos in ab nam."], ["date", "2020-05-06 18:22:58.402762"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.404402"], ["updated_at", "2020-05-05 18:22:58.404402"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis consequatur vel nam?"], ["description", "Ipsam molestiae aut nihil."], ["date", "2020-05-06 18:22:58.406563"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.407587"], ["updated_at", "2020-05-05 18:22:58.407587"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex eos sit ut?"], ["description", "Officiis nihil exercitationem est."], ["date", "2020-05-06 18:22:58.409014"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.410195"], ["updated_at", "2020-05-05 18:22:58.410195"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia omnis architecto et?"], ["description", "Delectus non accusantium id."], ["date", "2020-05-06 18:22:58.412616"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.414118"], ["updated_at", "2020-05-05 18:22:58.414118"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui consequatur perferendis necessitatibus?"], ["description", "Nisi officia et repudiandae."], ["date", "2020-05-06 18:22:58.416465"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.418870"], ["updated_at", "2020-05-05 18:22:58.418870"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure reprehenderit rem suscipit?"], ["description", "Aut iste explicabo non."], ["date", "2020-05-06 18:22:58.420828"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.421971"], ["updated_at", "2020-05-05 18:22:58.421971"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit maxime velit et?"], ["description", "Maiores autem eos maxime."], ["date", "2020-05-06 18:22:58.423646"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.424941"], ["updated_at", "2020-05-05 18:22:58.424941"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero ab aut aut?"], ["description", "Aut amet excepturi facere."], ["date", "2020-05-06 18:22:58.426292"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.427326"], ["updated_at", "2020-05-05 18:22:58.427326"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis quia recusandae iusto?"], ["description", "Quisquam dolores corporis iure."], ["date", "2020-05-06 18:22:58.430068"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.431762"], ["updated_at", "2020-05-05 18:22:58.431762"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et est omnis facilis?"], ["description", "Qui magni assumenda consequatur."], ["date", "2020-05-06 18:22:58.434945"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.436972"], ["updated_at", "2020-05-05 18:22:58.436972"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa vitae repellat fugit?"], ["description", "Hic et et quo."], ["date", "2020-05-06 18:22:58.440476"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.441771"], ["updated_at", "2020-05-05 18:22:58.441771"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et dolorem eum quae?"], ["description", "Nulla quia repellat nam."], ["date", "2020-05-06 18:22:58.444227"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.446403"], ["updated_at", "2020-05-05 18:22:58.446403"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis sint qui ea?"], ["description", "Cumque ut nihil nemo."], ["date", "2020-05-06 18:22:58.448223"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.449603"], ["updated_at", "2020-05-05 18:22:58.449603"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio consequatur ea qui?"], ["description", "Exercitationem a quam consequatur."], ["date", "2020-05-06 18:22:58.451339"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.452535"], ["updated_at", "2020-05-05 18:22:58.452535"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime officiis quis est?"], ["description", "Ullam fugit quasi vel."], ["date", "2020-05-06 18:22:58.454851"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.456852"], ["updated_at", "2020-05-05 18:22:58.456852"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus et animi consectetur?"], ["description", "Voluptatem inventore quasi aut."], ["date", "2020-05-06 18:22:58.459459"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.460750"], ["updated_at", "2020-05-05 18:22:58.460750"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem quae consequatur cupiditate?"], ["description", "Explicabo iste dignissimos consequatur."], ["date", "2020-05-06 18:22:58.463170"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.465386"], ["updated_at", "2020-05-05 18:22:58.465386"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum sunt impedit dolores?"], ["description", "Harum consequatur pariatur eaque."], ["date", "2020-05-06 18:22:58.466912"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.467843"], ["updated_at", "2020-05-05 18:22:58.467843"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique et cum est?"], ["description", "Harum consequatur delectus qui."], ["date", "2020-05-06 18:22:58.469223"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.470173"], ["updated_at", "2020-05-05 18:22:58.470173"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente officia aut soluta?"], ["description", "Corporis voluptatem laudantium facilis."], ["date", "2020-05-06 18:22:58.471729"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.473543"], ["updated_at", "2020-05-05 18:22:58.473543"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:22:58 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms) +Completed 404 Not Found in 3ms (Views: 0.7ms | ActiveRecord: 0.4ms | Allocations: 509) +  (0.6ms) ROLLBACK TO SAVEPOINT active_record_1 +  (10.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Curt Erdman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$478SK/snreZUBzCAohHYreT7Ht74/bO6Xw2Z3YGZasjJDw5czQDtC"], ["created_at", "2020-05-05 18:22:58.504235"], ["updated_at", "2020-05-05 18:22:58.504235"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Quae eius odit placeat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:58.510577"], ["updated_at", "2020-05-05 18:22:58.510577"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A natus et dolor?"], ["description", "Quam doloremque praesentium asperiores."], ["date", "2020-05-06 18:22:58.514564"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.516620"], ["updated_at", "2020-05-05 18:22:58.516620"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis quis consequatur temporibus?"], ["description", "Velit quasi delectus culpa."], ["date", "2020-05-06 18:22:58.519887"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.521844"], ["updated_at", "2020-05-05 18:22:58.521844"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste et illo voluptas?"], ["description", "Praesentium sequi sint et."], ["date", "2020-05-06 18:22:58.524444"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.526202"], ["updated_at", "2020-05-05 18:22:58.526202"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A et nostrum autem?"], ["description", "Ducimus eos odio quia."], ["date", "2020-05-06 18:22:58.529520"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.531605"], ["updated_at", "2020-05-05 18:22:58.531605"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et voluptas repudiandae consectetur?"], ["description", "Odit nihil dolorem expedita."], ["date", "2020-05-06 18:22:58.534341"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.535912"], ["updated_at", "2020-05-05 18:22:58.535912"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis quod quas laboriosam?"], ["description", "Qui quia ex adipisci."], ["date", "2020-05-06 18:22:58.538541"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.539611"], ["updated_at", "2020-05-05 18:22:58.539611"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut quia ut expedita?"], ["description", "Officiis voluptas iusto aut."], ["date", "2020-05-06 18:22:58.540920"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.541697"], ["updated_at", "2020-05-05 18:22:58.541697"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est qui facilis omnis?"], ["description", "Sed nihil est laudantium."], ["date", "2020-05-06 18:22:58.543172"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.545048"], ["updated_at", "2020-05-05 18:22:58.545048"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas quam delectus facilis?"], ["description", "Fugit repellendus porro deserunt."], ["date", "2020-05-06 18:22:58.546930"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.547974"], ["updated_at", "2020-05-05 18:22:58.547974"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum porro nam a?"], ["description", "Temporibus ratione doloremque corrupti."], ["date", "2020-05-06 18:22:58.550731"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.552814"], ["updated_at", "2020-05-05 18:22:58.552814"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur cum ducimus delectus?"], ["description", "Laudantium voluptate sit praesentium."], ["date", "2020-05-06 18:22:58.554731"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.555687"], ["updated_at", "2020-05-05 18:22:58.555687"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore reprehenderit repellendus ducimus?"], ["description", "Ipsum et minus placeat."], ["date", "2020-05-06 18:22:58.558165"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.559834"], ["updated_at", "2020-05-05 18:22:58.559834"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo et pariatur est?"], ["description", "Ea est ipsam quas."], ["date", "2020-05-06 18:22:58.562766"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.564187"], ["updated_at", "2020-05-05 18:22:58.564187"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit maxime beatae ea?"], ["description", "Ipsa quia dolore blanditiis."], ["date", "2020-05-06 18:22:58.566377"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.567440"], ["updated_at", "2020-05-05 18:22:58.567440"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia mollitia voluptatem tempora?"], ["description", "Deserunt odio quis nemo."], ["date", "2020-05-06 18:22:58.569403"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.570705"], ["updated_at", "2020-05-05 18:22:58.570705"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam expedita molestiae doloremque?"], ["description", "Qui in facere reiciendis."], ["date", "2020-05-06 18:22:58.572882"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.574054"], ["updated_at", "2020-05-05 18:22:58.574054"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In omnis asperiores expedita?"], ["description", "Optio aut a nesciunt."], ["date", "2020-05-06 18:22:58.575921"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.579083"], ["updated_at", "2020-05-05 18:22:58.579083"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est sapiente recusandae sint?"], ["description", "Molestias fugiat assumenda delectus."], ["date", "2020-05-06 18:22:58.581937"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.584291"], ["updated_at", "2020-05-05 18:22:58.584291"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi voluptas expedita autem?"], ["description", "Earum qui odio nihil."], ["date", "2020-05-06 18:22:58.586461"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.588023"], ["updated_at", "2020-05-05 18:22:58.588023"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti ex in quam?"], ["description", "Consectetur omnis voluptatum amet."], ["date", "2020-05-06 18:22:58.589850"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.591353"], ["updated_at", "2020-05-05 18:22:58.591353"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:22:58 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.76ms) +Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 0.7ms | Allocations: 1085) +  (0.6ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dion Blanda"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TPikQe.VcJ4CFAlv5wWz7ujOaeGIlghWHN6Ue0TwLqeRYNkUF5rgy"], ["created_at", "2020-05-05 18:22:58.651354"], ["updated_at", "2020-05-05 18:22:58.651354"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusamus"], ["description", "Sint aspernatur officia amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:58.654573"], ["updated_at", "2020-05-05 18:22:58.654573"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut libero suscipit doloremque?"], ["description", "Distinctio ut dolor expedita."], ["date", "2020-05-06 18:22:58.656141"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.657508"], ["updated_at", "2020-05-05 18:22:58.657508"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident ut inventore dicta?"], ["description", "Quidem aut aut qui."], ["date", "2020-05-06 18:22:58.660019"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.661602"], ["updated_at", "2020-05-05 18:22:58.661602"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur autem vitae non?"], ["description", "Officiis ut non ex."], ["date", "2020-05-06 18:22:58.663958"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.665955"], ["updated_at", "2020-05-05 18:22:58.665955"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et qui reprehenderit voluptate?"], ["description", "Ut voluptatem voluptatum et."], ["date", "2020-05-06 18:22:58.667508"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.668454"], ["updated_at", "2020-05-05 18:22:58.668454"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum quidem ut fuga?"], ["description", "Dolores ut deserunt sed."], ["date", "2020-05-06 18:22:58.669738"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.670530"], ["updated_at", "2020-05-05 18:22:58.670530"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur labore impedit est?"], ["description", "Labore excepturi vero dolorem."], ["date", "2020-05-06 18:22:58.671711"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.672450"], ["updated_at", "2020-05-05 18:22:58.672450"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet dolor ipsam laudantium?"], ["description", "Facere ut eos nihil."], ["date", "2020-05-06 18:22:58.673593"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.674315"], ["updated_at", "2020-05-05 18:22:58.674315"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum totam pariatur ratione?"], ["description", "Voluptatem beatae autem explicabo."], ["date", "2020-05-06 18:22:58.675423"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.676103"], ["updated_at", "2020-05-05 18:22:58.676103"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis in harum quisquam?"], ["description", "Quam neque eligendi nisi."], ["date", "2020-05-06 18:22:58.677587"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.680278"], ["updated_at", "2020-05-05 18:22:58.680278"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex fuga laborum quasi?"], ["description", "Architecto dolorum corporis voluptatem."], ["date", "2020-05-06 18:22:58.682860"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.684238"], ["updated_at", "2020-05-05 18:22:58.684238"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea non reprehenderit sunt?"], ["description", "Explicabo maiores voluptas ut."], ["date", "2020-05-06 18:22:58.686435"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.687751"], ["updated_at", "2020-05-05 18:22:58.687751"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt aut distinctio in?"], ["description", "Est ratione quisquam sint."], ["date", "2020-05-06 18:22:58.689241"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.690074"], ["updated_at", "2020-05-05 18:22:58.690074"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt quae eligendi eum?"], ["description", "Eaque error et aliquid."], ["date", "2020-05-06 18:22:58.691422"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.692227"], ["updated_at", "2020-05-05 18:22:58.692227"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui rerum debitis unde?"], ["description", "Suscipit quo dignissimos fugiat."], ["date", "2020-05-06 18:22:58.693792"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.695221"], ["updated_at", "2020-05-05 18:22:58.695221"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed tempore laborum eveniet?"], ["description", "Commodi atque dolorem qui."], ["date", "2020-05-06 18:22:58.696645"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.697974"], ["updated_at", "2020-05-05 18:22:58.697974"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur dolores sapiente ut?"], ["description", "Esse assumenda illo veniam."], ["date", "2020-05-06 18:22:58.700103"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.701229"], ["updated_at", "2020-05-05 18:22:58.701229"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis esse sed non?"], ["description", "Explicabo provident natus dolore."], ["date", "2020-05-06 18:22:58.702763"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.703691"], ["updated_at", "2020-05-05 18:22:58.703691"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum incidunt voluptates aperiam?"], ["description", "Quibusdam occaecati blanditiis ad."], ["date", "2020-05-06 18:22:58.704948"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.705664"], ["updated_at", "2020-05-05 18:22:58.705664"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut ad itaque distinctio?"], ["description", "Molestias eos maxime aspernatur."], ["date", "2020-05-06 18:22:58.706789"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.707500"], ["updated_at", "2020-05-05 18:22:58.707500"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique assumenda et sed?"], ["description", "Molestiae nostrum et enim."], ["date", "2020-05-06 18:22:58.708606"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.709438"], ["updated_at", "2020-05-05 18:22:58.709438"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:22:58 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.53ms) +Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.2ms | Allocations: 1058) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mariano Hayes"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NFBBRuMx.x5wF/LUzE0lgOXRZLR1mP79sIo2/zmati2nA/xK2Fktq"], ["created_at", "2020-05-05 18:22:58.728929"], ["updated_at", "2020-05-05 18:22:58.728929"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officia"], ["description", "Sunt ut et libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:58.731936"], ["updated_at", "2020-05-05 18:22:58.731936"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et enim illum tenetur?"], ["description", "Veritatis dolorum eum nisi."], ["date", "2020-05-06 18:22:58.733465"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.734449"], ["updated_at", "2020-05-05 18:22:58.734449"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit et et accusantium?"], ["description", "Qui eius eum itaque."], ["date", "2020-05-06 18:22:58.735707"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.736509"], ["updated_at", "2020-05-05 18:22:58.736509"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad consequatur expedita ea?"], ["description", "Voluptas ut voluptatem enim."], ["date", "2020-05-06 18:22:58.738266"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.739952"], ["updated_at", "2020-05-05 18:22:58.739952"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea est quasi dolores?"], ["description", "Nesciunt eaque minus dolor."], ["date", "2020-05-06 18:22:58.741492"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.742338"], ["updated_at", "2020-05-05 18:22:58.742338"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi quo voluptas fugiat?"], ["description", "Sint minima occaecati enim."], ["date", "2020-05-06 18:22:58.744434"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.745444"], ["updated_at", "2020-05-05 18:22:58.745444"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla qui voluptatum quibusdam?"], ["description", "Veritatis ut placeat est."], ["date", "2020-05-06 18:22:58.746741"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.747492"], ["updated_at", "2020-05-05 18:22:58.747492"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi quia quod quis?"], ["description", "Quia consequuntur quo placeat."], ["date", "2020-05-06 18:22:58.748624"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.749314"], ["updated_at", "2020-05-05 18:22:58.749314"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex placeat soluta consequatur?"], ["description", "Odit sed officia voluptas."], ["date", "2020-05-06 18:22:58.750452"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.751151"], ["updated_at", "2020-05-05 18:22:58.751151"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id sed velit aut?"], ["description", "Facere eum rem unde."], ["date", "2020-05-06 18:22:58.752367"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.753289"], ["updated_at", "2020-05-05 18:22:58.753289"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit asperiores sapiente iste?"], ["description", "Eos placeat maxime ipsam."], ["date", "2020-05-06 18:22:58.755220"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.756108"], ["updated_at", "2020-05-05 18:22:58.756108"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut nam repudiandae aut?"], ["description", "Voluptatem quis excepturi et."], ["date", "2020-05-06 18:22:58.757592"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.759130"], ["updated_at", "2020-05-05 18:22:58.759130"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente eos quis amet?"], ["description", "Eaque nisi eius debitis."], ["date", "2020-05-06 18:22:58.761081"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.762709"], ["updated_at", "2020-05-05 18:22:58.762709"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis cumque et hic?"], ["description", "Libero rem officia nihil."], ["date", "2020-05-06 18:22:58.765129"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.766352"], ["updated_at", "2020-05-05 18:22:58.766352"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur qui mollitia autem?"], ["description", "Voluptatem nulla et cum."], ["date", "2020-05-06 18:22:58.768240"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.770185"], ["updated_at", "2020-05-05 18:22:58.770185"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam officia error omnis?"], ["description", "Corporis ut dicta quia."], ["date", "2020-05-06 18:22:58.772474"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.774815"], ["updated_at", "2020-05-05 18:22:58.774815"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia at quibusdam sed?"], ["description", "Aliquam accusamus exercitationem quia."], ["date", "2020-05-06 18:22:58.776384"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.777224"], ["updated_at", "2020-05-05 18:22:58.777224"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores aut iusto beatae?"], ["description", "In veritatis aut totam."], ["date", "2020-05-06 18:22:58.780994"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.782139"], ["updated_at", "2020-05-05 18:22:58.782139"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum voluptatem reprehenderit ratione?"], ["description", "Corrupti eum suscipit dolor."], ["date", "2020-05-06 18:22:58.783769"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.784618"], ["updated_at", "2020-05-05 18:22:58.784618"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem dicta laboriosam ut?"], ["description", "Illum ad voluptates sed."], ["date", "2020-05-06 18:22:58.785962"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.786753"], ["updated_at", "2020-05-05 18:22:58.786753"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum veritatis dolores quo?"], ["description", "Rerum et ut saepe."], ["date", "2020-05-06 18:22:58.788056"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.788742"], ["updated_at", "2020-05-05 18:22:58.788742"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:22:58 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 404 Not Found in 3ms (Views: 0.7ms | ActiveRecord: 0.2ms | Allocations: 884) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Iris Johns"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JnBp2LerW4uC1cTA2VGIK./LpGdCwSbPlbRqCdnAnmEoDUW4A6yM."], ["created_at", "2020-05-05 18:22:58.807538"], ["updated_at", "2020-05-05 18:22:58.807538"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "in"], ["description", "Voluptatum aut aut ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:58.811588"], ["updated_at", "2020-05-05 18:22:58.811588"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae et dolor explicabo?"], ["description", "Sunt explicabo voluptatibus fuga."], ["date", "2020-05-06 18:22:58.814174"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.815445"], ["updated_at", "2020-05-05 18:22:58.815445"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat et in ut?"], ["description", "Illum officia repudiandae quis."], ["date", "2020-05-06 18:22:58.817248"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.818730"], ["updated_at", "2020-05-05 18:22:58.818730"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam repellat suscipit et?"], ["description", "Doloribus et ullam dolores."], ["date", "2020-05-06 18:22:58.821075"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.822542"], ["updated_at", "2020-05-05 18:22:58.822542"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores pariatur neque commodi?"], ["description", "Perspiciatis enim accusantium voluptatibus."], ["date", "2020-05-06 18:22:58.824696"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.825689"], ["updated_at", "2020-05-05 18:22:58.825689"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor error autem atque?"], ["description", "Voluptatem eum animi modi."], ["date", "2020-05-06 18:22:58.827559"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.828968"], ["updated_at", "2020-05-05 18:22:58.828968"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur ut fugit autem?"], ["description", "Repellat sapiente nesciunt aperiam."], ["date", "2020-05-06 18:22:58.830423"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.831312"], ["updated_at", "2020-05-05 18:22:58.831312"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis omnis aliquam aspernatur?"], ["description", "Tempore unde asperiores sint."], ["date", "2020-05-06 18:22:58.832650"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.833539"], ["updated_at", "2020-05-05 18:22:58.833539"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed esse quibusdam suscipit?"], ["description", "Numquam labore voluptas consequatur."], ["date", "2020-05-06 18:22:58.834928"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.835829"], ["updated_at", "2020-05-05 18:22:58.835829"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident exercitationem aut repellendus?"], ["description", "Qui beatae nam quisquam."], ["date", "2020-05-06 18:22:58.837110"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.838068"], ["updated_at", "2020-05-05 18:22:58.838068"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et sapiente aut veniam?"], ["description", "Quo qui incidunt voluptas."], ["date", "2020-05-06 18:22:58.841429"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.842502"], ["updated_at", "2020-05-05 18:22:58.842502"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda dicta ipsam sunt?"], ["description", "Sequi perspiciatis quo et."], ["date", "2020-05-06 18:22:58.844421"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.845727"], ["updated_at", "2020-05-05 18:22:58.845727"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt voluptates sequi aut?"], ["description", "Quis autem asperiores accusamus."], ["date", "2020-05-06 18:22:58.847511"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.848653"], ["updated_at", "2020-05-05 18:22:58.848653"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim sed culpa libero?"], ["description", "Dolores fuga omnis et."], ["date", "2020-05-06 18:22:58.850311"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.851387"], ["updated_at", "2020-05-05 18:22:58.851387"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam incidunt culpa earum?"], ["description", "Omnis id molestiae corrupti."], ["date", "2020-05-06 18:22:58.853086"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.854239"], ["updated_at", "2020-05-05 18:22:58.854239"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error ad officia maxime?"], ["description", "Est eos in voluptas."], ["date", "2020-05-06 18:22:58.855967"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.857031"], ["updated_at", "2020-05-05 18:22:58.857031"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit deleniti voluptas commodi?"], ["description", "Amet ut tempore eum."], ["date", "2020-05-06 18:22:58.859153"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.860984"], ["updated_at", "2020-05-05 18:22:58.860984"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit necessitatibus molestiae illo?"], ["description", "Adipisci quod fugiat sit."], ["date", "2020-05-06 18:22:58.864010"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.865254"], ["updated_at", "2020-05-05 18:22:58.865254"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem similique in consequatur?"], ["description", "Ad eius laborum perspiciatis."], ["date", "2020-05-06 18:22:58.867027"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.868073"], ["updated_at", "2020-05-05 18:22:58.868073"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem commodi laboriosam magnam?"], ["description", "Eligendi placeat autem ut."], ["date", "2020-05-06 18:22:58.869573"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.870596"], ["updated_at", "2020-05-05 18:22:58.870596"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero beatae deleniti sunt?"], ["description", "Fugit dolor sint est."], ["date", "2020-05-06 18:22:58.872106"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.873061"], ["updated_at", "2020-05-05 18:22:58.873061"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:22:58 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.19ms) +Completed 404 Not Found in 3ms (Views: 1.1ms | ActiveRecord: 0.2ms | Allocations: 867) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (9.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Darrel Kassulke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$yN9GI7Eka2CzhxjIo5m6RedOUMUIUTjKYfZ8p0FCRblzZFeESIT/2"], ["created_at", "2020-05-05 18:22:58.891970"], ["updated_at", "2020-05-05 18:22:58.891970"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consectetur"], ["description", "Laudantium accusamus ut et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:58.904843"], ["updated_at", "2020-05-05 18:22:58.904843"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis qui pariatur labore?"], ["description", "Sit ullam voluptatem possimus."], ["date", "2020-05-06 18:22:58.906982"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.908320"], ["updated_at", "2020-05-05 18:22:58.908320"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui quasi voluptas molestiae?"], ["description", "Illo et voluptas accusantium."], ["date", "2020-05-06 18:22:58.910408"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.913198"], ["updated_at", "2020-05-05 18:22:58.913198"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe sunt qui ab?"], ["description", "Fugiat est qui dignissimos."], ["date", "2020-05-06 18:22:58.914991"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.916380"], ["updated_at", "2020-05-05 18:22:58.916380"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.5ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et est quod saepe?"], ["description", "Veniam consequuntur vel voluptatibus."], ["date", "2020-05-06 18:22:58.918020"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.921011"], ["updated_at", "2020-05-05 18:22:58.921011"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas illo ducimus minima?"], ["description", "Adipisci quia tempore sit."], ["date", "2020-05-06 18:22:58.923181"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.924340"], ["updated_at", "2020-05-05 18:22:58.924340"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit est molestiae nihil?"], ["description", "Autem dolorum earum ullam."], ["date", "2020-05-06 18:22:58.926161"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.927352"], ["updated_at", "2020-05-05 18:22:58.927352"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis consequatur doloremque nobis?"], ["description", "Enim dolor officiis sequi."], ["date", "2020-05-06 18:22:58.928981"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.930008"], ["updated_at", "2020-05-05 18:22:58.930008"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis rerum aut magnam?"], ["description", "Dolore labore cum nobis."], ["date", "2020-05-06 18:22:58.931772"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.933112"], ["updated_at", "2020-05-05 18:22:58.933112"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum odit cumque consequatur?"], ["description", "Modi occaecati dolor in."], ["date", "2020-05-06 18:22:58.935121"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.936273"], ["updated_at", "2020-05-05 18:22:58.936273"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique esse dolorem ab?"], ["description", "Autem doloremque quia dolores."], ["date", "2020-05-06 18:22:58.938740"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.941155"], ["updated_at", "2020-05-05 18:22:58.941155"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum ratione ex inventore?"], ["description", "Est id aliquid ullam."], ["date", "2020-05-06 18:22:58.943685"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.945471"], ["updated_at", "2020-05-05 18:22:58.945471"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis consequatur sapiente iste?"], ["description", "Delectus aspernatur dolores ut."], ["date", "2020-05-06 18:22:58.947580"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.948715"], ["updated_at", "2020-05-05 18:22:58.948715"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita laborum cum voluptatibus?"], ["description", "Quia eveniet repudiandae omnis."], ["date", "2020-05-06 18:22:58.950373"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.951344"], ["updated_at", "2020-05-05 18:22:58.951344"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error labore dolore blanditiis?"], ["description", "Quis voluptates sint eius."], ["date", "2020-05-06 18:22:58.953043"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.954050"], ["updated_at", "2020-05-05 18:22:58.954050"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt odit dolorum ut?"], ["description", "Libero quam et autem."], ["date", "2020-05-06 18:22:58.955600"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.956554"], ["updated_at", "2020-05-05 18:22:58.956554"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis quod architecto id?"], ["description", "Minus eos qui pariatur."], ["date", "2020-05-06 18:22:58.958111"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.959082"], ["updated_at", "2020-05-05 18:22:58.959082"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore voluptatem a nobis?"], ["description", "Quos porro nostrum rerum."], ["date", "2020-05-06 18:22:58.961830"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.963676"], ["updated_at", "2020-05-05 18:22:58.963676"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus aperiam eos totam?"], ["description", "Ut illum omnis quis."], ["date", "2020-05-06 18:22:58.965899"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.967105"], ["updated_at", "2020-05-05 18:22:58.967105"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem et dolor consequatur?"], ["description", "Tempore alias rem cumque."], ["date", "2020-05-06 18:22:58.968642"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.969568"], ["updated_at", "2020-05-05 18:22:58.969568"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima ea beatae iste?"], ["description", "Doloribus molestias ut iste."], ["date", "2020-05-06 18:22:58.970900"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:58.971754"], ["updated_at", "2020-05-05 18:22:58.971754"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:22:58 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"title"=>"Visit Narnia", "description"=>"false", "meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 2135) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Harrison Wisoky I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/338fS523EwCAl2dlFNsS.5zMOi1QJi/sQ/KITpVhAYvF6SHBE5W2"], ["created_at", "2020-05-05 18:22:59.232331"], ["updated_at", "2020-05-05 18:22:59.232331"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Ut neque et ipsa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.235687"], ["updated_at", "2020-05-05 18:22:59.235687"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad aliquam commodi qui?"], ["description", "Voluptatem similique qui ab."], ["date", "2020-05-06 18:22:59.237810"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.239149"], ["updated_at", "2020-05-05 18:22:59.239149"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque et non incidunt?"], ["description", "Perspiciatis illo sunt ut."], ["date", "2020-05-06 18:22:59.241437"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.243715"], ["updated_at", "2020-05-05 18:22:59.243715"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis in nihil quisquam?"], ["description", "Incidunt libero ratione nostrum."], ["date", "2020-05-06 18:22:59.246478"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.248937"], ["updated_at", "2020-05-05 18:22:59.248937"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia et rerum reprehenderit?"], ["description", "Aut rerum vel reprehenderit."], ["date", "2020-05-06 18:22:59.250736"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.251669"], ["updated_at", "2020-05-05 18:22:59.251669"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas esse fugit harum?"], ["description", "Autem omnis ex delectus."], ["date", "2020-05-06 18:22:59.252893"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.253734"], ["updated_at", "2020-05-05 18:22:59.253734"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt ullam est quia?"], ["description", "Distinctio dolore repellat fugit."], ["date", "2020-05-06 18:22:59.254997"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.255836"], ["updated_at", "2020-05-05 18:22:59.255836"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum ad perspiciatis consequatur?"], ["description", "Est laudantium ut eum."], ["date", "2020-05-06 18:22:59.257033"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.279693"], ["updated_at", "2020-05-05 18:22:59.279693"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et harum nostrum fugit?"], ["description", "Iste non quaerat error."], ["date", "2020-05-06 18:22:59.281876"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.283648"], ["updated_at", "2020-05-05 18:22:59.283648"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut minima quia delectus?"], ["description", "Itaque id accusantium odio."], ["date", "2020-05-06 18:22:59.285358"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.286403"], ["updated_at", "2020-05-05 18:22:59.286403"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias ea consequatur expedita?"], ["description", "Dolores atque accusantium nostrum."], ["date", "2020-05-06 18:22:59.288788"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.289819"], ["updated_at", "2020-05-05 18:22:59.289819"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates quia dolore dicta?"], ["description", "Officia amet eum ea."], ["date", "2020-05-06 18:22:59.291508"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.292626"], ["updated_at", "2020-05-05 18:22:59.292626"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi porro sunt rerum?"], ["description", "Id dolores quia incidunt."], ["date", "2020-05-06 18:22:59.294741"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.295892"], ["updated_at", "2020-05-05 18:22:59.295892"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates est dolorum ratione?"], ["description", "Nemo magni quasi nihil."], ["date", "2020-05-06 18:22:59.297370"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.298302"], ["updated_at", "2020-05-05 18:22:59.298302"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum sed quae maxime?"], ["description", "Quos neque culpa ducimus."], ["date", "2020-05-06 18:22:59.299755"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.300733"], ["updated_at", "2020-05-05 18:22:59.300733"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit qui fugiat dolorum?"], ["description", "Omnis ea iusto corrupti."], ["date", "2020-05-06 18:22:59.303690"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.304955"], ["updated_at", "2020-05-05 18:22:59.304955"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem nulla ut eligendi?"], ["description", "Harum voluptatem accusamus consequatur."], ["date", "2020-05-06 18:22:59.307818"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.309167"], ["updated_at", "2020-05-05 18:22:59.309167"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur eum dolorem cum?"], ["description", "Sed ipsum nostrum qui."], ["date", "2020-05-06 18:22:59.311346"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.313395"], ["updated_at", "2020-05-05 18:22:59.313395"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel quia quis dignissimos?"], ["description", "Ipsa facere quia reprehenderit."], ["date", "2020-05-06 18:22:59.315120"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.316887"], ["updated_at", "2020-05-05 18:22:59.316887"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis repellat et officiis?"], ["description", "Illum enim facere nostrum."], ["date", "2020-05-06 18:22:59.318855"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.319970"], ["updated_at", "2020-05-05 18:22:59.319970"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa distinctio officiis temporibus?"], ["description", "Dolorem ab aut ea."], ["date", "2020-05-06 18:22:59.323098"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.324871"], ["updated_at", "2020-05-05 18:22:59.324871"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:22:59 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 2785) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Laurette Gottlieb"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aj2dA3l6R6t6XKYO3ZCWfuNYS3sefYgqYZPVCpQOd/N4/DHDOJyVy"], ["created_at", "2020-05-05 18:22:59.347093"], ["updated_at", "2020-05-05 18:22:59.347093"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quibusdam"], ["description", "Quae quaerat ea in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.350255"], ["updated_at", "2020-05-05 18:22:59.350255"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum ut et nesciunt?"], ["description", "Officia deserunt velit non."], ["date", "2020-05-06 18:22:59.351840"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.352930"], ["updated_at", "2020-05-05 18:22:59.352930"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id voluptate eum ut?"], ["description", "Aperiam sunt commodi nobis."], ["date", "2020-05-06 18:22:59.354381"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.355135"], ["updated_at", "2020-05-05 18:22:59.355135"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos assumenda voluptatum sed?"], ["description", "Natus quisquam est rem."], ["date", "2020-05-06 18:22:59.356289"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.356967"], ["updated_at", "2020-05-05 18:22:59.356967"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo provident quia sit?"], ["description", "Fuga deleniti dolorem maiores."], ["date", "2020-05-06 18:22:59.358103"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.358787"], ["updated_at", "2020-05-05 18:22:59.358787"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro rem suscipit autem?"], ["description", "Consequuntur rerum aut consequatur."], ["date", "2020-05-06 18:22:59.359931"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.360657"], ["updated_at", "2020-05-05 18:22:59.360657"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est consequatur rerum saepe?"], ["description", "Sapiente est molestiae porro."], ["date", "2020-05-06 18:22:59.363683"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.365518"], ["updated_at", "2020-05-05 18:22:59.365518"]] +  (0.4ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis magnam dolores non?"], ["description", "Non error non necessitatibus."], ["date", "2020-05-06 18:22:59.368717"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.370812"], ["updated_at", "2020-05-05 18:22:59.370812"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem corporis saepe velit?"], ["description", "Qui eum praesentium qui."], ["date", "2020-05-06 18:22:59.372728"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.374092"], ["updated_at", "2020-05-05 18:22:59.374092"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique eveniet et enim?"], ["description", "Qui neque doloribus ut."], ["date", "2020-05-06 18:22:59.375632"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.376574"], ["updated_at", "2020-05-05 18:22:59.376574"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit non laudantium voluptate?"], ["description", "Adipisci quisquam mollitia praesentium."], ["date", "2020-05-06 18:22:59.379830"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.380948"], ["updated_at", "2020-05-05 18:22:59.380948"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est autem illo placeat?"], ["description", "Blanditiis dolores odit iusto."], ["date", "2020-05-06 18:22:59.384393"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.385456"], ["updated_at", "2020-05-05 18:22:59.385456"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam aut et a?"], ["description", "Beatae et quia in."], ["date", "2020-05-06 18:22:59.387021"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.388009"], ["updated_at", "2020-05-05 18:22:59.388009"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut expedita omnis alias?"], ["description", "Non quasi ea laudantium."], ["date", "2020-05-06 18:22:59.389661"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.390763"], ["updated_at", "2020-05-05 18:22:59.390763"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam ut rerum nam?"], ["description", "Autem esse voluptas repellat."], ["date", "2020-05-06 18:22:59.392250"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.393555"], ["updated_at", "2020-05-05 18:22:59.393555"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et praesentium dignissimos dolores?"], ["description", "Suscipit illum beatae magnam."], ["date", "2020-05-06 18:22:59.396101"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.397747"], ["updated_at", "2020-05-05 18:22:59.397747"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id et fugiat et?"], ["description", "Dicta ut praesentium suscipit."], ["date", "2020-05-06 18:22:59.399752"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.400795"], ["updated_at", "2020-05-05 18:22:59.400795"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis et modi ipsam?"], ["description", "Hic magni accusantium occaecati."], ["date", "2020-05-06 18:22:59.404335"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.405576"], ["updated_at", "2020-05-05 18:22:59.405576"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non nostrum cumque impedit?"], ["description", "Qui amet eos iure."], ["date", "2020-05-06 18:22:59.407638"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.409060"], ["updated_at", "2020-05-05 18:22:59.409060"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore est sequi perferendis?"], ["description", "Suscipit sint quos est."], ["date", "2020-05-06 18:22:59.410785"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.412973"], ["updated_at", "2020-05-05 18:22:59.412973"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt quia consequuntur nostrum?"], ["description", "Incidunt corporis reprehenderit delectus."], ["date", "2020-05-06 18:22:59.415632"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:22:59.416886"], ["updated_at", "2020-05-05 18:22:59.416886"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:22:59 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 422 Unprocessable Entity in 7ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 2697) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquid"], ["description", "Consectetur in molestiae aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.438990"], ["updated_at", "2020-05-05 18:22:59.438990"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "possimus"], ["description", "Pariatur ut sit vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.442694"], ["updated_at", "2020-05-05 18:22:59.442694"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "temporibus"], ["description", "Eos ipsam deleniti soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.446361"], ["updated_at", "2020-05-05 18:22:59.446361"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facilis"], ["description", "Atque molestiae vel provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.449866"], ["updated_at", "2020-05-05 18:22:59.449866"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maiores"], ["description", "Quam consequatur minima facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.451990"], ["updated_at", "2020-05-05 18:22:59.451990"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quidem"], ["description", "Sed velit et consectetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.453693"], ["updated_at", "2020-05-05 18:22:59.453693"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Aut est rerum odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.455088"], ["updated_at", "2020-05-05 18:22:59.455088"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "at"], ["description", "Repellendus qui suscipit inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.456469"], ["updated_at", "2020-05-05 18:22:59.456469"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorum"], ["description", "Mollitia vel et odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.457895"], ["updated_at", "2020-05-05 18:22:59.457895"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magni"], ["description", "Fugiat hic assumenda et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.459267"], ["updated_at", "2020-05-05 18:22:59.459267"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Julio Mitchell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$S/0UQFk3oYJ9nMSWqwk2w.8uQJaLkwl.3pvwfLlRtYfV9R73NT46a"], ["created_at", "2020-05-05 18:22:59.462299"], ["updated_at", "2020-05-05 18:22:59.462299"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:22:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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.3ms | ActiveRecord: 0.3ms | Allocations: 3005) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "optio"], ["description", "Ea sint illum minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.487098"], ["updated_at", "2020-05-05 18:22:59.487098"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Corporis aut recusandae dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.489727"], ["updated_at", "2020-05-05 18:22:59.489727"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Aut sint delectus omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.491123"], ["updated_at", "2020-05-05 18:22:59.491123"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Excepturi magnam ratione et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.492348"], ["updated_at", "2020-05-05 18:22:59.492348"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Magni aliquam quis ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.494058"], ["updated_at", "2020-05-05 18:22:59.494058"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veniam"], ["description", "Vel aut praesentium modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.496128"], ["updated_at", "2020-05-05 18:22:59.496128"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempora"], ["description", "Maiores nemo et autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.497437"], ["updated_at", "2020-05-05 18:22:59.497437"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quidem"], ["description", "Unde facere iure odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.498712"], ["updated_at", "2020-05-05 18:22:59.498712"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsam"], ["description", "Enim qui eos voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.499986"], ["updated_at", "2020-05-05 18:22:59.499986"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquid"], ["description", "Ut eum quos quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.501241"], ["updated_at", "2020-05-05 18:22:59.501241"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Pat Huel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$AqAPp6aBbxcnhg69eEofH.605bxdS7fX.mTC.FYSQBpXmiTCwNnle"], ["created_at", "2020-05-05 18:22:59.504532"], ["updated_at", "2020-05-05 18:22:59.504532"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:22:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.68ms) +Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms | Allocations: 2841) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Accusamus incidunt ipsum id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.526698"], ["updated_at", "2020-05-05 18:22:59.526698"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Qui harum tenetur quas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.529678"], ["updated_at", "2020-05-05 18:22:59.529678"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ab"], ["description", "Eveniet repellendus voluptate velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.531164"], ["updated_at", "2020-05-05 18:22:59.531164"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ratione"], ["description", "Quasi enim doloribus commodi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.532440"], ["updated_at", "2020-05-05 18:22:59.532440"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "unde"], ["description", "Repellat temporibus dolores recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.533730"], ["updated_at", "2020-05-05 18:22:59.533730"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellat"], ["description", "Non eligendi aut quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.535021"], ["updated_at", "2020-05-05 18:22:59.535021"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestias"], ["description", "Voluptatem ut illo id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.536271"], ["updated_at", "2020-05-05 18:22:59.536271"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nisi"], ["description", "Ut autem consectetur expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.537546"], ["updated_at", "2020-05-05 18:22:59.537546"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempore"], ["description", "Magnam tempore ut aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.538794"], ["updated_at", "2020-05-05 18:22:59.538794"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "recusandae"], ["description", "Velit excepturi non sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.540063"], ["updated_at", "2020-05-05 18:22:59.540063"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dorinda Johns"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KjXHJ83LCbDjDMNxata12efrYbfdsI1WS1rIx9qHozNz5dLQg7qAW"], ["created_at", "2020-05-05 18:22:59.542930"], ["updated_at", "2020-05-05 18:22:59.542930"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:22:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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 GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:22:59 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.3ms) +Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.2ms | Allocations: 1242) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Est voluptates sequi sapiente."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.569452"], ["updated_at", "2020-05-05 18:22:59.569452"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Inventore ipsam soluta quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.572156"], ["updated_at", "2020-05-05 18:22:59.572156"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "optio"], ["description", "Voluptatem quia in deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.573631"], ["updated_at", "2020-05-05 18:22:59.573631"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "atque"], ["description", "Ut beatae ipsum officiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.574891"], ["updated_at", "2020-05-05 18:22:59.574891"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Exercitationem voluptates deserunt enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.576218"], ["updated_at", "2020-05-05 18:22:59.576218"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Totam voluptatum neque consectetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.577439"], ["updated_at", "2020-05-05 18:22:59.577439"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rem"], ["description", "Et ut velit ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.578905"], ["updated_at", "2020-05-05 18:22:59.578905"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iusto"], ["description", "Laboriosam voluptas ut ipsum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.580692"], ["updated_at", "2020-05-05 18:22:59.580692"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellendus"], ["description", "Dicta molestiae sint molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.582394"], ["updated_at", "2020-05-05 18:22:59.582394"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Facere fugit neque id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.585263"], ["updated_at", "2020-05-05 18:22:59.585263"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Taina Kutch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$AbXeAEFcrJyOiyQUXY51qORVZCiLWoEfVyjbzub98ywmQPQa4kELa"], ["created_at", "2020-05-05 18:22:59.588907"], ["updated_at", "2020-05-05 18:22:59.588907"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:22:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.9ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:22:59 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.24ms) +Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.2ms | Allocations: 1240) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Porro autem vel quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.613114"], ["updated_at", "2020-05-05 18:22:59.613114"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsam"], ["description", "Quia sint non aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.616001"], ["updated_at", "2020-05-05 18:22:59.616001"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsam"], ["description", "Voluptas id quo cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.617496"], ["updated_at", "2020-05-05 18:22:59.617496"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nemo"], ["description", "Ut animi omnis earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.618789"], ["updated_at", "2020-05-05 18:22:59.618789"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Aut voluptatem veniam unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.620484"], ["updated_at", "2020-05-05 18:22:59.620484"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Voluptatem fugiat ut eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.621848"], ["updated_at", "2020-05-05 18:22:59.621848"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Dolores qui id rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.624384"], ["updated_at", "2020-05-05 18:22:59.624384"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Dolorum qui fugiat vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.626700"], ["updated_at", "2020-05-05 18:22:59.626700"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Omnis nihil id vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.629707"], ["updated_at", "2020-05-05 18:22:59.629707"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Eum ab dolor sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.632554"], ["updated_at", "2020-05-05 18:22:59.632554"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mickey Rempel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pfDTA5Mky5FBo.mYCfcJZufuj0z8HZKKk6rBh3Cwxhy4lCJ.5vK0i"], ["created_at", "2020-05-05 18:22:59.635296"], ["updated_at", "2020-05-05 18:22:59.635296"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:22:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.1ms | Allocations: 2838) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:22:59 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 512) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (23.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Quo dolore occaecati quisquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.657778"], ["updated_at", "2020-05-05 18:22:59.657778"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatum"], ["description", "Tempora sed non reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.683941"], ["updated_at", "2020-05-05 18:22:59.683941"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Voluptas corporis non autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.686765"], ["updated_at", "2020-05-05 18:22:59.686765"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Necessitatibus reiciendis similique repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.689385"], ["updated_at", "2020-05-05 18:22:59.689385"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sapiente"], ["description", "Modi vitae dolor sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.691549"], ["updated_at", "2020-05-05 18:22:59.691549"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquid"], ["description", "Voluptas nulla excepturi aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.693122"], ["updated_at", "2020-05-05 18:22:59.693122"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quae"], ["description", "Fugit rerum doloremque recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.694445"], ["updated_at", "2020-05-05 18:22:59.694445"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "excepturi"], ["description", "Rerum sint dolor omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.696283"], ["updated_at", "2020-05-05 18:22:59.696283"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Quia est quod ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.697683"], ["updated_at", "2020-05-05 18:22:59.697683"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Sit quam omnis modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.698983"], ["updated_at", "2020-05-05 18:22:59.698983"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bernadine Osinski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$lY0mwShIFAq8B3a4yHwwQuX4I7rTqlt0WI88zZBsbLZmrSEVn/282"], ["created_at", "2020-05-05 18:22:59.701559"], ["updated_at", "2020-05-05 18:22:59.701559"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:22:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.22ms) +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 15:22:59 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (26.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.3ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "placeat"], ["description", "Odio beatae dolor voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.746970"], ["updated_at", "2020-05-05 18:22:59.746970"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Aut sed possimus quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.750201"], ["updated_at", "2020-05-05 18:22:59.750201"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusamus"], ["description", "Recusandae aut non distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.752050"], ["updated_at", "2020-05-05 18:22:59.752050"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Assumenda ut occaecati vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.753978"], ["updated_at", "2020-05-05 18:22:59.753978"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quas"], ["description", "Beatae accusantium et voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.756267"], ["updated_at", "2020-05-05 18:22:59.756267"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "Alias autem distinctio voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.758131"], ["updated_at", "2020-05-05 18:22:59.758131"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Sint autem sed sequi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.760499"], ["updated_at", "2020-05-05 18:22:59.760499"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Non amet et expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.762444"], ["updated_at", "2020-05-05 18:22:59.762444"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "placeat"], ["description", "Possimus et laboriosam non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.766783"], ["updated_at", "2020-05-05 18:22:59.766783"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "beatae"], ["description", "Maiores recusandae asperiores quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.769970"], ["updated_at", "2020-05-05 18:22:59.769970"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Myrle Towne"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CI63QPdqnTWe2..kWFFpY..TGlBLByjPkrdBzLGj264YRdPBHyKpC"], ["created_at", "2020-05-05 18:22:59.773564"], ["updated_at", "2020-05-05 18:22:59.773564"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:22:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | Allocations: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:22:59 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:22:59.799732"], ["updated_at", "2020-05-05 18:22:59.799732"], ["created_by", "1"]] +  (0.4ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.54ms) +Completed 201 Created in 24ms (Views: 1.0ms | ActiveRecord: 1.5ms | Allocations: 6223) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Et repellat officia non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.818716"], ["updated_at", "2020-05-05 18:22:59.818716"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quae"], ["description", "Rerum qui blanditiis libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.821579"], ["updated_at", "2020-05-05 18:22:59.821579"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Sed blanditiis voluptatum consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.823073"], ["updated_at", "2020-05-05 18:22:59.823073"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "Quo aut voluptas itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.825093"], ["updated_at", "2020-05-05 18:22:59.825093"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Quis nam nihil pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.828069"], ["updated_at", "2020-05-05 18:22:59.828069"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Temporibus qui voluptas eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.832279"], ["updated_at", "2020-05-05 18:22:59.832279"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "in"], ["description", "Autem et laboriosam neque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.834115"], ["updated_at", "2020-05-05 18:22:59.834115"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deserunt"], ["description", "Enim in voluptas vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.835427"], ["updated_at", "2020-05-05 18:22:59.835427"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Corrupti explicabo qui vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.836694"], ["updated_at", "2020-05-05 18:22:59.836694"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Necessitatibus dolorum aliquid eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.837935"], ["updated_at", "2020-05-05 18:22:59.837935"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Wendell Von V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$eoloriAxIwhuzd1IMIXe7upb0f7G.VgfxgpYuASlTlK69Rhee.lf6"], ["created_at", "2020-05-05 18:22:59.840523"], ["updated_at", "2020-05-05 18:22:59.840523"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:22:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.95ms) +Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.2ms | Allocations: 2845) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:22:59 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:22:59.854831"], ["updated_at", "2020-05-05 18:22:59.854831"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.43ms) +Completed 201 Created in 5ms (Views: 0.8ms | ActiveRecord: 0.7ms | Allocations: 2251) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Quam ut ratione quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.869972"], ["updated_at", "2020-05-05 18:22:59.869972"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "provident"], ["description", "Nemo blanditiis accusamus ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.872886"], ["updated_at", "2020-05-05 18:22:59.872886"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "labore"], ["description", "Cupiditate vel quidem occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.874424"], ["updated_at", "2020-05-05 18:22:59.874424"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatibus"], ["description", "Quidem voluptatum molestias repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.875775"], ["updated_at", "2020-05-05 18:22:59.875775"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Laboriosam veritatis veniam perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.877092"], ["updated_at", "2020-05-05 18:22:59.877092"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Sit enim omnis ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.878595"], ["updated_at", "2020-05-05 18:22:59.878595"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "modi"], ["description", "Ipsum cupiditate blanditiis dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.880707"], ["updated_at", "2020-05-05 18:22:59.880707"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Non nesciunt enim ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.882084"], ["updated_at", "2020-05-05 18:22:59.882084"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quaerat"], ["description", "Sed explicabo necessitatibus voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.883429"], ["updated_at", "2020-05-05 18:22:59.883429"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Optio exercitationem vel temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.885560"], ["updated_at", "2020-05-05 18:22:59.885560"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mohammad Bogan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FQxS9Gu0zXOlCIjuTmGAROCgNS/CTxkOcKtburmgUzD9eR9U0ZaPi"], ["created_at", "2020-05-05 18:22:59.889448"], ["updated_at", "2020-05-05 18:22:59.889448"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:22:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.23ms) +Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.3ms | Allocations: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:22:59 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.15ms) +Completed 422 Unprocessable Entity in 7ms (Views: 0.9ms | ActiveRecord: 0.1ms | Allocations: 4006) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illo"], ["description", "Eos error sunt consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.917597"], ["updated_at", "2020-05-05 18:22:59.917597"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Facere eius nam atque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.920750"], ["updated_at", "2020-05-05 18:22:59.920750"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Corrupti itaque id impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.922295"], ["updated_at", "2020-05-05 18:22:59.922295"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "libero"], ["description", "Labore asperiores perspiciatis qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.923693"], ["updated_at", "2020-05-05 18:22:59.923693"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maiores"], ["description", "Qui est ipsum eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.926132"], ["updated_at", "2020-05-05 18:22:59.926132"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "unde"], ["description", "Aspernatur debitis rerum exercitationem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.928499"], ["updated_at", "2020-05-05 18:22:59.928499"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Quam a nihil perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.930901"], ["updated_at", "2020-05-05 18:22:59.930901"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "culpa"], ["description", "Veritatis eaque magnam eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.933047"], ["updated_at", "2020-05-05 18:22:59.933047"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "praesentium"], ["description", "Sint fugiat itaque sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.934596"], ["updated_at", "2020-05-05 18:22:59.934596"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugit"], ["description", "Fugiat omnis magnam eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.935904"], ["updated_at", "2020-05-05 18:22:59.935904"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marcene Kuvalis"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BU01UolD/Bi5qAYN/H.BZ.bwMHk2lF0DzCQD2hlE4LOoqrdFrybcW"], ["created_at", "2020-05-05 18:22:59.938609"], ["updated_at", "2020-05-05 18:22:59.938609"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:22:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.75ms) +Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.1ms | Allocations: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:22:59 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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.2ms | Allocations: 3697) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Culpa voluptatem in vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.968180"], ["updated_at", "2020-05-05 18:22:59.968180"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "reprehenderit"], ["description", "Tempora possimus qui sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.971201"], ["updated_at", "2020-05-05 18:22:59.971201"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellendus"], ["description", "Placeat provident aut consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.972728"], ["updated_at", "2020-05-05 18:22:59.972728"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Temporibus quisquam sunt animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.974230"], ["updated_at", "2020-05-05 18:22:59.974230"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Numquam exercitationem ab explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.975737"], ["updated_at", "2020-05-05 18:22:59.975737"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Excepturi omnis nostrum unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.977255"], ["updated_at", "2020-05-05 18:22:59.977255"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Magnam pariatur unde maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.978599"], ["updated_at", "2020-05-05 18:22:59.978599"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Est necessitatibus magnam beatae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.980359"], ["updated_at", "2020-05-05 18:22:59.980359"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatum"], ["description", "Deleniti maiores sit neque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.981789"], ["updated_at", "2020-05-05 18:22:59.981789"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Facere repellat aut et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:22:59.983212"], ["updated_at", "2020-05-05 18:22:59.983212"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Robena Schuppe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BOBkQ7FO1I.56Eph4.Z4auf..dQlmOLXJw8MZ2bviF8o19GFX5zuu"], ["created_at", "2020-05-05 18:22:59.986247"], ["updated_at", "2020-05-05 18:22:59.986247"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:22:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.6ms | ActiveRecord: 0.2ms | Allocations: 2845) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:22:59 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.2ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:22:59.999412"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1088) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Nulla sint sed in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:23:00.011560"], ["updated_at", "2020-05-05 18:23:00.011560"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Non qui est nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:23:00.016165"], ["updated_at", "2020-05-05 18:23:00.016165"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veniam"], ["description", "Aut qui recusandae aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:23:00.018222"], ["updated_at", "2020-05-05 18:23:00.018222"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Natus voluptatem laborum dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:23:00.020053"], ["updated_at", "2020-05-05 18:23:00.020053"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "incidunt"], ["description", "Aspernatur qui optio autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:23:00.021884"], ["updated_at", "2020-05-05 18:23:00.021884"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusantium"], ["description", "Ex perferendis consequatur provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:23:00.023516"], ["updated_at", "2020-05-05 18:23:00.023516"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Iure sit tenetur placeat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:23:00.025630"], ["updated_at", "2020-05-05 18:23:00.025630"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "incidunt"], ["description", "Aliquid sapiente mollitia illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:23:00.028254"], ["updated_at", "2020-05-05 18:23:00.028254"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "modi"], ["description", "Nisi nam consequatur tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:23:00.030670"], ["updated_at", "2020-05-05 18:23:00.030670"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Non et natus atque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:23:00.032632"], ["updated_at", "2020-05-05 18:23:00.032632"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Greta Berge"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.bQI2q9U0lAQUIcKmX8Qeu9CEO.4hPgdzB9qzzW1.rnBUXehIKvme"], ["created_at", "2020-05-05 18:23:00.037019"], ["updated_at", "2020-05-05 18:23:00.037019"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:23:00 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (5.52ms) +Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:23:00 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:23:00.051564"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 998) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "delectus"], ["description", "Consequuntur maxime quia similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:23:00.061944"], ["updated_at", "2020-05-05 18:23:00.061944"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "excepturi"], ["description", "Harum est consectetur et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:23:00.065366"], ["updated_at", "2020-05-05 18:23:00.065366"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Adipisci qui voluptas nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:23:00.068619"], ["updated_at", "2020-05-05 18:23:00.068619"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "suscipit"], ["description", "Autem suscipit illo optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:23:00.070925"], ["updated_at", "2020-05-05 18:23:00.070925"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nesciunt"], ["description", "Blanditiis voluptas qui pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:23:00.072744"], ["updated_at", "2020-05-05 18:23:00.072744"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Repellendus atque totam aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:23:00.074227"], ["updated_at", "2020-05-05 18:23:00.074227"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "beatae"], ["description", "Animi quo inventore quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:23:00.075459"], ["updated_at", "2020-05-05 18:23:00.075459"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Dolore iusto sit non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:23:00.076668"], ["updated_at", "2020-05-05 18:23:00.076668"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Itaque ullam enim iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:23:00.077906"], ["updated_at", "2020-05-05 18:23:00.077906"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quisquam"], ["description", "Et quis sunt sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:23:00.079719"], ["updated_at", "2020-05-05 18:23:00.079719"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cedrick Goodwin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Z/UMKOhhxcQbJu3zH6GgUOHHbfF.L6jw25o9pokZMM4op2By3i2Ua"], ["created_at", "2020-05-05 18:23:00.082590"], ["updated_at", "2020-05-05 18:23:00.082590"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:23:00 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.83ms) +Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:23:00 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 4ms (ActiveRecord: 0.6ms | Allocations: 1221) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (4.5ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (209.1ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (124.8ms) DELETE FROM "user_meets"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (126.8ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (147.9ms) DELETE FROM "meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (88.9ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (87.4ms) DELETE FROM "messagems"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (79.7ms) DELETE FROM "users"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (10.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Louis Champlin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Kj8ZE32DCtmG2qNoYdKCOODkuA05B3oUK4sIf90DQs48Bc70lmMMa"], ["created_at", "2020-05-05 18:24:39.493719"], ["updated_at", "2020-05-05 18:24:39.493719"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "occaecati"], ["description", "Dolore vitae minus cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:39.521055"], ["updated_at", "2020-05-05 18:24:39.521055"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui et distinctio pariatur?"], ["description", "Architecto et magni debitis."], ["date", "2020-05-06 18:24:39.557588"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.585935"], ["updated_at", "2020-05-05 18:24:39.585935"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea reprehenderit et rem?"], ["description", "Provident iusto ipsam veritatis."], ["date", "2020-05-06 18:24:39.587766"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.588539"], ["updated_at", "2020-05-05 18:24:39.588539"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem officiis et expedita?"], ["description", "Quos porro eligendi tempore."], ["date", "2020-05-06 18:24:39.590183"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.590935"], ["updated_at", "2020-05-05 18:24:39.590935"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia hic atque enim?"], ["description", "Quasi ullam natus dolor."], ["date", "2020-05-06 18:24:39.592609"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.594467"], ["updated_at", "2020-05-05 18:24:39.594467"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum magnam aut quae?"], ["description", "Maxime dolorem et impedit."], ["date", "2020-05-06 18:24:39.596253"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.597279"], ["updated_at", "2020-05-05 18:24:39.597279"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In aspernatur beatae dolores?"], ["description", "Omnis doloremque dolorum ipsum."], ["date", "2020-05-06 18:24:39.599293"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.600304"], ["updated_at", "2020-05-05 18:24:39.600304"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam a vel quae?"], ["description", "Perspiciatis et sit sed."], ["date", "2020-05-06 18:24:39.601616"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.602451"], ["updated_at", "2020-05-05 18:24:39.602451"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe id animi consequatur?"], ["description", "Similique esse dolores optio."], ["date", "2020-05-06 18:24:39.603728"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.604551"], ["updated_at", "2020-05-05 18:24:39.604551"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed illum qui laboriosam?"], ["description", "Doloribus ut enim unde."], ["date", "2020-05-06 18:24:39.605789"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.606518"], ["updated_at", "2020-05-05 18:24:39.606518"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus rem ut qui?"], ["description", "Et officiis minus magni."], ["date", "2020-05-06 18:24:39.608289"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.609053"], ["updated_at", "2020-05-05 18:24:39.609053"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt dolores qui facilis?"], ["description", "Hic itaque ipsum quos."], ["date", "2020-05-06 18:24:39.610781"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.611851"], ["updated_at", "2020-05-05 18:24:39.611851"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis deleniti autem laborum?"], ["description", "Et beatae doloribus est."], ["date", "2020-05-06 18:24:39.613429"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.614319"], ["updated_at", "2020-05-05 18:24:39.614319"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut qui facilis explicabo?"], ["description", "Mollitia velit eligendi corrupti."], ["date", "2020-05-06 18:24:39.615844"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.616603"], ["updated_at", "2020-05-05 18:24:39.616603"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius fugit explicabo voluptates?"], ["description", "Quia vitae voluptas officiis."], ["date", "2020-05-06 18:24:39.618578"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.619535"], ["updated_at", "2020-05-05 18:24:39.619535"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque odit nostrum voluptas?"], ["description", "Distinctio voluptas excepturi est."], ["date", "2020-05-06 18:24:39.620899"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.621695"], ["updated_at", "2020-05-05 18:24:39.621695"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis rerum excepturi magni?"], ["description", "Sit recusandae aut pariatur."], ["date", "2020-05-06 18:24:39.622986"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.623679"], ["updated_at", "2020-05-05 18:24:39.623679"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis nobis odio fugit?"], ["description", "Fuga praesentium laudantium fugit."], ["date", "2020-05-06 18:24:39.625162"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.626210"], ["updated_at", "2020-05-05 18:24:39.626210"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit aut eos quaerat?"], ["description", "Ipsa modi porro et."], ["date", "2020-05-06 18:24:39.628182"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.629126"], ["updated_at", "2020-05-05 18:24:39.629126"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit cumque ut molestiae?"], ["description", "Dolores nostrum aut occaecati."], ["date", "2020-05-06 18:24:39.630457"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.631183"], ["updated_at", "2020-05-05 18:24:39.631183"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed aut quaerat est?"], ["description", "Odio perspiciatis est iure."], ["date", "2020-05-06 18:24:39.632552"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.633332"], ["updated_at", "2020-05-05 18:24:39.633332"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:24:39 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.5ms) +Completed 200 OK in 35ms (Views: 16.1ms | ActiveRecord: 0.5ms | Allocations: 8640) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (12.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Delisa Orn I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$cUPUyfh8bsV/x8CPxpQCD.zDAqjto4UDqW6YseD5DXldWQ8f.x8x6"], ["created_at", "2020-05-05 18:24:39.730141"], ["updated_at", "2020-05-05 18:24:39.730141"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Est voluptas incidunt repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:39.736424"], ["updated_at", "2020-05-05 18:24:39.736424"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui sunt suscipit id?"], ["description", "Corrupti tempora eligendi fugit."], ["date", "2020-05-06 18:24:39.740147"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.742335"], ["updated_at", "2020-05-05 18:24:39.742335"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius quaerat magnam nisi?"], ["description", "Et fuga ducimus eum."], ["date", "2020-05-06 18:24:39.745631"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.747521"], ["updated_at", "2020-05-05 18:24:39.747521"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores in saepe aut?"], ["description", "Ut eum laboriosam accusantium."], ["date", "2020-05-06 18:24:39.750529"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.752933"], ["updated_at", "2020-05-05 18:24:39.752933"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Unde facilis rem repudiandae?"], ["description", "Amet nisi omnis qui."], ["date", "2020-05-06 18:24:39.755800"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.757587"], ["updated_at", "2020-05-05 18:24:39.757587"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut quod minima ullam?"], ["description", "Totam odio provident nesciunt."], ["date", "2020-05-06 18:24:39.760809"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.762930"], ["updated_at", "2020-05-05 18:24:39.762930"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos sit illo laboriosam?"], ["description", "Rerum quibusdam ipsa vitae."], ["date", "2020-05-06 18:24:39.765522"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.767150"], ["updated_at", "2020-05-05 18:24:39.767150"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda praesentium est accusamus?"], ["description", "Fuga autem consectetur ducimus."], ["date", "2020-05-06 18:24:39.769475"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.770888"], ["updated_at", "2020-05-05 18:24:39.770888"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi sed rerum in?"], ["description", "Facilis nulla sapiente eveniet."], ["date", "2020-05-06 18:24:39.773377"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.774881"], ["updated_at", "2020-05-05 18:24:39.774881"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus rerum ex est?"], ["description", "Laudantium blanditiis nihil nemo."], ["date", "2020-05-06 18:24:39.777312"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.781545"], ["updated_at", "2020-05-05 18:24:39.781545"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non doloribus veniam maxime?"], ["description", "In consequatur molestias odio."], ["date", "2020-05-06 18:24:39.785779"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.787456"], ["updated_at", "2020-05-05 18:24:39.787456"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem optio vel consequatur?"], ["description", "Esse aliquid pariatur voluptatem."], ["date", "2020-05-06 18:24:39.790359"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.791928"], ["updated_at", "2020-05-05 18:24:39.791928"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus voluptatem fugiat vero?"], ["description", "Molestiae earum eligendi quas."], ["date", "2020-05-06 18:24:39.794517"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.796006"], ["updated_at", "2020-05-05 18:24:39.796006"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus et nemo quam?"], ["description", "Hic facilis maxime rem."], ["date", "2020-05-06 18:24:39.798451"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.800399"], ["updated_at", "2020-05-05 18:24:39.800399"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia porro expedita nulla?"], ["description", "Molestiae itaque nesciunt dolores."], ["date", "2020-05-06 18:24:39.802520"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.803355"], ["updated_at", "2020-05-05 18:24:39.803355"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores autem iste doloribus?"], ["description", "Facilis dolorum ipsum dolor."], ["date", "2020-05-06 18:24:39.804754"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.805457"], ["updated_at", "2020-05-05 18:24:39.805457"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi provident quo omnis?"], ["description", "Est in reiciendis qui."], ["date", "2020-05-06 18:24:39.806715"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.807398"], ["updated_at", "2020-05-05 18:24:39.807398"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut omnis ut nisi?"], ["description", "Officia unde beatae eum."], ["date", "2020-05-06 18:24:39.808610"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.809286"], ["updated_at", "2020-05-05 18:24:39.809286"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae voluptate maxime nostrum?"], ["description", "Aut qui quae sint."], ["date", "2020-05-06 18:24:39.810655"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.811999"], ["updated_at", "2020-05-05 18:24:39.811999"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit sequi repudiandae ad?"], ["description", "Voluptatem ipsum maxime temporibus."], ["date", "2020-05-06 18:24:39.813638"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.814492"], ["updated_at", "2020-05-05 18:24:39.814492"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis aspernatur nihil labore?"], ["description", "Et qui quaerat voluptatibus."], ["date", "2020-05-06 18:24:39.815848"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.816672"], ["updated_at", "2020-05-05 18:24:39.816672"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:24:39 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.45ms) +Completed 200 OK in 12ms (Views: 10.2ms | ActiveRecord: 0.3ms | Allocations: 5514) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Parker Hintz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hmfGhd1fGFDeDGLNSlXwN.N31Yld.VzO5TeFknZBZHTNNN7p4KT2G"], ["created_at", "2020-05-05 18:24:39.847185"], ["updated_at", "2020-05-05 18:24:39.847185"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tenetur"], ["description", "Eveniet voluptatum quia rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:39.851063"], ["updated_at", "2020-05-05 18:24:39.851063"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente excepturi odio voluptas?"], ["description", "Enim iusto doloremque deleniti."], ["date", "2020-05-06 18:24:39.852833"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.853863"], ["updated_at", "2020-05-05 18:24:39.853863"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit aut ducimus totam?"], ["description", "Perspiciatis voluptate facere animi."], ["date", "2020-05-06 18:24:39.855248"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.855981"], ["updated_at", "2020-05-05 18:24:39.855981"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi ut dolores ut?"], ["description", "Ut qui tempora corrupti."], ["date", "2020-05-06 18:24:39.857290"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.858018"], ["updated_at", "2020-05-05 18:24:39.858018"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit blanditiis harum est?"], ["description", "Sed dolores repellat occaecati."], ["date", "2020-05-06 18:24:39.860232"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.861997"], ["updated_at", "2020-05-05 18:24:39.861997"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam sit quidem odit?"], ["description", "Veniam quia repellat omnis."], ["date", "2020-05-06 18:24:39.864351"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.865633"], ["updated_at", "2020-05-05 18:24:39.865633"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id quis et et?"], ["description", "Fuga voluptas labore sint."], ["date", "2020-05-06 18:24:39.867268"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.868043"], ["updated_at", "2020-05-05 18:24:39.868043"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt rerum inventore harum?"], ["description", "Animi corrupti est dolor."], ["date", "2020-05-06 18:24:39.869138"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.869826"], ["updated_at", "2020-05-05 18:24:39.869826"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A et optio placeat?"], ["description", "Reprehenderit praesentium distinctio laborum."], ["date", "2020-05-06 18:24:39.870980"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.871676"], ["updated_at", "2020-05-05 18:24:39.871676"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam aut maxime aut?"], ["description", "Iste accusantium saepe impedit."], ["date", "2020-05-06 18:24:39.872909"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.873652"], ["updated_at", "2020-05-05 18:24:39.873652"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam vero sint eum?"], ["description", "Adipisci ab voluptatibus sunt."], ["date", "2020-05-06 18:24:39.875635"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.876477"], ["updated_at", "2020-05-05 18:24:39.876477"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem officia nihil praesentium?"], ["description", "Libero rem ipsa porro."], ["date", "2020-05-06 18:24:39.877869"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.879677"], ["updated_at", "2020-05-05 18:24:39.879677"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et iure provident soluta?"], ["description", "Qui dolor itaque enim."], ["date", "2020-05-06 18:24:39.881914"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.882920"], ["updated_at", "2020-05-05 18:24:39.882920"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque in illum laudantium?"], ["description", "Et perferendis nemo molestiae."], ["date", "2020-05-06 18:24:39.884090"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.884833"], ["updated_at", "2020-05-05 18:24:39.884833"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione iusto sit facilis?"], ["description", "Velit aut et maiores."], ["date", "2020-05-06 18:24:39.886236"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.887033"], ["updated_at", "2020-05-05 18:24:39.887033"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto veniam soluta sapiente?"], ["description", "Harum enim omnis eius."], ["date", "2020-05-06 18:24:39.888309"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.907919"], ["updated_at", "2020-05-05 18:24:39.907919"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil est molestias placeat?"], ["description", "Consectetur molestiae odit eaque."], ["date", "2020-05-06 18:24:39.909821"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.910804"], ["updated_at", "2020-05-05 18:24:39.910804"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima labore velit temporibus?"], ["description", "Libero at consequuntur et."], ["date", "2020-05-06 18:24:39.912711"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.913694"], ["updated_at", "2020-05-05 18:24:39.913694"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos saepe similique iure?"], ["description", "Libero minima sit aut."], ["date", "2020-05-06 18:24:39.915033"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.915720"], ["updated_at", "2020-05-05 18:24:39.915720"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem asperiores sequi sunt?"], ["description", "Blanditiis tempore in aut."], ["date", "2020-05-06 18:24:39.916866"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.917677"], ["updated_at", "2020-05-05 18:24:39.917677"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam ut dolore sit?"], ["description", "Eum minus sit magnam."], ["date", "2020-05-06 18:24:39.919218"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.920529"], ["updated_at", "2020-05-05 18:24:39.920529"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:24:39 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.1ms) +Completed 404 Not Found in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms | Allocations: 866) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Nieves Erdman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$F7VB/UDCEU13BZ0mB6VeN.z12wNneVN5HESPYDBBxTWZJpakOyrtC"], ["created_at", "2020-05-05 18:24:39.943020"], ["updated_at", "2020-05-05 18:24:39.943020"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "at"], ["description", "Et est veniam consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:39.947487"], ["updated_at", "2020-05-05 18:24:39.947487"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem repellendus sed corrupti?"], ["description", "Expedita perferendis soluta cupiditate."], ["date", "2020-05-06 18:24:39.949340"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.950261"], ["updated_at", "2020-05-05 18:24:39.950261"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt non et doloribus?"], ["description", "Deserunt quia corporis est."], ["date", "2020-05-06 18:24:39.951635"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.952490"], ["updated_at", "2020-05-05 18:24:39.952490"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui autem et et?"], ["description", "Saepe vel consequuntur minima."], ["date", "2020-05-06 18:24:39.953789"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.954501"], ["updated_at", "2020-05-05 18:24:39.954501"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut eaque perferendis voluptatem?"], ["description", "Odio sed nulla et."], ["date", "2020-05-06 18:24:39.955640"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.956315"], ["updated_at", "2020-05-05 18:24:39.956315"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates modi eveniet quia?"], ["description", "Qui ut non aut."], ["date", "2020-05-06 18:24:39.957460"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.958193"], ["updated_at", "2020-05-05 18:24:39.958193"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est sit a et?"], ["description", "Rerum tempore et facere."], ["date", "2020-05-06 18:24:39.960365"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.962539"], ["updated_at", "2020-05-05 18:24:39.962539"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel rem cum cumque?"], ["description", "Maiores non dolorem similique."], ["date", "2020-05-06 18:24:39.964581"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.965478"], ["updated_at", "2020-05-05 18:24:39.965478"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque quis ea debitis?"], ["description", "Quis doloremque et est."], ["date", "2020-05-06 18:24:39.966628"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.967304"], ["updated_at", "2020-05-05 18:24:39.967304"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum sit at pariatur?"], ["description", "Mollitia debitis ut non."], ["date", "2020-05-06 18:24:39.968413"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.969100"], ["updated_at", "2020-05-05 18:24:39.969100"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas suscipit saepe ut?"], ["description", "Tenetur debitis dolorem asperiores."], ["date", "2020-05-06 18:24:39.970867"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.971658"], ["updated_at", "2020-05-05 18:24:39.971658"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente at similique beatae?"], ["description", "Placeat inventore a error."], ["date", "2020-05-06 18:24:39.972965"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.973712"], ["updated_at", "2020-05-05 18:24:39.973712"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam beatae asperiores maiores?"], ["description", "Ea aut assumenda repudiandae."], ["date", "2020-05-06 18:24:39.974910"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.975594"], ["updated_at", "2020-05-05 18:24:39.975594"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minus laudantium eum est?"], ["description", "Voluptatem architecto fugiat quia."], ["date", "2020-05-06 18:24:39.976851"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.977621"], ["updated_at", "2020-05-05 18:24:39.977621"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam molestiae est aut?"], ["description", "Odit labore non magni."], ["date", "2020-05-06 18:24:39.980526"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.982304"], ["updated_at", "2020-05-05 18:24:39.982304"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi debitis rerum quae?"], ["description", "Ut dignissimos sit accusamus."], ["date", "2020-05-06 18:24:39.983949"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.984801"], ["updated_at", "2020-05-05 18:24:39.984801"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia quis illum quia?"], ["description", "Vel ut sed maxime."], ["date", "2020-05-06 18:24:39.986080"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.986773"], ["updated_at", "2020-05-05 18:24:39.986773"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut cum ad ipsam?"], ["description", "Sit nostrum aut sed."], ["date", "2020-05-06 18:24:39.987911"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.988588"], ["updated_at", "2020-05-05 18:24:39.988588"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam cumque id et?"], ["description", "Non ut veniam vitae."], ["date", "2020-05-06 18:24:39.989890"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.990628"], ["updated_at", "2020-05-05 18:24:39.990628"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat molestiae delectus quo?"], ["description", "Autem neque qui corporis."], ["date", "2020-05-06 18:24:39.991956"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.992755"], ["updated_at", "2020-05-05 18:24:39.992755"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit aut voluptas quos?"], ["description", "Ad qui non eum."], ["date", "2020-05-06 18:24:39.994036"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:39.994762"], ["updated_at", "2020-05-05 18:24:39.994762"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:24:39 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lezlie Marquardt"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$96yTg2J3lRiPaGwXTMXnjOqgk2mYhXpvEYRmqQwF17uFP03b8t2vC"], ["created_at", "2020-05-05 18:24:40.013482"], ["updated_at", "2020-05-05 18:24:40.013482"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nam"], ["description", "Unde voluptas non quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.016379"], ["updated_at", "2020-05-05 18:24:40.016379"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam vel neque consectetur?"], ["description", "Vel aspernatur amet in."], ["date", "2020-05-06 18:24:40.017817"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.018870"], ["updated_at", "2020-05-05 18:24:40.018870"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet commodi ut maxime?"], ["description", "Dolores assumenda aut aut."], ["date", "2020-05-06 18:24:40.021127"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.022508"], ["updated_at", "2020-05-05 18:24:40.022508"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab inventore quasi ratione?"], ["description", "Voluptas facere vel fugiat."], ["date", "2020-05-06 18:24:40.024456"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.025367"], ["updated_at", "2020-05-05 18:24:40.025367"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta eos non numquam?"], ["description", "Est numquam similique pariatur."], ["date", "2020-05-06 18:24:40.026543"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.027374"], ["updated_at", "2020-05-05 18:24:40.027374"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed saepe eaque voluptatem?"], ["description", "Omnis et aut modi."], ["date", "2020-05-06 18:24:40.029480"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.030519"], ["updated_at", "2020-05-05 18:24:40.030519"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus ut voluptatem sunt?"], ["description", "Dolorem perspiciatis eligendi beatae."], ["date", "2020-05-06 18:24:40.031923"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.032663"], ["updated_at", "2020-05-05 18:24:40.032663"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia consequatur et provident?"], ["description", "Iure consectetur consequatur qui."], ["date", "2020-05-06 18:24:40.033903"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.034645"], ["updated_at", "2020-05-05 18:24:40.034645"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est placeat laborum similique?"], ["description", "Quia qui reprehenderit consequatur."], ["date", "2020-05-06 18:24:40.035781"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.036481"], ["updated_at", "2020-05-05 18:24:40.036481"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto ipsam qui accusantium?"], ["description", "Velit maxime ducimus non."], ["date", "2020-05-06 18:24:40.037612"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.038289"], ["updated_at", "2020-05-05 18:24:40.038289"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil voluptatem corrupti quia?"], ["description", "Veniam rerum asperiores sit."], ["date", "2020-05-06 18:24:40.041089"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.042519"], ["updated_at", "2020-05-05 18:24:40.042519"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis sed incidunt nulla?"], ["description", "Sit et voluptas rerum."], ["date", "2020-05-06 18:24:40.044993"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.046036"], ["updated_at", "2020-05-05 18:24:40.046036"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium vero unde nesciunt?"], ["description", "Voluptatum excepturi itaque non."], ["date", "2020-05-06 18:24:40.047379"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.048058"], ["updated_at", "2020-05-05 18:24:40.048058"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum id fugit enim?"], ["description", "Et voluptatibus omnis voluptatem."], ["date", "2020-05-06 18:24:40.049287"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.049944"], ["updated_at", "2020-05-05 18:24:40.049944"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut tempora est ut?"], ["description", "Ut cum aliquid voluptatibus."], ["date", "2020-05-06 18:24:40.051212"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.051901"], ["updated_at", "2020-05-05 18:24:40.051901"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel pariatur et sunt?"], ["description", "Qui quasi sequi aliquid."], ["date", "2020-05-06 18:24:40.053325"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.054285"], ["updated_at", "2020-05-05 18:24:40.054285"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et et libero ut?"], ["description", "Voluptatum nisi occaecati id."], ["date", "2020-05-06 18:24:40.055806"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.056851"], ["updated_at", "2020-05-05 18:24:40.056851"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi illo commodi adipisci?"], ["description", "Iure ab maiores sed."], ["date", "2020-05-06 18:24:40.058469"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.059742"], ["updated_at", "2020-05-05 18:24:40.059742"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum voluptatem in nisi?"], ["description", "Ut aut et nam."], ["date", "2020-05-06 18:24:40.063184"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.064315"], ["updated_at", "2020-05-05 18:24:40.064315"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores atque aliquam quibusdam?"], ["description", "Quia voluptatibus sunt doloremque."], ["date", "2020-05-06 18:24:40.065922"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.066861"], ["updated_at", "2020-05-05 18:24:40.066861"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita rerum reprehenderit qui?"], ["description", "Dolorum culpa inventore voluptatem."], ["date", "2020-05-06 18:24:40.068397"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.069290"], ["updated_at", "2020-05-05 18:24:40.069290"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:24:40 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.73ms) +Completed 200 OK in 4ms (Views: 1.4ms | ActiveRecord: 0.3ms | Allocations: 1085) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Viki Carter"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LM0K83eQ1hD3psUHQF.IgeT010xvJaDBB5nfM2bfEmDUbpZ5yIST2"], ["created_at", "2020-05-05 18:24:40.119765"], ["updated_at", "2020-05-05 18:24:40.119765"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Cumque fugiat ab ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.124359"], ["updated_at", "2020-05-05 18:24:40.124359"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem facere veniam in?"], ["description", "Dolores officia distinctio nihil."], ["date", "2020-05-06 18:24:40.126700"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.128508"], ["updated_at", "2020-05-05 18:24:40.128508"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro optio cum fuga?"], ["description", "Molestiae omnis voluptatum nostrum."], ["date", "2020-05-06 18:24:40.130140"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.130961"], ["updated_at", "2020-05-05 18:24:40.130961"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae quis voluptate nam?"], ["description", "Repudiandae autem dolor amet."], ["date", "2020-05-06 18:24:40.132169"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.132911"], ["updated_at", "2020-05-05 18:24:40.132911"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti aperiam quae optio?"], ["description", "Qui numquam ut quam."], ["date", "2020-05-06 18:24:40.134080"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.134755"], ["updated_at", "2020-05-05 18:24:40.134755"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum nisi tempora similique?"], ["description", "Sequi quasi explicabo natus."], ["date", "2020-05-06 18:24:40.135771"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.136450"], ["updated_at", "2020-05-05 18:24:40.136450"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut delectus dolor quis?"], ["description", "Dolorem recusandae praesentium harum."], ["date", "2020-05-06 18:24:40.137517"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.138220"], ["updated_at", "2020-05-05 18:24:40.138220"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugiat odit qui autem?"], ["description", "Doloremque qui nam non."], ["date", "2020-05-06 18:24:40.139589"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.142447"], ["updated_at", "2020-05-05 18:24:40.142447"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et voluptatem dolor natus?"], ["description", "Ut incidunt qui aut."], ["date", "2020-05-06 18:24:40.146417"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.148121"], ["updated_at", "2020-05-05 18:24:40.148121"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit optio vitae et?"], ["description", "Dolores ut eos voluptatem."], ["date", "2020-05-06 18:24:40.149790"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.150697"], ["updated_at", "2020-05-05 18:24:40.150697"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi neque velit praesentium?"], ["description", "Dicta nihil recusandae in."], ["date", "2020-05-06 18:24:40.152647"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.153522"], ["updated_at", "2020-05-05 18:24:40.153522"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut voluptas officia saepe?"], ["description", "Aut enim cupiditate eum."], ["date", "2020-05-06 18:24:40.154828"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.155521"], ["updated_at", "2020-05-05 18:24:40.155521"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae non non autem?"], ["description", "Sapiente sed excepturi molestiae."], ["date", "2020-05-06 18:24:40.156626"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.157318"], ["updated_at", "2020-05-05 18:24:40.157318"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut officia voluptatem delectus?"], ["description", "Quos neque cum voluptas."], ["date", "2020-05-06 18:24:40.158418"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.159095"], ["updated_at", "2020-05-05 18:24:40.159095"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores earum possimus ipsum?"], ["description", "Corporis modi in placeat."], ["date", "2020-05-06 18:24:40.161186"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.164206"], ["updated_at", "2020-05-05 18:24:40.164206"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque libero dolores odit?"], ["description", "Voluptas dolorum quas eveniet."], ["date", "2020-05-06 18:24:40.166953"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.168419"], ["updated_at", "2020-05-05 18:24:40.168419"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates consectetur eum et?"], ["description", "Qui dolores modi possimus."], ["date", "2020-05-06 18:24:40.170370"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.171411"], ["updated_at", "2020-05-05 18:24:40.171411"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Delectus iste doloremque quasi?"], ["description", "Deserunt cupiditate et qui."], ["date", "2020-05-06 18:24:40.172847"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.173573"], ["updated_at", "2020-05-05 18:24:40.173573"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab voluptas ea qui?"], ["description", "Enim nihil iure tenetur."], ["date", "2020-05-06 18:24:40.174831"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.175532"], ["updated_at", "2020-05-05 18:24:40.175532"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae id qui dolorem?"], ["description", "Cupiditate neque earum nihil."], ["date", "2020-05-06 18:24:40.176703"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.177460"], ["updated_at", "2020-05-05 18:24:40.177460"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quibusdam officiis autem rerum?"], ["description", "Minus autem quo ut."], ["date", "2020-05-06 18:24:40.179291"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.180716"], ["updated_at", "2020-05-05 18:24:40.180716"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:24:40 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.68ms) +Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.2ms | Allocations: 1058) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Clayton Hickle"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xObPeo2U.ee.Usb3prcWcu03TsgG6s1U6kGcjRnzZZ4JUvPDCMPwe"], ["created_at", "2020-05-05 18:24:40.198405"], ["updated_at", "2020-05-05 18:24:40.198405"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Eos laboriosam qui dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.202322"], ["updated_at", "2020-05-05 18:24:40.202322"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi unde commodi voluptatem?"], ["description", "Aut consequatur autem eum."], ["date", "2020-05-06 18:24:40.204411"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.205578"], ["updated_at", "2020-05-05 18:24:40.205578"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus quas soluta porro?"], ["description", "Eveniet enim possimus accusamus."], ["date", "2020-05-06 18:24:40.207094"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.207854"], ["updated_at", "2020-05-05 18:24:40.207854"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam error qui molestiae?"], ["description", "Cum non nobis mollitia."], ["date", "2020-05-06 18:24:40.209079"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.209768"], ["updated_at", "2020-05-05 18:24:40.209768"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum reiciendis distinctio asperiores?"], ["description", "Quam sint vel odit."], ["date", "2020-05-06 18:24:40.211100"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.212780"], ["updated_at", "2020-05-05 18:24:40.212780"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut praesentium ad laudantium?"], ["description", "Blanditiis excepturi consectetur tempore."], ["date", "2020-05-06 18:24:40.214341"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.215275"], ["updated_at", "2020-05-05 18:24:40.215275"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui et quidem et?"], ["description", "Consectetur illum velit sed."], ["date", "2020-05-06 18:24:40.216500"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.217199"], ["updated_at", "2020-05-05 18:24:40.217199"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non natus est dolorem?"], ["description", "Magnam laboriosam qui deserunt."], ["date", "2020-05-06 18:24:40.218328"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.218992"], ["updated_at", "2020-05-05 18:24:40.218992"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim consequatur esse aut?"], ["description", "Dicta dolor rem incidunt."], ["date", "2020-05-06 18:24:40.220175"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.222473"], ["updated_at", "2020-05-05 18:24:40.222473"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident tempora minus quo?"], ["description", "Quia occaecati laborum minima."], ["date", "2020-05-06 18:24:40.224980"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.226547"], ["updated_at", "2020-05-05 18:24:40.226547"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est vel maxime facere?"], ["description", "Soluta delectus quasi fugit."], ["date", "2020-05-06 18:24:40.229217"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.230321"], ["updated_at", "2020-05-05 18:24:40.230321"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Culpa perspiciatis atque perferendis?"], ["description", "Rerum tempore vel et."], ["date", "2020-05-06 18:24:40.231942"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.232880"], ["updated_at", "2020-05-05 18:24:40.232880"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi molestiae qui rerum?"], ["description", "Exercitationem quasi sunt dolor."], ["date", "2020-05-06 18:24:40.234218"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.234951"], ["updated_at", "2020-05-05 18:24:40.234951"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia aut quas ipsa?"], ["description", "Ipsa dolor neque perferendis."], ["date", "2020-05-06 18:24:40.236140"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.236825"], ["updated_at", "2020-05-05 18:24:40.236825"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem ex eveniet ab?"], ["description", "Illo dolorem qui corporis."], ["date", "2020-05-06 18:24:40.238176"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.238869"], ["updated_at", "2020-05-05 18:24:40.238869"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo repellat suscipit atque?"], ["description", "Animi veritatis et error."], ["date", "2020-05-06 18:24:40.240070"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.240969"], ["updated_at", "2020-05-05 18:24:40.240969"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut minima cupiditate nisi?"], ["description", "Aperiam ullam eos blanditiis."], ["date", "2020-05-06 18:24:40.244575"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.246215"], ["updated_at", "2020-05-05 18:24:40.246215"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia quia fugiat harum?"], ["description", "Ab necessitatibus laborum iste."], ["date", "2020-05-06 18:24:40.249807"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.251382"], ["updated_at", "2020-05-05 18:24:40.251382"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta nobis consequuntur est?"], ["description", "Eum dolores adipisci impedit."], ["date", "2020-05-06 18:24:40.253894"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.254822"], ["updated_at", "2020-05-05 18:24:40.254822"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam odio ut in?"], ["description", "Molestias eos odit quidem."], ["date", "2020-05-06 18:24:40.256094"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.256817"], ["updated_at", "2020-05-05 18:24:40.256817"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt architecto sapiente qui?"], ["description", "Totam non ea enim."], ["date", "2020-05-06 18:24:40.258019"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.258700"], ["updated_at", "2020-05-05 18:24:40.258700"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:24:40 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 884) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lorenzo Robel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$x8oNU4nVuhJZ/fMcEbzjOuo3Iql4NvKRBR/wr.1DHIIBZt5mfOTcK"], ["created_at", "2020-05-05 18:24:40.277667"], ["updated_at", "2020-05-05 18:24:40.277667"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "recusandae"], ["description", "Deleniti ea neque et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.280997"], ["updated_at", "2020-05-05 18:24:40.280997"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis ut sunt alias?"], ["description", "Itaque suscipit temporibus nam."], ["date", "2020-05-06 18:24:40.283604"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.285289"], ["updated_at", "2020-05-05 18:24:40.285289"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut omnis accusantium quos?"], ["description", "Alias et quae ut."], ["date", "2020-05-06 18:24:40.287006"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.287823"], ["updated_at", "2020-05-05 18:24:40.287823"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut fugit dolorum laudantium?"], ["description", "Pariatur alias et rerum."], ["date", "2020-05-06 18:24:40.288979"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.289671"], ["updated_at", "2020-05-05 18:24:40.289671"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem voluptas aut voluptates?"], ["description", "Ut numquam accusamus officia."], ["date", "2020-05-06 18:24:40.290813"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.291478"], ["updated_at", "2020-05-05 18:24:40.291478"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error quod commodi accusantium?"], ["description", "Dignissimos iusto repellat quo."], ["date", "2020-05-06 18:24:40.293066"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.294359"], ["updated_at", "2020-05-05 18:24:40.294359"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est voluptatem dignissimos earum?"], ["description", "Nam sint accusamus est."], ["date", "2020-05-06 18:24:40.295706"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.296409"], ["updated_at", "2020-05-05 18:24:40.296409"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente vel consequatur voluptatem?"], ["description", "Dolorum hic et a."], ["date", "2020-05-06 18:24:40.297517"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.298177"], ["updated_at", "2020-05-05 18:24:40.298177"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt dolores velit eaque?"], ["description", "Expedita possimus dolores omnis."], ["date", "2020-05-06 18:24:40.299305"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.299997"], ["updated_at", "2020-05-05 18:24:40.299997"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos unde repellendus voluptatum?"], ["description", "Id ad nulla autem."], ["date", "2020-05-06 18:24:40.301560"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.303312"], ["updated_at", "2020-05-05 18:24:40.303312"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut aliquid nobis minima?"], ["description", "Ad sed repellendus quis."], ["date", "2020-05-06 18:24:40.306161"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.307141"], ["updated_at", "2020-05-05 18:24:40.307141"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae sequi alias deserunt?"], ["description", "Rerum illum sunt laboriosam."], ["date", "2020-05-06 18:24:40.308507"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.309196"], ["updated_at", "2020-05-05 18:24:40.309196"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis commodi quidem quisquam?"], ["description", "Cupiditate voluptatibus optio qui."], ["date", "2020-05-06 18:24:40.310420"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.311827"], ["updated_at", "2020-05-05 18:24:40.311827"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem veniam cum quae?"], ["description", "Aspernatur voluptatem temporibus dolores."], ["date", "2020-05-06 18:24:40.313353"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.314209"], ["updated_at", "2020-05-05 18:24:40.314209"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laudantium rerum labore repellat?"], ["description", "Consequatur quidem ut illum."], ["date", "2020-05-06 18:24:40.315486"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.316196"], ["updated_at", "2020-05-05 18:24:40.316196"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis dolor quos delectus?"], ["description", "Quia non impedit sapiente."], ["date", "2020-05-06 18:24:40.317470"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.318181"], ["updated_at", "2020-05-05 18:24:40.318181"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti quis aliquam labore?"], ["description", "Non odit in nihil."], ["date", "2020-05-06 18:24:40.319344"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.320100"], ["updated_at", "2020-05-05 18:24:40.320100"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel non neque rerum?"], ["description", "Repellendus cum magnam nisi."], ["date", "2020-05-06 18:24:40.321788"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.323161"], ["updated_at", "2020-05-05 18:24:40.323161"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque esse enim odit?"], ["description", "Corporis tempore consequuntur quo."], ["date", "2020-05-06 18:24:40.324672"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.325655"], ["updated_at", "2020-05-05 18:24:40.325655"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo neque autem quibusdam?"], ["description", "Consequuntur labore dolor odit."], ["date", "2020-05-06 18:24:40.326850"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.327819"], ["updated_at", "2020-05-05 18:24:40.327819"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis expedita sunt omnis?"], ["description", "Enim et et et."], ["date", "2020-05-06 18:24:40.329602"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.330513"], ["updated_at", "2020-05-05 18:24:40.330513"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:24:40 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["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: 867) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Trista O'Connell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hoBsAqhdPW.BFZ/DDIOlpuMv95.xySF4P0j.OL8f.5xhpcSfsoxym"], ["created_at", "2020-05-05 18:24:40.347164"], ["updated_at", "2020-05-05 18:24:40.347164"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugit"], ["description", "Qui voluptas nemo aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.350014"], ["updated_at", "2020-05-05 18:24:40.350014"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo illum sit eveniet?"], ["description", "Sapiente nihil eum non."], ["date", "2020-05-06 18:24:40.351658"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.352688"], ["updated_at", "2020-05-05 18:24:40.352688"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi facilis ullam numquam?"], ["description", "Eum eos voluptas sit."], ["date", "2020-05-06 18:24:40.354029"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.354770"], ["updated_at", "2020-05-05 18:24:40.354770"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime veritatis sint esse?"], ["description", "Commodi aliquid aut harum."], ["date", "2020-05-06 18:24:40.355855"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.356529"], ["updated_at", "2020-05-05 18:24:40.356529"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Hic tenetur dolores dolor?"], ["description", "Nihil quidem saepe eius."], ["date", "2020-05-06 18:24:40.357577"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.358346"], ["updated_at", "2020-05-05 18:24:40.358346"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et fuga aut labore?"], ["description", "Et voluptate molestiae hic."], ["date", "2020-05-06 18:24:40.359745"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.361173"], ["updated_at", "2020-05-05 18:24:40.361173"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et tempora tenetur hic?"], ["description", "Sunt sit omnis minus."], ["date", "2020-05-06 18:24:40.363260"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.364364"], ["updated_at", "2020-05-05 18:24:40.364364"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore molestiae aut praesentium?"], ["description", "Et debitis ut ducimus."], ["date", "2020-05-06 18:24:40.366381"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.367358"], ["updated_at", "2020-05-05 18:24:40.367358"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam laborum voluptatibus distinctio?"], ["description", "Quia officia ut quibusdam."], ["date", "2020-05-06 18:24:40.368640"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.369390"], ["updated_at", "2020-05-05 18:24:40.369390"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui incidunt illo nobis?"], ["description", "Possimus quia labore voluptatum."], ["date", "2020-05-06 18:24:40.370514"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.371184"], ["updated_at", "2020-05-05 18:24:40.371184"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam amet dolor magnam?"], ["description", "Modi consequatur necessitatibus dolor."], ["date", "2020-05-06 18:24:40.373237"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.374082"], ["updated_at", "2020-05-05 18:24:40.374082"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta voluptate inventore quibusdam?"], ["description", "Sed expedita velit quidem."], ["date", "2020-05-06 18:24:40.375373"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.376108"], ["updated_at", "2020-05-05 18:24:40.376108"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis reprehenderit architecto libero?"], ["description", "Sunt non vitae culpa."], ["date", "2020-05-06 18:24:40.377955"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.378881"], ["updated_at", "2020-05-05 18:24:40.378881"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse voluptatibus nulla dolor?"], ["description", "Totam voluptatem quia omnis."], ["date", "2020-05-06 18:24:40.380242"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.381137"], ["updated_at", "2020-05-05 18:24:40.381137"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia nam sapiente nesciunt?"], ["description", "Et illo enim reprehenderit."], ["date", "2020-05-06 18:24:40.383244"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.384212"], ["updated_at", "2020-05-05 18:24:40.384212"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores aut sapiente maxime?"], ["description", "Aspernatur ut dolor ratione."], ["date", "2020-05-06 18:24:40.385523"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.386215"], ["updated_at", "2020-05-05 18:24:40.386215"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem repudiandae quisquam quis?"], ["description", "Perspiciatis accusamus sint dolorem."], ["date", "2020-05-06 18:24:40.387362"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.388071"], ["updated_at", "2020-05-05 18:24:40.388071"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur possimus non eveniet?"], ["description", "Atque dignissimos eos quisquam."], ["date", "2020-05-06 18:24:40.389212"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.389879"], ["updated_at", "2020-05-05 18:24:40.389879"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis inventore modi rerum?"], ["description", "Incidunt ea sint doloremque."], ["date", "2020-05-06 18:24:40.391148"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.391837"], ["updated_at", "2020-05-05 18:24:40.391837"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis reiciendis fuga nemo?"], ["description", "Est exercitationem voluptatibus tempora."], ["date", "2020-05-06 18:24:40.393980"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.394971"], ["updated_at", "2020-05-05 18:24:40.394971"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id quas molestias in?"], ["description", "In neque sunt eaque."], ["date", "2020-05-06 18:24:40.396734"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.398104"], ["updated_at", "2020-05-05 18:24:40.398104"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:24:40 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"title"=>"Visit Narnia", "description"=>"false", "date"=>"2020-05-06 15:24:40 -0300", "link"=>"https://zoom.com/fakelink", "meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :date, :link, :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 422 Unprocessable Entity in 4ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 2138) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lanie Kulas"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OEKalVDrj1Y//tmvDtKkFeFy/W1ep9Kxl/sRE7zEfF3MyolBl30pO"], ["created_at", "2020-05-05 18:24:40.733023"], ["updated_at", "2020-05-05 18:24:40.733023"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Quia autem distinctio maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.736125"], ["updated_at", "2020-05-05 18:24:40.736125"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et voluptatem expedita excepturi?"], ["description", "Et corrupti at omnis."], ["date", "2020-05-06 18:24:40.737631"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.738567"], ["updated_at", "2020-05-05 18:24:40.738567"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut impedit et et?"], ["description", "Dolores minima rerum nesciunt."], ["date", "2020-05-06 18:24:40.739918"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.740624"], ["updated_at", "2020-05-05 18:24:40.740624"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore quod dicta facilis?"], ["description", "Voluptatem quod sed quasi."], ["date", "2020-05-06 18:24:40.741767"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.742510"], ["updated_at", "2020-05-05 18:24:40.742510"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque quia necessitatibus fuga?"], ["description", "Molestiae a alias et."], ["date", "2020-05-06 18:24:40.745923"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.747311"], ["updated_at", "2020-05-05 18:24:40.747311"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius mollitia quam deserunt?"], ["description", "Voluptates qui optio veritatis."], ["date", "2020-05-06 18:24:40.749104"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.750501"], ["updated_at", "2020-05-05 18:24:40.750501"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At magnam voluptatem quo?"], ["description", "Ullam magnam ut quasi."], ["date", "2020-05-06 18:24:40.752535"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.753713"], ["updated_at", "2020-05-05 18:24:40.753713"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed repudiandae perspiciatis est?"], ["description", "Provident commodi eaque non."], ["date", "2020-05-06 18:24:40.755431"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.756292"], ["updated_at", "2020-05-05 18:24:40.756292"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil deserunt vel adipisci?"], ["description", "Vitae excepturi sit cumque."], ["date", "2020-05-06 18:24:40.757447"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.758149"], ["updated_at", "2020-05-05 18:24:40.758149"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A optio incidunt velit?"], ["description", "Quo autem et aut."], ["date", "2020-05-06 18:24:40.759235"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.759931"], ["updated_at", "2020-05-05 18:24:40.759931"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore velit sunt deserunt?"], ["description", "Ipsam architecto tempora sit."], ["date", "2020-05-06 18:24:40.762390"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.763365"], ["updated_at", "2020-05-05 18:24:40.763365"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam sed asperiores quia?"], ["description", "Sit numquam explicabo inventore."], ["date", "2020-05-06 18:24:40.765822"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.766879"], ["updated_at", "2020-05-05 18:24:40.766879"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui autem sed perspiciatis?"], ["description", "Animi quidem non doloribus."], ["date", "2020-05-06 18:24:40.768270"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.768955"], ["updated_at", "2020-05-05 18:24:40.768955"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos eius quaerat quibusdam?"], ["description", "Autem delectus reiciendis consequatur."], ["date", "2020-05-06 18:24:40.770164"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.770847"], ["updated_at", "2020-05-05 18:24:40.770847"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem quisquam qui assumenda?"], ["description", "Sit ullam voluptas qui."], ["date", "2020-05-06 18:24:40.772252"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.773059"], ["updated_at", "2020-05-05 18:24:40.773059"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error occaecati consequatur sapiente?"], ["description", "Omnis molestias labore perferendis."], ["date", "2020-05-06 18:24:40.774259"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.774946"], ["updated_at", "2020-05-05 18:24:40.774946"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto quos perspiciatis quae?"], ["description", "Omnis enim perspiciatis repellat."], ["date", "2020-05-06 18:24:40.776125"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.776803"], ["updated_at", "2020-05-05 18:24:40.776803"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius ab qui aperiam?"], ["description", "Quidem dolores nihil officiis."], ["date", "2020-05-06 18:24:40.778025"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.779316"], ["updated_at", "2020-05-05 18:24:40.779316"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut tempora repellat corrupti?"], ["description", "Qui quo est voluptatem."], ["date", "2020-05-06 18:24:40.780983"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.781840"], ["updated_at", "2020-05-05 18:24:40.781840"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo ut aut ullam?"], ["description", "Aut voluptas ipsum et."], ["date", "2020-05-06 18:24:40.783108"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.784142"], ["updated_at", "2020-05-05 18:24:40.784142"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio dolor aperiam odit?"], ["description", "Nemo aliquid nisi tenetur."], ["date", "2020-05-06 18:24:40.786174"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.787126"], ["updated_at", "2020-05-05 18:24:40.787126"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:24:40 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 2785) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Allen Walter"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$o7EPICtUSc3DLnlNq6JEX.iipoCZvSaA5c2Zab1nt4erZ2aaXJ26i"], ["created_at", "2020-05-05 18:24:40.806020"], ["updated_at", "2020-05-05 18:24:40.806020"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "culpa"], ["description", "Quia quia eius earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.808973"], ["updated_at", "2020-05-05 18:24:40.808973"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem voluptatibus porro assumenda?"], ["description", "Ex sequi rem quia."], ["date", "2020-05-06 18:24:40.810570"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.812178"], ["updated_at", "2020-05-05 18:24:40.812178"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem non iste autem?"], ["description", "Minima et ea debitis."], ["date", "2020-05-06 18:24:40.814182"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.815173"], ["updated_at", "2020-05-05 18:24:40.815173"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos omnis aliquam tempora?"], ["description", "Placeat distinctio quia dolorem."], ["date", "2020-05-06 18:24:40.816571"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.817305"], ["updated_at", "2020-05-05 18:24:40.817305"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos unde illo et?"], ["description", "Qui sint illo aut."], ["date", "2020-05-06 18:24:40.818441"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.819106"], ["updated_at", "2020-05-05 18:24:40.819106"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In qui recusandae quo?"], ["description", "Modi quia tempora tempore."], ["date", "2020-05-06 18:24:40.820228"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.820918"], ["updated_at", "2020-05-05 18:24:40.820918"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea et fuga suscipit?"], ["description", "Quo non in magnam."], ["date", "2020-05-06 18:24:40.822084"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.822783"], ["updated_at", "2020-05-05 18:24:40.822783"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi unde dicta repellat?"], ["description", "Laborum molestiae quaerat iure."], ["date", "2020-05-06 18:24:40.824049"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.825461"], ["updated_at", "2020-05-05 18:24:40.825461"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat eligendi saepe voluptas?"], ["description", "Repellat cum qui eum."], ["date", "2020-05-06 18:24:40.827417"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.828749"], ["updated_at", "2020-05-05 18:24:40.828749"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur voluptas corporis eos?"], ["description", "Asperiores sint sunt voluptates."], ["date", "2020-05-06 18:24:40.830958"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.832115"], ["updated_at", "2020-05-05 18:24:40.832115"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui voluptatem nesciunt aperiam?"], ["description", "Quas quos vitae rerum."], ["date", "2020-05-06 18:24:40.834128"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.834960"], ["updated_at", "2020-05-05 18:24:40.834960"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione culpa sit ad?"], ["description", "Vero maiores vel accusantium."], ["date", "2020-05-06 18:24:40.836269"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.837112"], ["updated_at", "2020-05-05 18:24:40.837112"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae ducimus maiores animi?"], ["description", "Qui voluptates repudiandae qui."], ["date", "2020-05-06 18:24:40.838267"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.839017"], ["updated_at", "2020-05-05 18:24:40.839017"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora reprehenderit alias maiores?"], ["description", "Neque dolorem sit eius."], ["date", "2020-05-06 18:24:40.840128"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.840814"], ["updated_at", "2020-05-05 18:24:40.840814"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat omnis molestiae et?"], ["description", "Aut aut tenetur accusamus."], ["date", "2020-05-06 18:24:40.842028"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.842732"], ["updated_at", "2020-05-05 18:24:40.842732"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minus aut adipisci id?"], ["description", "Quisquam qui rerum aut."], ["date", "2020-05-06 18:24:40.845409"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.846994"], ["updated_at", "2020-05-05 18:24:40.846994"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit atque ut et?"], ["description", "Voluptatibus quas velit quibusdam."], ["date", "2020-05-06 18:24:40.848612"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.849439"], ["updated_at", "2020-05-05 18:24:40.849439"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error dignissimos in itaque?"], ["description", "Enim voluptas labore reiciendis."], ["date", "2020-05-06 18:24:40.850612"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.851321"], ["updated_at", "2020-05-05 18:24:40.851321"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat consectetur aut porro?"], ["description", "Impedit in dolores consequatur."], ["date", "2020-05-06 18:24:40.852498"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.853231"], ["updated_at", "2020-05-05 18:24:40.853231"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi cupiditate cum consequuntur?"], ["description", "Consequatur fuga accusamus corrupti."], ["date", "2020-05-06 18:24:40.854401"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.855090"], ["updated_at", "2020-05-05 18:24:40.855090"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut rerum at facere?"], ["description", "Eos animi quae mollitia."], ["date", "2020-05-06 18:24:40.856202"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:24:40.856880"], ["updated_at", "2020-05-05 18:24:40.856880"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:24:40 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 2699) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Eum cum quia et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.890327"], ["updated_at", "2020-05-05 18:24:40.890327"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Officiis commodi exercitationem est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.893741"], ["updated_at", "2020-05-05 18:24:40.893741"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laudantium"], ["description", "Earum sint eos asperiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.895487"], ["updated_at", "2020-05-05 18:24:40.895487"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ab"], ["description", "Sit alias nam velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.896786"], ["updated_at", "2020-05-05 18:24:40.896786"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "architecto"], ["description", "Molestiae non dolorem iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.898183"], ["updated_at", "2020-05-05 18:24:40.898183"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Modi velit esse labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.899553"], ["updated_at", "2020-05-05 18:24:40.899553"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellendus"], ["description", "At ut nobis sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.900860"], ["updated_at", "2020-05-05 18:24:40.900860"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minus"], ["description", "Rerum dolorem culpa est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.902216"], ["updated_at", "2020-05-05 18:24:40.902216"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Porro quia quas accusantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.903646"], ["updated_at", "2020-05-05 18:24:40.903646"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "saepe"], ["description", "Aliquid commodi dolorem corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.905498"], ["updated_at", "2020-05-05 18:24:40.905498"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Stanton Kemmer V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4PK5khUH3XubsO48clx74.Ux//Hj0.HvtCr0T6VHZF39mjZTZQO4O"], ["created_at", "2020-05-05 18:24:40.909602"], ["updated_at", "2020-05-05 18:24:40.909602"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:24:40 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.6ms) +Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.3ms | Allocations: 3004) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsam"], ["description", "Voluptatem dolorem amet perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.935861"], ["updated_at", "2020-05-05 18:24:40.935861"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eveniet"], ["description", "Recusandae sed omnis sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.938615"], ["updated_at", "2020-05-05 18:24:40.938615"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corporis"], ["description", "Modi nulla impedit a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.939989"], ["updated_at", "2020-05-05 18:24:40.939989"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deleniti"], ["description", "Consequatur totam soluta aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.941368"], ["updated_at", "2020-05-05 18:24:40.941368"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellendus"], ["description", "Aliquam vitae in libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.942998"], ["updated_at", "2020-05-05 18:24:40.942998"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "expedita"], ["description", "Occaecati et cum consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.945295"], ["updated_at", "2020-05-05 18:24:40.945295"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "occaecati"], ["description", "Enim praesentium sed ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.947770"], ["updated_at", "2020-05-05 18:24:40.947770"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quam"], ["description", "Consectetur nihil eum veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.949841"], ["updated_at", "2020-05-05 18:24:40.949841"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Placeat laborum rerum quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.952010"], ["updated_at", "2020-05-05 18:24:40.952010"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Neque tempore dolorum ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.953876"], ["updated_at", "2020-05-05 18:24:40.953876"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Trey Trantow"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aezOuGnSYP.O.Iii0V2PiOGAgDa6Rr3SDMK5cyUgRWCLdE2RqvJwW"], ["created_at", "2020-05-05 18:24:40.956455"], ["updated_at", "2020-05-05 18:24:40.956455"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:24:40 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.31ms) +Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2845) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "totam"], ["description", "Officia ex maxime aliquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.974720"], ["updated_at", "2020-05-05 18:24:40.974720"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellat"], ["description", "Animi illo et vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.977593"], ["updated_at", "2020-05-05 18:24:40.977593"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Minima sequi numquam quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.979794"], ["updated_at", "2020-05-05 18:24:40.979794"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "distinctio"], ["description", "Rerum quo quis ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.981218"], ["updated_at", "2020-05-05 18:24:40.981218"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nobis"], ["description", "Consectetur libero enim quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.982636"], ["updated_at", "2020-05-05 18:24:40.982636"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Alias sint id corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.984043"], ["updated_at", "2020-05-05 18:24:40.984043"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloremque"], ["description", "Aperiam reprehenderit corporis quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.985943"], ["updated_at", "2020-05-05 18:24:40.985943"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Consequuntur non aut non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.988177"], ["updated_at", "2020-05-05 18:24:40.988177"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "mollitia"], ["description", "Corrupti animi sunt officiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.990308"], ["updated_at", "2020-05-05 18:24:40.990308"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "earum"], ["description", "Ipsa dignissimos hic ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:40.992356"], ["updated_at", "2020-05-05 18:24:40.992356"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Salome Krajcik DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OtRXzTu1RZ6wQKHt/dC9.eaYEjzcngaL5p5nnF/hbDYCudsBjL6SK"], ["created_at", "2020-05-05 18:24:40.995836"], ["updated_at", "2020-05-05 18:24:40.995836"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:24:40 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.5ms | ActiveRecord: 0.1ms | Allocations: 2843) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:24:41 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.39ms) +Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.3ms | Allocations: 1242) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "error"], ["description", "Sunt qui sit est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.018965"], ["updated_at", "2020-05-05 18:24:41.018965"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Fugit necessitatibus amet optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.021639"], ["updated_at", "2020-05-05 18:24:41.021639"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laudantium"], ["description", "Et quod dolorum illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.023127"], ["updated_at", "2020-05-05 18:24:41.023127"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Qui beatae velit nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.024486"], ["updated_at", "2020-05-05 18:24:41.024486"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Soluta placeat quos perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.026390"], ["updated_at", "2020-05-05 18:24:41.026390"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Commodi consequuntur voluptas quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.029434"], ["updated_at", "2020-05-05 18:24:41.029434"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laborum"], ["description", "Eaque illo laudantium quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.031846"], ["updated_at", "2020-05-05 18:24:41.031846"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odio"], ["description", "Odit totam dolor debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.033752"], ["updated_at", "2020-05-05 18:24:41.033752"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Delectus et sapiente et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.035152"], ["updated_at", "2020-05-05 18:24:41.035152"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quaerat"], ["description", "Maiores quibusdam exercitationem at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.036406"], ["updated_at", "2020-05-05 18:24:41.036406"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Guy Fay"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$PY94K.3/APfU1Nc9InuZ4.KV/QKf4r89H51X2nt/sB1YmwSKO6pDO"], ["created_at", "2020-05-05 18:24:41.038868"], ["updated_at", "2020-05-05 18:24:41.038868"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:24:41 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:24:41 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (2.01ms) +Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.3ms | Allocations: 1239) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Non incidunt fuga perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.062828"], ["updated_at", "2020-05-05 18:24:41.062828"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Repellat odit consequatur cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.066226"], ["updated_at", "2020-05-05 18:24:41.066226"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Sit excepturi qui dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.068706"], ["updated_at", "2020-05-05 18:24:41.068706"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "asperiores"], ["description", "Voluptate ipsum fugit et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.071046"], ["updated_at", "2020-05-05 18:24:41.071046"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nemo"], ["description", "Magni deserunt quas et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.074282"], ["updated_at", "2020-05-05 18:24:41.074282"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Vel praesentium consequatur exercitationem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.075857"], ["updated_at", "2020-05-05 18:24:41.075857"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Dolores et fuga et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.077679"], ["updated_at", "2020-05-05 18:24:41.077679"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Nihil ipsam omnis et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.079371"], ["updated_at", "2020-05-05 18:24:41.079371"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Eum tenetur nihil iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.080708"], ["updated_at", "2020-05-05 18:24:41.080708"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Qui quia dolorum explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.082136"], ["updated_at", "2020-05-05 18:24:41.082136"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ceola Cummerata"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ndi542ryYkljOqNyYs6XxeyUYzNzMsJd5HtlvRWW5jKm.EVhYLq3S"], ["created_at", "2020-05-05 18:24:41.084774"], ["updated_at", "2020-05-05 18:24:41.084774"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:24:41 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.88ms) +Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:24:41 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Quidem incidunt molestiae et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.108107"], ["updated_at", "2020-05-05 18:24:41.108107"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Eos amet occaecati adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.111646"], ["updated_at", "2020-05-05 18:24:41.111646"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officia"], ["description", "Expedita enim praesentium saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.113536"], ["updated_at", "2020-05-05 18:24:41.113536"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Consequatur omnis aut maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.114890"], ["updated_at", "2020-05-05 18:24:41.114890"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quos"], ["description", "Rerum non ad rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.116123"], ["updated_at", "2020-05-05 18:24:41.116123"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illo"], ["description", "Qui magnam sint amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.117452"], ["updated_at", "2020-05-05 18:24:41.117452"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ullam"], ["description", "Est eligendi quibusdam ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.118710"], ["updated_at", "2020-05-05 18:24:41.118710"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Ut corporis molestias nisi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.119950"], ["updated_at", "2020-05-05 18:24:41.119950"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Odio earum facilis dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.121250"], ["updated_at", "2020-05-05 18:24:41.121250"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iusto"], ["description", "Exercitationem laborum incidunt aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.122691"], ["updated_at", "2020-05-05 18:24:41.122691"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Clifford DuBuque"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$q9fEFQEq7LhYMuiMkx40jeiDM5415TYqv9i2Oh9tJT4KosfUsgnTq"], ["created_at", "2020-05-05 18:24:41.125287"], ["updated_at", "2020-05-05 18:24:41.125287"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:24:41 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.53ms) +Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:24:41 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quibusdam"], ["description", "Velit voluptatem molestias labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.149799"], ["updated_at", "2020-05-05 18:24:41.149799"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Est explicabo autem voluptatum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.152774"], ["updated_at", "2020-05-05 18:24:41.152774"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestias"], ["description", "Eveniet ipsum velit eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.154299"], ["updated_at", "2020-05-05 18:24:41.154299"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "reiciendis"], ["description", "Nostrum natus aut eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.155626"], ["updated_at", "2020-05-05 18:24:41.155626"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Hic voluptas amet esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.157142"], ["updated_at", "2020-05-05 18:24:41.157142"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deserunt"], ["description", "Aspernatur iste esse id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.158430"], ["updated_at", "2020-05-05 18:24:41.158430"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Quas ducimus ad cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.159801"], ["updated_at", "2020-05-05 18:24:41.159801"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nesciunt"], ["description", "Ducimus ut consequatur laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.161582"], ["updated_at", "2020-05-05 18:24:41.161582"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Optio alias est id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.163148"], ["updated_at", "2020-05-05 18:24:41.163148"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Facere ratione quam accusantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.164420"], ["updated_at", "2020-05-05 18:24:41.164420"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Crissy Larson DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jbbJ0zfZe2pitvJuCHSyaOka2zpaK0MW8rwbq9.tGw1WS2E7.ExyO"], ["created_at", "2020-05-05 18:24:41.167558"], ["updated_at", "2020-05-05 18:24:41.167558"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:24:41 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.36ms) +Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.3ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:24:41 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:24:41.195287"], ["updated_at", "2020-05-05 18:24:41.195287"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.49ms) +Completed 201 Created in 22ms (Views: 0.9ms | ActiveRecord: 1.1ms | Allocations: 6223) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sequi"], ["description", "Fuga asperiores unde accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.213677"], ["updated_at", "2020-05-05 18:24:41.213677"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "reprehenderit"], ["description", "Autem officiis ex eius."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.216783"], ["updated_at", "2020-05-05 18:24:41.216783"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "inventore"], ["description", "Facere repellendus quis animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.218299"], ["updated_at", "2020-05-05 18:24:41.218299"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "adipisci"], ["description", "Incidunt officiis ullam eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.219572"], ["updated_at", "2020-05-05 18:24:41.219572"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minima"], ["description", "Assumenda praesentium mollitia rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.221211"], ["updated_at", "2020-05-05 18:24:41.221211"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Nesciunt veritatis autem quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.222638"], ["updated_at", "2020-05-05 18:24:41.222638"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Quis et consectetur quidem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.223950"], ["updated_at", "2020-05-05 18:24:41.223950"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Vitae commodi quia at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.225232"], ["updated_at", "2020-05-05 18:24:41.225232"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officiis"], ["description", "Architecto quis aspernatur sapiente."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.226860"], ["updated_at", "2020-05-05 18:24:41.226860"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempora"], ["description", "Labore autem eum fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.229273"], ["updated_at", "2020-05-05 18:24:41.229273"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Katharina Harber Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$eRQnjR/zFOIHtzcPruVI8.34AjZFKL3cjSU44fEgpSA7QjvsgEpWy"], ["created_at", "2020-05-05 18:24:41.232696"], ["updated_at", "2020-05-05 18:24:41.232696"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:24:41 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | ActiveRecord: 0.1ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:24:41 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:24:41.244232"], ["updated_at", "2020-05-05 18:24:41.244232"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.5ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.73ms) +Completed 201 Created in 7ms (Views: 1.5ms | ActiveRecord: 0.9ms | Allocations: 2251) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Dolor voluptatem laudantium eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.258186"], ["updated_at", "2020-05-05 18:24:41.258186"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "pariatur"], ["description", "Non impedit qui sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.261600"], ["updated_at", "2020-05-05 18:24:41.261600"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Fuga adipisci enim et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.263476"], ["updated_at", "2020-05-05 18:24:41.263476"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Autem ut quisquam sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.264715"], ["updated_at", "2020-05-05 18:24:41.264715"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Ut deleniti et natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.266152"], ["updated_at", "2020-05-05 18:24:41.266152"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "similique"], ["description", "Saepe quia aperiam autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.268334"], ["updated_at", "2020-05-05 18:24:41.268334"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odio"], ["description", "Rem sed explicabo molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.270361"], ["updated_at", "2020-05-05 18:24:41.270361"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "optio"], ["description", "Voluptatum officiis ut qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.272877"], ["updated_at", "2020-05-05 18:24:41.272877"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deserunt"], ["description", "Rerum molestias repellendus nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.274875"], ["updated_at", "2020-05-05 18:24:41.274875"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "occaecati"], ["description", "Illum voluptas voluptatem accusantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.276529"], ["updated_at", "2020-05-05 18:24:41.276529"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Alayna Pfannerstill"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qMkN7Y3oM4YbgPRyPFF3nu4SLlDVrgaPVtKO//v7SHVHZMFtfP9Ra"], ["created_at", "2020-05-05 18:24:41.279658"], ["updated_at", "2020-05-05 18:24:41.279658"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:24:41 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.89ms) +Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms | Allocations: 2842) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:24:41 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 4006) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (33.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Quod eos deleniti est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.332297"], ["updated_at", "2020-05-05 18:24:41.332297"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quas"], ["description", "Ut ut aliquam ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.335026"], ["updated_at", "2020-05-05 18:24:41.335026"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Minus architecto laborum excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.336436"], ["updated_at", "2020-05-05 18:24:41.336436"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Consequatur perspiciatis voluptatem id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.337716"], ["updated_at", "2020-05-05 18:24:41.337716"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Quidem quos officiis voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.339084"], ["updated_at", "2020-05-05 18:24:41.339084"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Et autem ut id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.340519"], ["updated_at", "2020-05-05 18:24:41.340519"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officia"], ["description", "Nesciunt sed reprehenderit perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.341808"], ["updated_at", "2020-05-05 18:24:41.341808"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Quas natus cumque ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.343111"], ["updated_at", "2020-05-05 18:24:41.343111"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "recusandae"], ["description", "Et alias debitis quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.345077"], ["updated_at", "2020-05-05 18:24:41.345077"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Quis animi deleniti ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.346522"], ["updated_at", "2020-05-05 18:24:41.346522"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lino Sanford"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.1hTBYe6YJmyGkdt6HNEwuw3wB6xehYP3aG2WURt8HAsz1JBUw5S6"], ["created_at", "2020-05-05 18:24:41.349988"], ["updated_at", "2020-05-05 18:24:41.349988"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:24:41 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2840) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:24:41 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "placeat"], ["description", "Consequuntur maiores quia illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.376113"], ["updated_at", "2020-05-05 18:24:41.376113"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corrupti"], ["description", "Qui assumenda omnis vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.379524"], ["updated_at", "2020-05-05 18:24:41.379524"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloribus"], ["description", "Necessitatibus ea sequi tenetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.381036"], ["updated_at", "2020-05-05 18:24:41.381036"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Occaecati omnis dicta quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.382382"], ["updated_at", "2020-05-05 18:24:41.382382"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Earum consequatur est accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.383812"], ["updated_at", "2020-05-05 18:24:41.383812"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Eaque voluptatum deleniti est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.385141"], ["updated_at", "2020-05-05 18:24:41.385141"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quod"], ["description", "Necessitatibus non sed eius."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.386431"], ["updated_at", "2020-05-05 18:24:41.386431"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Est totam ut aliquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.388203"], ["updated_at", "2020-05-05 18:24:41.388203"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eveniet"], ["description", "In et dolores hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.390418"], ["updated_at", "2020-05-05 18:24:41.390418"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquam"], ["description", "Non dolorum sit porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.393078"], ["updated_at", "2020-05-05 18:24:41.393078"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Bernadette Haag"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Ve1benRBXzlUvPrA6jVCoOJ9vl8RgJZQaT/aQ.s4NYRpl3YseGU52"], ["created_at", "2020-05-05 18:24:41.397352"], ["updated_at", "2020-05-05 18:24:41.397352"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:24:41 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.1ms | ActiveRecord: 0.1ms | Allocations: 2843) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:24:41 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.4ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:24:41.408107"], ["id", 1]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 5ms (ActiveRecord: 0.9ms | Allocations: 1071) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nobis"], ["description", "Facere velit eligendi sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.420656"], ["updated_at", "2020-05-05 18:24:41.420656"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "pariatur"], ["description", "Consequatur ratione nostrum ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.423497"], ["updated_at", "2020-05-05 18:24:41.423497"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Cum voluptas similique et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.424914"], ["updated_at", "2020-05-05 18:24:41.424914"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloremque"], ["description", "Omnis perspiciatis animi veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.426218"], ["updated_at", "2020-05-05 18:24:41.426218"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Et autem distinctio pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.428333"], ["updated_at", "2020-05-05 18:24:41.428333"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorum"], ["description", "Fugit quis aut eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.432565"], ["updated_at", "2020-05-05 18:24:41.432565"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Dignissimos cumque ipsam fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.434861"], ["updated_at", "2020-05-05 18:24:41.434861"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "neque"], ["description", "Voluptatum sint eligendi est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.436730"], ["updated_at", "2020-05-05 18:24:41.436730"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officia"], ["description", "Sit earum quam fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.438105"], ["updated_at", "2020-05-05 18:24:41.438105"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dicta"], ["description", "Doloremque qui aperiam quaerat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.439393"], ["updated_at", "2020-05-05 18:24:41.439393"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jimmy Hickle II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vjFHzAnkGGZRmqbOdTp5cOH8znv9cWEwMaQrFNEg3A.Atmakchn6u"], ["created_at", "2020-05-05 18:24:41.441982"], ["updated_at", "2020-05-05 18:24:41.441982"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:24:41 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.31ms) +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 15:24:41 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:24:41.454921"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 999) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Enim quos mollitia sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.465634"], ["updated_at", "2020-05-05 18:24:41.465634"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "alias"], ["description", "Dolores laborum autem corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.469418"], ["updated_at", "2020-05-05 18:24:41.469418"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Ipsa vitae voluptatem deleniti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.472127"], ["updated_at", "2020-05-05 18:24:41.472127"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Fugit qui non illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.473707"], ["updated_at", "2020-05-05 18:24:41.473707"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "at"], ["description", "Quis modi ut dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.475020"], ["updated_at", "2020-05-05 18:24:41.475020"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Doloribus et culpa quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.476297"], ["updated_at", "2020-05-05 18:24:41.476297"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "similique"], ["description", "Quia consequatur aut consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.477753"], ["updated_at", "2020-05-05 18:24:41.477753"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facere"], ["description", "Inventore unde consequatur mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.479606"], ["updated_at", "2020-05-05 18:24:41.479606"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Quia accusamus odio aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.480902"], ["updated_at", "2020-05-05 18:24:41.480902"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Optio animi qui accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:24:41.482341"], ["updated_at", "2020-05-05 18:24:41.482341"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Larissa Miller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Ypi79mI2mMbuf8EK.9o6NeCrPreSBRT8uPjmVtmKQDzSUypufGRgK"], ["created_at", "2020-05-05 18:24:41.485066"], ["updated_at", "2020-05-05 18:24:41.485066"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:24:41 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.1ms) +Completed 200 OK in 8ms (Views: 6.2ms | ActiveRecord: 0.4ms | Allocations: 2843) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:24:41 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1221) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (4.6ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (165.0ms) DELETE FROM "meetings"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (204.7ms) DELETE FROM "user_meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (287.1ms) DELETE FROM "user_meetings"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.9ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (251.9ms) DELETE FROM "meets"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (205.4ms) DELETE FROM "conversations"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (185.2ms) DELETE FROM "messagems"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (122.6ms) DELETE FROM "users"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.2ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Zandra Heaney"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LQl9mEC1dbEEbYzpzviQNOEmjyQdEGF83bwa8yPN8vM0tSN/gAFZ6"], ["created_at", "2020-05-05 18:25:55.038727"], ["updated_at", "2020-05-05 18:25:55.038727"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Sunt dolorem ea iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:55.058177"], ["updated_at", "2020-05-05 18:25:55.058177"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem recusandae voluptate cumque?"], ["description", "Quia unde est facilis."], ["date", "2020-05-06 18:25:55.080703"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.107368"], ["updated_at", "2020-05-05 18:25:55.107368"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error nulla voluptatum corrupti?"], ["description", "Praesentium ducimus aut autem."], ["date", "2020-05-06 18:25:55.109218"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.110681"], ["updated_at", "2020-05-05 18:25:55.110681"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni aut veniam et?"], ["description", "Quas tenetur rem occaecati."], ["date", "2020-05-06 18:25:55.112325"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.113173"], ["updated_at", "2020-05-05 18:25:55.113173"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse iusto deserunt voluptates?"], ["description", "Qui veritatis tempora eveniet."], ["date", "2020-05-06 18:25:55.114320"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.115082"], ["updated_at", "2020-05-05 18:25:55.115082"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem corporis qui consectetur?"], ["description", "Molestiae eius quis nobis."], ["date", "2020-05-06 18:25:55.116487"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.117295"], ["updated_at", "2020-05-05 18:25:55.117295"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id quia laudantium aliquam?"], ["description", "Culpa sit quia quis."], ["date", "2020-05-06 18:25:55.118625"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.119442"], ["updated_at", "2020-05-05 18:25:55.119442"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis qui ad delectus?"], ["description", "Sunt occaecati velit minus."], ["date", "2020-05-06 18:25:55.120569"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.121307"], ["updated_at", "2020-05-05 18:25:55.121307"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem voluptas in atque?"], ["description", "Architecto esse inventore quod."], ["date", "2020-05-06 18:25:55.122555"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.123294"], ["updated_at", "2020-05-05 18:25:55.123294"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit aliquid accusantium quo?"], ["description", "Et aliquid fugit architecto."], ["date", "2020-05-06 18:25:55.124388"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.125147"], ["updated_at", "2020-05-05 18:25:55.125147"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam ipsum error at?"], ["description", "Possimus ea qui non."], ["date", "2020-05-06 18:25:55.128302"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.129436"], ["updated_at", "2020-05-05 18:25:55.129436"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore quasi id sed?"], ["description", "Non quam quisquam nisi."], ["date", "2020-05-06 18:25:55.131142"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.131914"], ["updated_at", "2020-05-05 18:25:55.131914"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et officia voluptas quos?"], ["description", "Ea aut dolor non."], ["date", "2020-05-06 18:25:55.133207"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.133930"], ["updated_at", "2020-05-05 18:25:55.133930"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A dolor quam rem?"], ["description", "Aut animi accusamus rem."], ["date", "2020-05-06 18:25:55.135041"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.135733"], ["updated_at", "2020-05-05 18:25:55.135733"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est deleniti eligendi eum?"], ["description", "Harum rerum sequi assumenda."], ["date", "2020-05-06 18:25:55.136810"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.137496"], ["updated_at", "2020-05-05 18:25:55.137496"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt quas natus rerum?"], ["description", "Perspiciatis alias eos id."], ["date", "2020-05-06 18:25:55.138685"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.139363"], ["updated_at", "2020-05-05 18:25:55.139363"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur iure sunt aspernatur?"], ["description", "Tempore accusantium iure quos."], ["date", "2020-05-06 18:25:55.140570"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.141269"], ["updated_at", "2020-05-05 18:25:55.141269"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo distinctio quis quo?"], ["description", "Corrupti nostrum suscipit nobis."], ["date", "2020-05-06 18:25:55.142686"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.144003"], ["updated_at", "2020-05-05 18:25:55.144003"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque cumque accusamus aliquid?"], ["description", "Unde autem necessitatibus sequi."], ["date", "2020-05-06 18:25:55.145794"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.147200"], ["updated_at", "2020-05-05 18:25:55.147200"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et ullam iure reiciendis?"], ["description", "Sunt asperiores velit quos."], ["date", "2020-05-06 18:25:55.148781"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.149622"], ["updated_at", "2020-05-05 18:25:55.149622"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et id impedit sit?"], ["description", "Soluta maiores nisi non."], ["date", "2020-05-06 18:25:55.150965"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.151964"], ["updated_at", "2020-05-05 18:25:55.151964"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:25:55 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (7.65ms) +Completed 200 OK in 34ms (Views: 15.0ms | ActiveRecord: 0.5ms | Allocations: 8639) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (18.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Jonas Walter"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$AUTExIDoM93P2VlD3N.ngeYVWM1yv7zn1Ev8.wSY4dDPNaCqFhHcu"], ["created_at", "2020-05-05 18:25:55.245444"], ["updated_at", "2020-05-05 18:25:55.245444"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maiores"], ["description", "Et rem et in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:55.265953"], ["updated_at", "2020-05-05 18:25:55.265953"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste necessitatibus illum saepe?"], ["description", "Iste qui quod sed."], ["date", "2020-05-06 18:25:55.268333"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.269439"], ["updated_at", "2020-05-05 18:25:55.269439"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae et unde sed?"], ["description", "Quisquam aperiam molestiae omnis."], ["date", "2020-05-06 18:25:55.270974"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.271871"], ["updated_at", "2020-05-05 18:25:55.271871"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error libero commodi ut?"], ["description", "Ut illo omnis corrupti."], ["date", "2020-05-06 18:25:55.273421"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.274160"], ["updated_at", "2020-05-05 18:25:55.274160"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Possimus velit omnis odit?"], ["description", "Doloremque eaque qui repellat."], ["date", "2020-05-06 18:25:55.275323"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.276023"], ["updated_at", "2020-05-05 18:25:55.276023"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae assumenda qui sequi?"], ["description", "Aliquam voluptatem unde consequatur."], ["date", "2020-05-06 18:25:55.277438"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.278678"], ["updated_at", "2020-05-05 18:25:55.278678"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique unde et soluta?"], ["description", "Necessitatibus iste et assumenda."], ["date", "2020-05-06 18:25:55.280042"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.280741"], ["updated_at", "2020-05-05 18:25:55.280741"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non est commodi nostrum?"], ["description", "Numquam aut magni maiores."], ["date", "2020-05-06 18:25:55.282908"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.284358"], ["updated_at", "2020-05-05 18:25:55.284358"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias assumenda temporibus ab?"], ["description", "Nemo dolores velit consequatur."], ["date", "2020-05-06 18:25:55.286788"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.288684"], ["updated_at", "2020-05-05 18:25:55.288684"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem optio asperiores velit?"], ["description", "Laborum necessitatibus rem omnis."], ["date", "2020-05-06 18:25:55.291843"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.294786"], ["updated_at", "2020-05-05 18:25:55.294786"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est nulla pariatur et?"], ["description", "Fuga iste et et."], ["date", "2020-05-06 18:25:55.298848"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.300494"], ["updated_at", "2020-05-05 18:25:55.300494"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam qui nulla sunt?"], ["description", "Et qui enim dolor."], ["date", "2020-05-06 18:25:55.303163"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.304728"], ["updated_at", "2020-05-05 18:25:55.304728"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates ut quia molestiae?"], ["description", "Nesciunt vel quibusdam dolor."], ["date", "2020-05-06 18:25:55.307243"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.309271"], ["updated_at", "2020-05-05 18:25:55.309271"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo autem a minima?"], ["description", "Doloribus facere consequatur ut."], ["date", "2020-05-06 18:25:55.312064"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.313033"], ["updated_at", "2020-05-05 18:25:55.313033"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum accusantium ipsa totam?"], ["description", "Quae modi ea vitae."], ["date", "2020-05-06 18:25:55.314412"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.315146"], ["updated_at", "2020-05-05 18:25:55.315146"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error odio quia quisquam?"], ["description", "Qui velit dolores occaecati."], ["date", "2020-05-06 18:25:55.316494"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.317191"], ["updated_at", "2020-05-05 18:25:55.317191"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At animi sequi sint?"], ["description", "Recusandae debitis tenetur sit."], ["date", "2020-05-06 18:25:55.318393"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.319072"], ["updated_at", "2020-05-05 18:25:55.319072"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non voluptatem nihil voluptate?"], ["description", "Et ad maxime rerum."], ["date", "2020-05-06 18:25:55.320200"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.320859"], ["updated_at", "2020-05-05 18:25:55.320859"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere magnam architecto officia?"], ["description", "Omnis facere consequatur velit."], ["date", "2020-05-06 18:25:55.322236"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.322953"], ["updated_at", "2020-05-05 18:25:55.322953"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugiat dignissimos voluptas labore?"], ["description", "Aut doloribus et quae."], ["date", "2020-05-06 18:25:55.324171"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.324855"], ["updated_at", "2020-05-05 18:25:55.324855"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed commodi soluta earum?"], ["description", "Rem neque possimus dolores."], ["date", "2020-05-06 18:25:55.326867"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.328311"], ["updated_at", "2020-05-05 18:25:55.328311"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:25:55 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (7.65ms) +Completed 200 OK in 11ms (Views: 9.4ms | ActiveRecord: 0.2ms | Allocations: 5513) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.9ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kim Batz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Hf/NrwjmkZaRKhD6AOLS.eTCR8X0RYEOUU1nVIQCzDJod6LijGsXC"], ["created_at", "2020-05-05 18:25:55.357242"], ["updated_at", "2020-05-05 18:25:55.357242"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cumque"], ["description", "Facere eos enim a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:55.362218"], ["updated_at", "2020-05-05 18:25:55.362218"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem maxime ut dolor?"], ["description", "Sapiente fuga nesciunt reiciendis."], ["date", "2020-05-06 18:25:55.363874"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.364842"], ["updated_at", "2020-05-05 18:25:55.364842"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab dolorem ut est?"], ["description", "Aut ex repellat repellendus."], ["date", "2020-05-06 18:25:55.366147"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.367181"], ["updated_at", "2020-05-05 18:25:55.367181"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta cumque et qui?"], ["description", "Maxime laborum laudantium eius."], ["date", "2020-05-06 18:25:55.369497"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.371058"], ["updated_at", "2020-05-05 18:25:55.371058"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia sapiente excepturi rerum?"], ["description", "Et officia et eligendi."], ["date", "2020-05-06 18:25:55.372560"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.373398"], ["updated_at", "2020-05-05 18:25:55.373398"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint et alias tempore?"], ["description", "Ut modi accusamus deserunt."], ["date", "2020-05-06 18:25:55.374612"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.375328"], ["updated_at", "2020-05-05 18:25:55.375328"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore ducimus labore magni?"], ["description", "In sunt qui harum."], ["date", "2020-05-06 18:25:55.377188"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.378171"], ["updated_at", "2020-05-05 18:25:55.378171"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas quia impedit non?"], ["description", "Accusantium voluptas deleniti odit."], ["date", "2020-05-06 18:25:55.379431"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.380116"], ["updated_at", "2020-05-05 18:25:55.380116"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam aut distinctio sed?"], ["description", "Perspiciatis veniam libero doloremque."], ["date", "2020-05-06 18:25:55.381392"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.382108"], ["updated_at", "2020-05-05 18:25:55.382108"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis modi in quaerat?"], ["description", "Aut aut voluptatem deleniti."], ["date", "2020-05-06 18:25:55.383269"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.383943"], ["updated_at", "2020-05-05 18:25:55.383943"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati nihil ratione iusto?"], ["description", "Quasi beatae qui consequatur."], ["date", "2020-05-06 18:25:55.385811"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.386653"], ["updated_at", "2020-05-05 18:25:55.386653"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus est necessitatibus dolore?"], ["description", "Voluptas facere quibusdam iusto."], ["date", "2020-05-06 18:25:55.388553"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.389622"], ["updated_at", "2020-05-05 18:25:55.389622"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam nam voluptate omnis?"], ["description", "Possimus explicabo consequuntur ipsa."], ["date", "2020-05-06 18:25:55.390907"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.392000"], ["updated_at", "2020-05-05 18:25:55.392000"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga eos perspiciatis commodi?"], ["description", "Illum accusamus ipsa optio."], ["date", "2020-05-06 18:25:55.393870"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.394802"], ["updated_at", "2020-05-05 18:25:55.394802"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus optio omnis amet?"], ["description", "Maiores vitae harum est."], ["date", "2020-05-06 18:25:55.415441"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.416525"], ["updated_at", "2020-05-05 18:25:55.416525"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem ut nesciunt beatae?"], ["description", "Nihil porro iste eveniet."], ["date", "2020-05-06 18:25:55.418005"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.418719"], ["updated_at", "2020-05-05 18:25:55.418719"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum laborum libero ab?"], ["description", "Blanditiis omnis eum dolores."], ["date", "2020-05-06 18:25:55.419922"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.420641"], ["updated_at", "2020-05-05 18:25:55.420641"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos ex delectus et?"], ["description", "Quidem est enim omnis."], ["date", "2020-05-06 18:25:55.421866"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.422585"], ["updated_at", "2020-05-05 18:25:55.422585"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis eius rem cupiditate?"], ["description", "Consectetur ipsam odit dolorum."], ["date", "2020-05-06 18:25:55.423826"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.424534"], ["updated_at", "2020-05-05 18:25:55.424534"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid ullam labore vel?"], ["description", "Dicta eaque sapiente delectus."], ["date", "2020-05-06 18:25:55.426286"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.427771"], ["updated_at", "2020-05-05 18:25:55.427771"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et minima fuga fugiat?"], ["description", "Eaque doloribus earum magni."], ["date", "2020-05-06 18:25:55.429598"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.430521"], ["updated_at", "2020-05-05 18:25:55.430521"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:25:55 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms | Allocations: 866) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (7.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Angelia O'Kon"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fHXp1XtjCXkYFnAAwTcVnOqi2tR4xzIHTfAs.IyLaaNRrv.lmaCU."], ["created_at", "2020-05-05 18:25:55.450070"], ["updated_at", "2020-05-05 18:25:55.450070"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Tempore deleniti et autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:55.459630"], ["updated_at", "2020-05-05 18:25:55.459630"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita et id vel?"], ["description", "In est dicta at."], ["date", "2020-05-06 18:25:55.461310"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.462250"], ["updated_at", "2020-05-05 18:25:55.462250"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias culpa iste dolore?"], ["description", "Ducimus quam esse amet."], ["date", "2020-05-06 18:25:55.463565"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.464276"], ["updated_at", "2020-05-05 18:25:55.464276"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Unde veniam quibusdam sit?"], ["description", "Expedita totam aut ut."], ["date", "2020-05-06 18:25:55.465350"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.466003"], ["updated_at", "2020-05-05 18:25:55.466003"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui beatae reiciendis et?"], ["description", "Ex reiciendis ut pariatur."], ["date", "2020-05-06 18:25:55.467245"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.469108"], ["updated_at", "2020-05-05 18:25:55.469108"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum laborum possimus iusto?"], ["description", "Perspiciatis odit aut consectetur."], ["date", "2020-05-06 18:25:55.471406"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.472403"], ["updated_at", "2020-05-05 18:25:55.472403"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem velit repellat sit?"], ["description", "Voluptas quam qui ut."], ["date", "2020-05-06 18:25:55.473721"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.474456"], ["updated_at", "2020-05-05 18:25:55.474456"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat aut et quia?"], ["description", "Adipisci vel non nihil."], ["date", "2020-05-06 18:25:55.476105"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.477066"], ["updated_at", "2020-05-05 18:25:55.477066"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non laboriosam quis et?"], ["description", "Consequatur dolor in possimus."], ["date", "2020-05-06 18:25:55.478512"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.479202"], ["updated_at", "2020-05-05 18:25:55.479202"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis non aut ut?"], ["description", "Necessitatibus ipsa aut architecto."], ["date", "2020-05-06 18:25:55.480377"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.481115"], ["updated_at", "2020-05-05 18:25:55.481115"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis sunt veritatis itaque?"], ["description", "Et quisquam eius inventore."], ["date", "2020-05-06 18:25:55.483231"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.484059"], ["updated_at", "2020-05-05 18:25:55.484059"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem possimus aperiam aliquid?"], ["description", "Consequuntur molestias voluptas possimus."], ["date", "2020-05-06 18:25:55.485252"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.485933"], ["updated_at", "2020-05-05 18:25:55.485933"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut maxime ullam excepturi?"], ["description", "Ut vel sint autem."], ["date", "2020-05-06 18:25:55.487404"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.488547"], ["updated_at", "2020-05-05 18:25:55.488547"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui officiis quisquam veniam?"], ["description", "Sint necessitatibus cumque id."], ["date", "2020-05-06 18:25:55.490336"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.491226"], ["updated_at", "2020-05-05 18:25:55.491226"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint vel et molestiae?"], ["description", "Est in quo ducimus."], ["date", "2020-05-06 18:25:55.492580"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.493910"], ["updated_at", "2020-05-05 18:25:55.493910"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae sapiente id maiores?"], ["description", "Sit iste et voluptatum."], ["date", "2020-05-06 18:25:55.495626"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.496491"], ["updated_at", "2020-05-05 18:25:55.496491"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non assumenda esse in?"], ["description", "Aut quisquam omnis quas."], ["date", "2020-05-06 18:25:55.497740"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.498514"], ["updated_at", "2020-05-05 18:25:55.498514"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut unde ea iste?"], ["description", "Vel autem quidem qui."], ["date", "2020-05-06 18:25:55.499735"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.500426"], ["updated_at", "2020-05-05 18:25:55.500426"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio doloremque voluptas voluptas?"], ["description", "Voluptatum corrupti ab inventore."], ["date", "2020-05-06 18:25:55.501667"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.502417"], ["updated_at", "2020-05-05 18:25:55.502417"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus ducimus itaque ut?"], ["description", "Quisquam odio non delectus."], ["date", "2020-05-06 18:25:55.503775"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.504534"], ["updated_at", "2020-05-05 18:25:55.504534"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint aliquid voluptatem omnis?"], ["description", "Facere et quod saepe."], ["date", "2020-05-06 18:25:55.505824"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.506522"], ["updated_at", "2020-05-05 18:25:55.506522"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:25:55 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 509) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Melvin Walsh"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WDhbNdFn5tqJ4PUOPFMTj.fNqJwIhX0O3vRdNVAyVpi4kO784kzty"], ["created_at", "2020-05-05 18:25:55.526711"], ["updated_at", "2020-05-05 18:25:55.526711"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dicta"], ["description", "Officia quaerat voluptas possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:55.530672"], ["updated_at", "2020-05-05 18:25:55.530672"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut consequatur veniam mollitia?"], ["description", "Perferendis non nemo excepturi."], ["date", "2020-05-06 18:25:55.533031"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.534198"], ["updated_at", "2020-05-05 18:25:55.534198"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod enim aut ea?"], ["description", "Reiciendis aperiam voluptas totam."], ["date", "2020-05-06 18:25:55.535700"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.536403"], ["updated_at", "2020-05-05 18:25:55.536403"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum et sit aliquid?"], ["description", "Fugit aut et qui."], ["date", "2020-05-06 18:25:55.537536"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.538207"], ["updated_at", "2020-05-05 18:25:55.538207"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam quo consectetur nulla?"], ["description", "Et dolorem ab qui."], ["date", "2020-05-06 18:25:55.539311"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.539958"], ["updated_at", "2020-05-05 18:25:55.539958"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil laboriosam et temporibus?"], ["description", "Placeat vel ex magni."], ["date", "2020-05-06 18:25:55.541077"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.541927"], ["updated_at", "2020-05-05 18:25:55.541927"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima libero nobis repudiandae?"], ["description", "Tenetur aliquam ducimus nihil."], ["date", "2020-05-06 18:25:55.543773"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.544686"], ["updated_at", "2020-05-05 18:25:55.544686"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur adipisci quos amet?"], ["description", "Corporis aut ducimus debitis."], ["date", "2020-05-06 18:25:55.545878"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.546663"], ["updated_at", "2020-05-05 18:25:55.546663"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui vel architecto qui?"], ["description", "Laborum itaque eius quia."], ["date", "2020-05-06 18:25:55.547941"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.549655"], ["updated_at", "2020-05-05 18:25:55.549655"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis voluptas vel incidunt?"], ["description", "Aliquam vel non qui."], ["date", "2020-05-06 18:25:55.551729"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.553133"], ["updated_at", "2020-05-05 18:25:55.553133"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate tempora molestias quis?"], ["description", "Est eum aut fuga."], ["date", "2020-05-06 18:25:55.555302"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.556139"], ["updated_at", "2020-05-05 18:25:55.556139"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint dicta sunt est?"], ["description", "Autem sint eum tempore."], ["date", "2020-05-06 18:25:55.557415"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.558111"], ["updated_at", "2020-05-05 18:25:55.558111"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae cumque quia dolorem?"], ["description", "Quaerat magnam amet quod."], ["date", "2020-05-06 18:25:55.559841"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.560971"], ["updated_at", "2020-05-05 18:25:55.560971"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis nihil aut praesentium?"], ["description", "Qui unde in consequatur."], ["date", "2020-05-06 18:25:55.562389"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.563113"], ["updated_at", "2020-05-05 18:25:55.563113"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam quis ab deserunt?"], ["description", "Totam error quasi aut."], ["date", "2020-05-06 18:25:55.564332"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.565035"], ["updated_at", "2020-05-05 18:25:55.565035"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum distinctio nihil vitae?"], ["description", "Repellendus libero fugit voluptates."], ["date", "2020-05-06 18:25:55.566193"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.566896"], ["updated_at", "2020-05-05 18:25:55.566896"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quia ex inventore?"], ["description", "Dicta consectetur quo et."], ["date", "2020-05-06 18:25:55.568317"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.569595"], ["updated_at", "2020-05-05 18:25:55.569595"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia et aspernatur dolores?"], ["description", "Vel nulla occaecati accusantium."], ["date", "2020-05-06 18:25:55.571078"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.571973"], ["updated_at", "2020-05-05 18:25:55.571973"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo doloribus et quisquam?"], ["description", "Delectus iure sequi autem."], ["date", "2020-05-06 18:25:55.573309"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.574012"], ["updated_at", "2020-05-05 18:25:55.574012"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus repellendus aut provident?"], ["description", "Eos nulla sunt id."], ["date", "2020-05-06 18:25:55.575833"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.576879"], ["updated_at", "2020-05-05 18:25:55.576879"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi enim et odit?"], ["description", "Magnam officiis aut minus."], ["date", "2020-05-06 18:25:55.578351"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.579044"], ["updated_at", "2020-05-05 18:25:55.579044"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:25:55 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.67ms) +Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.2ms | Allocations: 1086) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Palmer Stokes"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$iOgjUUrex/Zszmu1yoB.xOdP08lAq1YF9cquoZ5VSAVix4ontd8B."], ["created_at", "2020-05-05 18:25:55.596531"], ["updated_at", "2020-05-05 18:25:55.596531"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "mollitia"], ["description", "Quidem qui quas odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:55.599511"], ["updated_at", "2020-05-05 18:25:55.599511"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui voluptate culpa maiores?"], ["description", "Qui officiis nam sed."], ["date", "2020-05-06 18:25:55.601326"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.602418"], ["updated_at", "2020-05-05 18:25:55.602418"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias aut sunt doloremque?"], ["description", "Nihil dignissimos modi dolore."], ["date", "2020-05-06 18:25:55.605228"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.606242"], ["updated_at", "2020-05-05 18:25:55.606242"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit explicabo hic quia?"], ["description", "Facere alias quia pariatur."], ["date", "2020-05-06 18:25:55.607880"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.610437"], ["updated_at", "2020-05-05 18:25:55.610437"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae qui excepturi est?"], ["description", "Et qui a iste."], ["date", "2020-05-06 18:25:55.612248"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.613614"], ["updated_at", "2020-05-05 18:25:55.613614"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis est qui dolores?"], ["description", "Numquam at quia dolores."], ["date", "2020-05-06 18:25:55.616198"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.617829"], ["updated_at", "2020-05-05 18:25:55.617829"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda libero voluptatibus ut?"], ["description", "Repellat magnam velit nulla."], ["date", "2020-05-06 18:25:55.621593"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.622765"], ["updated_at", "2020-05-05 18:25:55.622765"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime non quia aut?"], ["description", "Ipsam et aut itaque."], ["date", "2020-05-06 18:25:55.624338"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.625925"], ["updated_at", "2020-05-05 18:25:55.625925"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae sint rerum vero?"], ["description", "Quidem velit vel eaque."], ["date", "2020-05-06 18:25:55.627884"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.629233"], ["updated_at", "2020-05-05 18:25:55.629233"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit aliquid et placeat?"], ["description", "Voluptas voluptas dolorem ut."], ["date", "2020-05-06 18:25:55.631505"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.632563"], ["updated_at", "2020-05-05 18:25:55.632563"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores et neque suscipit?"], ["description", "Fuga commodi fugiat et."], ["date", "2020-05-06 18:25:55.634830"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.635928"], ["updated_at", "2020-05-05 18:25:55.635928"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt voluptatum aut fugit?"], ["description", "Natus reprehenderit vero tenetur."], ["date", "2020-05-06 18:25:55.637540"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.638508"], ["updated_at", "2020-05-05 18:25:55.638508"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam et ex blanditiis?"], ["description", "Expedita autem dolor dolores."], ["date", "2020-05-06 18:25:55.639966"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.640870"], ["updated_at", "2020-05-05 18:25:55.640870"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad itaque beatae atque?"], ["description", "Perferendis rerum cum est."], ["date", "2020-05-06 18:25:55.642386"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.644565"], ["updated_at", "2020-05-05 18:25:55.644565"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea qui laborum tempora?"], ["description", "Officiis culpa quos ut."], ["date", "2020-05-06 18:25:55.646399"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.647295"], ["updated_at", "2020-05-05 18:25:55.647295"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim autem reprehenderit temporibus?"], ["description", "Et ut vel voluptatem."], ["date", "2020-05-06 18:25:55.649169"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.650639"], ["updated_at", "2020-05-05 18:25:55.650639"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et qui nulla ad?"], ["description", "Et provident laboriosam nisi."], ["date", "2020-05-06 18:25:55.652302"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.653162"], ["updated_at", "2020-05-05 18:25:55.653162"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit aut laboriosam qui?"], ["description", "Ut nulla ullam est."], ["date", "2020-05-06 18:25:55.654488"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.655307"], ["updated_at", "2020-05-05 18:25:55.655307"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas perspiciatis labore sed?"], ["description", "Pariatur et incidunt perspiciatis."], ["date", "2020-05-06 18:25:55.656690"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.657440"], ["updated_at", "2020-05-05 18:25:55.657440"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas quaerat perferendis totam?"], ["description", "Quo veniam cumque pariatur."], ["date", "2020-05-06 18:25:55.658656"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.660168"], ["updated_at", "2020-05-05 18:25:55.660168"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla est molestias aut?"], ["description", "Tempora dolorem quia delectus."], ["date", "2020-05-06 18:25:55.661664"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.662600"], ["updated_at", "2020-05-05 18:25:55.662600"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:25:55 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.86ms) +Completed 200 OK in 4ms (Views: 1.5ms | ActiveRecord: 0.2ms | Allocations: 1057) +  (0.7ms) ROLLBACK TO SAVEPOINT active_record_1 +  (10.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (33.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cary Mueller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$PRXecaFKNgPWpmROJH6ST.LkKxd4mxSf778ly4YaVky8ePYYPqi5y"], ["created_at", "2020-05-05 18:25:55.687054"], ["updated_at", "2020-05-05 18:25:55.687054"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsa"], ["description", "Itaque corporis repellat adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:55.722178"], ["updated_at", "2020-05-05 18:25:55.722178"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut omnis aut odit?"], ["description", "Magni unde sit et."], ["date", "2020-05-06 18:25:55.723792"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.724785"], ["updated_at", "2020-05-05 18:25:55.724785"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos at veniam tempore?"], ["description", "Ut et asperiores vel."], ["date", "2020-05-06 18:25:55.726940"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.727913"], ["updated_at", "2020-05-05 18:25:55.727913"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo saepe ut praesentium?"], ["description", "Error enim sed molestiae."], ["date", "2020-05-06 18:25:55.730253"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.733037"], ["updated_at", "2020-05-05 18:25:55.733037"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut facere nesciunt nostrum?"], ["description", "Id veritatis ea tempora."], ["date", "2020-05-06 18:25:55.736797"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.738636"], ["updated_at", "2020-05-05 18:25:55.738636"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui minima iusto eaque?"], ["description", "Ut eum velit et."], ["date", "2020-05-06 18:25:55.740160"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.741001"], ["updated_at", "2020-05-05 18:25:55.741001"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam et natus reprehenderit?"], ["description", "Quo aperiam mollitia aut."], ["date", "2020-05-06 18:25:55.742454"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.743730"], ["updated_at", "2020-05-05 18:25:55.743730"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo ex aliquam facilis?"], ["description", "Repellendus laborum quaerat exercitationem."], ["date", "2020-05-06 18:25:55.745123"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.745872"], ["updated_at", "2020-05-05 18:25:55.745872"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad et qui modi?"], ["description", "Enim rem molestiae dolorem."], ["date", "2020-05-06 18:25:55.747028"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.747727"], ["updated_at", "2020-05-05 18:25:55.747727"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non ducimus ut veniam?"], ["description", "Perferendis repudiandae iure quae."], ["date", "2020-05-06 18:25:55.748906"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.751634"], ["updated_at", "2020-05-05 18:25:55.751634"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem illo aut dicta?"], ["description", "Quidem fugiat nesciunt facilis."], ["date", "2020-05-06 18:25:55.754486"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.755481"], ["updated_at", "2020-05-05 18:25:55.755481"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut occaecati ullam sit?"], ["description", "Ullam molestias voluptatem fugiat."], ["date", "2020-05-06 18:25:55.756831"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.757558"], ["updated_at", "2020-05-05 18:25:55.757558"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam et corporis voluptates?"], ["description", "Et facere ut soluta."], ["date", "2020-05-06 18:25:55.758769"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.759909"], ["updated_at", "2020-05-05 18:25:55.759909"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo quam facilis possimus?"], ["description", "Et ut atque et."], ["date", "2020-05-06 18:25:55.761574"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.762469"], ["updated_at", "2020-05-05 18:25:55.762469"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis adipisci incidunt quia?"], ["description", "Iusto consectetur aut rerum."], ["date", "2020-05-06 18:25:55.763732"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.764410"], ["updated_at", "2020-05-05 18:25:55.764410"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea animi eos accusantium?"], ["description", "Quo omnis aut neque."], ["date", "2020-05-06 18:25:55.765654"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.766312"], ["updated_at", "2020-05-05 18:25:55.766312"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque ut perferendis sequi?"], ["description", "Minima neque veniam excepturi."], ["date", "2020-05-06 18:25:55.767449"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.768121"], ["updated_at", "2020-05-05 18:25:55.768121"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium aut nihil quo?"], ["description", "Et inventore laborum dolor."], ["date", "2020-05-06 18:25:55.770457"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.772499"], ["updated_at", "2020-05-05 18:25:55.772499"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta et et quia?"], ["description", "Inventore officiis repellat et."], ["date", "2020-05-06 18:25:55.774077"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.774964"], ["updated_at", "2020-05-05 18:25:55.774964"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure distinctio dignissimos labore?"], ["description", "Facilis dolorum vel cupiditate."], ["date", "2020-05-06 18:25:55.776526"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.777782"], ["updated_at", "2020-05-05 18:25:55.777782"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita voluptas similique repudiandae?"], ["description", "Ex deserunt sit eius."], ["date", "2020-05-06 18:25:55.779172"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.779870"], ["updated_at", "2020-05-05 18:25:55.779870"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:25:55 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["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: 884) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Madie Hahn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$eMWXKnkB5tAIX/AuuEylJ.0rzrG.Vh/tlmmz0JMRjBrx.vOCigHY6"], ["created_at", "2020-05-05 18:25:55.799945"], ["updated_at", "2020-05-05 18:25:55.799945"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "assumenda"], ["description", "Porro omnis mollitia dignissimos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:55.803071"], ["updated_at", "2020-05-05 18:25:55.803071"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel deserunt culpa impedit?"], ["description", "Corporis et enim cumque."], ["date", "2020-05-06 18:25:55.804663"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.805607"], ["updated_at", "2020-05-05 18:25:55.805607"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel nesciunt iste et?"], ["description", "Odio et nam officiis."], ["date", "2020-05-06 18:25:55.806938"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.807654"], ["updated_at", "2020-05-05 18:25:55.807654"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta ad numquam architecto?"], ["description", "Qui autem cum alias."], ["date", "2020-05-06 18:25:55.808863"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.811109"], ["updated_at", "2020-05-05 18:25:55.811109"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum est eius dolores?"], ["description", "Pariatur repellat ut similique."], ["date", "2020-05-06 18:25:55.813804"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.814802"], ["updated_at", "2020-05-05 18:25:55.814802"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et libero labore nobis?"], ["description", "Quis ratione quasi dolores."], ["date", "2020-05-06 18:25:55.816134"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.816849"], ["updated_at", "2020-05-05 18:25:55.816849"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et illum quibusdam aut?"], ["description", "Atque non et eos."], ["date", "2020-05-06 18:25:55.817983"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.818659"], ["updated_at", "2020-05-05 18:25:55.818659"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel a aut consequuntur?"], ["description", "Ut consequatur voluptate et."], ["date", "2020-05-06 18:25:55.819777"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.820454"], ["updated_at", "2020-05-05 18:25:55.820454"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis pariatur et iste?"], ["description", "Tempore accusamus nulla consequatur."], ["date", "2020-05-06 18:25:55.821688"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.822424"], ["updated_at", "2020-05-05 18:25:55.822424"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis fugiat qui voluptas?"], ["description", "Nemo possimus et dicta."], ["date", "2020-05-06 18:25:55.823581"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.824270"], ["updated_at", "2020-05-05 18:25:55.824270"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem exercitationem enim consequatur?"], ["description", "Quis sed maxime sit."], ["date", "2020-05-06 18:25:55.827019"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.827991"], ["updated_at", "2020-05-05 18:25:55.827991"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos ratione necessitatibus sit?"], ["description", "Maiores quia tempore ipsa."], ["date", "2020-05-06 18:25:55.829510"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.831238"], ["updated_at", "2020-05-05 18:25:55.831238"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem et quo soluta?"], ["description", "Consequuntur et recusandae et."], ["date", "2020-05-06 18:25:55.833609"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.834549"], ["updated_at", "2020-05-05 18:25:55.834549"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus ullam qui enim?"], ["description", "Nostrum id ut facilis."], ["date", "2020-05-06 18:25:55.835882"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.836580"], ["updated_at", "2020-05-05 18:25:55.836580"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis quia exercitationem dolorum?"], ["description", "Omnis quia itaque et."], ["date", "2020-05-06 18:25:55.837725"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.838394"], ["updated_at", "2020-05-05 18:25:55.838394"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint consequuntur aut ipsum?"], ["description", "Enim sed quidem molestiae."], ["date", "2020-05-06 18:25:55.839576"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.840233"], ["updated_at", "2020-05-05 18:25:55.840233"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates eum hic impedit?"], ["description", "Perspiciatis in alias et."], ["date", "2020-05-06 18:25:55.841395"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.842146"], ["updated_at", "2020-05-05 18:25:55.842146"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi commodi nam optio?"], ["description", "Tenetur qui dolores quasi."], ["date", "2020-05-06 18:25:55.844449"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.845485"], ["updated_at", "2020-05-05 18:25:55.845485"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos enim numquam accusamus?"], ["description", "Est maiores molestias qui."], ["date", "2020-05-06 18:25:55.847140"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.848565"], ["updated_at", "2020-05-05 18:25:55.848565"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores tenetur atque tempore?"], ["description", "Illum iste tempore a."], ["date", "2020-05-06 18:25:55.850801"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.852083"], ["updated_at", "2020-05-05 18:25:55.852083"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem libero minima commodi?"], ["description", "Cupiditate nulla qui omnis."], ["date", "2020-05-06 18:25:55.853566"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.854315"], ["updated_at", "2020-05-05 18:25:55.854315"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:25:55 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 867) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Ricky Schuppe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vJrCKlqqEGrpluY.s303QeqQ7EOMj3kFmlroxyaFMmRxl3wBA4LKy"], ["created_at", "2020-05-05 18:25:55.870778"], ["updated_at", "2020-05-05 18:25:55.870778"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laborum"], ["description", "Veniam ipsum laborum omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:55.874076"], ["updated_at", "2020-05-05 18:25:55.874076"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi quia sed ad?"], ["description", "Qui qui aut delectus."], ["date", "2020-05-06 18:25:55.875760"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.877772"], ["updated_at", "2020-05-05 18:25:55.877772"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut consequatur ipsam consequatur?"], ["description", "Consequatur aut nulla animi."], ["date", "2020-05-06 18:25:55.879663"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.880594"], ["updated_at", "2020-05-05 18:25:55.880594"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui et ex sit?"], ["description", "Maxime et maiores dignissimos."], ["date", "2020-05-06 18:25:55.881964"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.882696"], ["updated_at", "2020-05-05 18:25:55.882696"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste optio et laudantium?"], ["description", "Quis et unde molestias."], ["date", "2020-05-06 18:25:55.883842"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.884529"], ["updated_at", "2020-05-05 18:25:55.884529"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui numquam esse molestiae?"], ["description", "Pariatur sint deserunt asperiores."], ["date", "2020-05-06 18:25:55.885648"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.886295"], ["updated_at", "2020-05-05 18:25:55.886295"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed est quam non?"], ["description", "Et sunt maxime fugiat."], ["date", "2020-05-06 18:25:55.887392"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.888036"], ["updated_at", "2020-05-05 18:25:55.888036"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur suscipit sunt corporis?"], ["description", "Rerum et atque similique."], ["date", "2020-05-06 18:25:55.889162"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.889944"], ["updated_at", "2020-05-05 18:25:55.889944"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores recusandae iure odio?"], ["description", "Id ut dignissimos tenetur."], ["date", "2020-05-06 18:25:55.892232"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.893469"], ["updated_at", "2020-05-05 18:25:55.893469"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti qui molestiae vel?"], ["description", "Qui mollitia nemo non."], ["date", "2020-05-06 18:25:55.895610"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.896564"], ["updated_at", "2020-05-05 18:25:55.896564"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem repudiandae enim rerum?"], ["description", "Quisquam vitae explicabo omnis."], ["date", "2020-05-06 18:25:55.898593"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.899389"], ["updated_at", "2020-05-05 18:25:55.899389"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam voluptatem deserunt est?"], ["description", "Dolorem ullam nemo ducimus."], ["date", "2020-05-06 18:25:55.900690"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.901563"], ["updated_at", "2020-05-05 18:25:55.901563"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta minus accusantium error?"], ["description", "Porro aut non dolore."], ["date", "2020-05-06 18:25:55.902984"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.903886"], ["updated_at", "2020-05-05 18:25:55.903886"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione iure impedit incidunt?"], ["description", "Dolor quaerat sequi nostrum."], ["date", "2020-05-06 18:25:55.905211"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.905961"], ["updated_at", "2020-05-05 18:25:55.905961"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis sed aut odio?"], ["description", "Sunt veniam sapiente facilis."], ["date", "2020-05-06 18:25:55.907108"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.907971"], ["updated_at", "2020-05-05 18:25:55.907971"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam est nesciunt dolore?"], ["description", "Aspernatur labore pariatur aliquam."], ["date", "2020-05-06 18:25:55.909824"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.911198"], ["updated_at", "2020-05-05 18:25:55.911198"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas veniam inventore ut?"], ["description", "Ea aliquam quas ipsum."], ["date", "2020-05-06 18:25:55.913143"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.914043"], ["updated_at", "2020-05-05 18:25:55.914043"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum ut ipsum sunt?"], ["description", "Nesciunt impedit sunt quasi."], ["date", "2020-05-06 18:25:55.915338"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.916045"], ["updated_at", "2020-05-05 18:25:55.916045"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta nemo aliquid deserunt?"], ["description", "Sint quibusdam qui beatae."], ["date", "2020-05-06 18:25:55.917758"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.918957"], ["updated_at", "2020-05-05 18:25:55.918957"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates sit et laudantium?"], ["description", "Dolorum aliquid nesciunt magni."], ["date", "2020-05-06 18:25:55.920645"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.921637"], ["updated_at", "2020-05-05 18:25:55.921637"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel autem dicta a?"], ["description", "Aperiam officia architecto est."], ["date", "2020-05-06 18:25:55.923190"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.924220"], ["updated_at", "2020-05-05 18:25:55.924220"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:25:55 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"title"=>"Visit Narnia", "description"=>"false", "date"=>"2020-05-06 15:25:55 -0300", "link"=>"https://zoom.com/fakelink", "meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Visit Narnia"], ["description", "false"], ["date", "2020-05-06 18:25:55"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:55.963020"], ["updated_at", "2020-05-05 18:25:55.963020"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.52ms) +Completed 201 Created in 18ms (Views: 1.1ms | ActiveRecord: 0.5ms | Allocations: 1699) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (22.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Earle Brown"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Haw/j/r13PUm4vk7AdVPAepFM2Ndy9K66F6QKdLyekhZLPtj4cIRy"], ["created_at", "2020-05-05 18:25:56.220054"], ["updated_at", "2020-05-05 18:25:56.220054"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "inventore"], ["description", "Et aut provident libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.231727"], ["updated_at", "2020-05-05 18:25:56.231727"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis et deleniti officiis?"], ["description", "Deserunt perspiciatis deleniti praesentium."], ["date", "2020-05-06 18:25:56.235862"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.238162"], ["updated_at", "2020-05-05 18:25:56.238162"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis et expedita impedit?"], ["description", "Praesentium ipsa et voluptate."], ["date", "2020-05-06 18:25:56.242660"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.245366"], ["updated_at", "2020-05-05 18:25:56.245366"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora exercitationem quis officia?"], ["description", "Eos qui et aut."], ["date", "2020-05-06 18:25:56.247288"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.248298"], ["updated_at", "2020-05-05 18:25:56.248298"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur a molestiae nihil?"], ["description", "Unde libero beatae qui."], ["date", "2020-05-06 18:25:56.249563"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.250254"], ["updated_at", "2020-05-05 18:25:56.250254"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis blanditiis rerum occaecati?"], ["description", "Occaecati magnam qui aut."], ["date", "2020-05-06 18:25:56.251465"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.253761"], ["updated_at", "2020-05-05 18:25:56.253761"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime placeat facilis velit?"], ["description", "Dicta sunt nulla nesciunt."], ["date", "2020-05-06 18:25:56.255762"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.256683"], ["updated_at", "2020-05-05 18:25:56.256683"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum fuga aperiam delectus?"], ["description", "Dolore ab quibusdam voluptatum."], ["date", "2020-05-06 18:25:56.257879"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.258555"], ["updated_at", "2020-05-05 18:25:56.258555"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita mollitia quo explicabo?"], ["description", "Eveniet unde ex ea."], ["date", "2020-05-06 18:25:56.260569"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.261591"], ["updated_at", "2020-05-05 18:25:56.261591"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil inventore eligendi vel?"], ["description", "Quia incidunt et dolorem."], ["date", "2020-05-06 18:25:56.262928"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.263629"], ["updated_at", "2020-05-05 18:25:56.263629"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et pariatur quo dolore?"], ["description", "Nam delectus dolorem in."], ["date", "2020-05-06 18:25:56.265532"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.266311"], ["updated_at", "2020-05-05 18:25:56.266311"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil sed esse consectetur?"], ["description", "Id neque consequatur consequatur."], ["date", "2020-05-06 18:25:56.267620"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.268299"], ["updated_at", "2020-05-05 18:25:56.268299"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi asperiores id laboriosam?"], ["description", "Laboriosam nihil perspiciatis fugiat."], ["date", "2020-05-06 18:25:56.269567"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.270238"], ["updated_at", "2020-05-05 18:25:56.270238"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem deleniti quas ducimus?"], ["description", "Nisi ad non ratione."], ["date", "2020-05-06 18:25:56.271427"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.272698"], ["updated_at", "2020-05-05 18:25:56.272698"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia officiis iste qui?"], ["description", "Repudiandae commodi expedita dicta."], ["date", "2020-05-06 18:25:56.275053"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.276065"], ["updated_at", "2020-05-05 18:25:56.276065"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores rerum ut perspiciatis?"], ["description", "Impedit a beatae inventore."], ["date", "2020-05-06 18:25:56.278431"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.279521"], ["updated_at", "2020-05-05 18:25:56.279521"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores minus dicta quo?"], ["description", "Facilis aliquam enim magnam."], ["date", "2020-05-06 18:25:56.280904"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.281637"], ["updated_at", "2020-05-05 18:25:56.281637"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet inventore quis aliquid?"], ["description", "Fuga quia sapiente nulla."], ["date", "2020-05-06 18:25:56.282868"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.283572"], ["updated_at", "2020-05-05 18:25:56.283572"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia consequatur facilis impedit?"], ["description", "Rerum ut voluptatem illum."], ["date", "2020-05-06 18:25:56.284788"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.285459"], ["updated_at", "2020-05-05 18:25:56.285459"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore voluptatum libero omnis?"], ["description", "Illum et in dolor."], ["date", "2020-05-06 18:25:56.286620"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.287272"], ["updated_at", "2020-05-05 18:25:56.287272"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur rerum dolores libero?"], ["description", "Qui voluptatem et adipisci."], ["date", "2020-05-06 18:25:56.288486"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.289161"], ["updated_at", "2020-05-05 18:25:56.289161"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:25:56 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 422 Unprocessable Entity in 6ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 3010) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Yung Denesik PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$O5xyDBCCQf9gCQ8F3kWgKum4l4QyWMbkXum4oUDKPCHsPnNpGzkKS"], ["created_at", "2020-05-05 18:25:56.308639"], ["updated_at", "2020-05-05 18:25:56.308639"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nam"], ["description", "Non ipsa eos sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.311959"], ["updated_at", "2020-05-05 18:25:56.311959"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor doloremque magni et?"], ["description", "Inventore sit aut est."], ["date", "2020-05-06 18:25:56.314586"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.316167"], ["updated_at", "2020-05-05 18:25:56.316167"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit similique autem inventore?"], ["description", "Excepturi dolor libero repudiandae."], ["date", "2020-05-06 18:25:56.318806"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.320404"], ["updated_at", "2020-05-05 18:25:56.320404"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui aut illum exercitationem?"], ["description", "Temporibus quia sit ab."], ["date", "2020-05-06 18:25:56.322142"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.323060"], ["updated_at", "2020-05-05 18:25:56.323060"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam ut rem dolor?"], ["description", "Voluptatem voluptate iure ea."], ["date", "2020-05-06 18:25:56.324263"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.324939"], ["updated_at", "2020-05-05 18:25:56.324939"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem architecto qui est?"], ["description", "Soluta temporibus quisquam sunt."], ["date", "2020-05-06 18:25:56.326180"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.327849"], ["updated_at", "2020-05-05 18:25:56.327849"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum quo et rem?"], ["description", "Perferendis odit rerum veniam."], ["date", "2020-05-06 18:25:56.329288"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.330131"], ["updated_at", "2020-05-05 18:25:56.330131"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi et neque qui?"], ["description", "Rem veritatis minus est."], ["date", "2020-05-06 18:25:56.331272"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.332082"], ["updated_at", "2020-05-05 18:25:56.332082"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A molestiae officiis eos?"], ["description", "Voluptatem atque maxime illum."], ["date", "2020-05-06 18:25:56.334645"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.335998"], ["updated_at", "2020-05-05 18:25:56.335998"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel laboriosam doloremque voluptas?"], ["description", "Dolorem ut velit deserunt."], ["date", "2020-05-06 18:25:56.337984"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.339897"], ["updated_at", "2020-05-05 18:25:56.339897"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero maiores et rerum?"], ["description", "Hic impedit vel culpa."], ["date", "2020-05-06 18:25:56.343261"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.344363"], ["updated_at", "2020-05-05 18:25:56.344363"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In officia illum asperiores?"], ["description", "Ut quas ut non."], ["date", "2020-05-06 18:25:56.345816"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.346498"], ["updated_at", "2020-05-05 18:25:56.346498"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia deleniti exercitationem doloribus?"], ["description", "Veniam id iste laudantium."], ["date", "2020-05-06 18:25:56.347661"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.348348"], ["updated_at", "2020-05-05 18:25:56.348348"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo temporibus dolores aliquam?"], ["description", "Quo maxime consequuntur consequatur."], ["date", "2020-05-06 18:25:56.349660"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.350386"], ["updated_at", "2020-05-05 18:25:56.350386"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi unde sit in?"], ["description", "Recusandae autem nisi neque."], ["date", "2020-05-06 18:25:56.351672"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.352968"], ["updated_at", "2020-05-05 18:25:56.352968"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore id eos nihil?"], ["description", "Sint ullam distinctio perferendis."], ["date", "2020-05-06 18:25:56.356267"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.357233"], ["updated_at", "2020-05-05 18:25:56.357233"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat dicta sint ullam?"], ["description", "Iste praesentium officia maiores."], ["date", "2020-05-06 18:25:56.358598"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.359780"], ["updated_at", "2020-05-05 18:25:56.359780"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et nisi est sit?"], ["description", "Rem voluptas laboriosam et."], ["date", "2020-05-06 18:25:56.361405"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.362395"], ["updated_at", "2020-05-05 18:25:56.362395"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero voluptatem natus quia?"], ["description", "Nulla et nihil omnis."], ["date", "2020-05-06 18:25:56.363786"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.364537"], ["updated_at", "2020-05-05 18:25:56.364537"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et est neque enim?"], ["description", "Assumenda consequatur totam est."], ["date", "2020-05-06 18:25:56.365692"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.366362"], ["updated_at", "2020-05-05 18:25:56.366362"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus voluptatum nobis eveniet?"], ["description", "Quod accusamus eum commodi."], ["date", "2020-05-06 18:25:56.367524"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:25:56.368202"], ["updated_at", "2020-05-05 18:25:56.368202"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:25:56 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 422 Unprocessable Entity in 19ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 2707) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Rerum et quaerat repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.401184"], ["updated_at", "2020-05-05 18:25:56.401184"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Asperiores aliquam omnis non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.404102"], ["updated_at", "2020-05-05 18:25:56.404102"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Est inventore sit excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.405541"], ["updated_at", "2020-05-05 18:25:56.405541"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Incidunt molestias voluptatem enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.406868"], ["updated_at", "2020-05-05 18:25:56.406868"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "hic"], ["description", "Rem deleniti fugiat soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.408189"], ["updated_at", "2020-05-05 18:25:56.408189"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Animi sed vel eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.410160"], ["updated_at", "2020-05-05 18:25:56.410160"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Consequatur est error officiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.411904"], ["updated_at", "2020-05-05 18:25:56.411904"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "amet"], ["description", "Magni et repellendus voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.413690"], ["updated_at", "2020-05-05 18:25:56.413690"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptate"], ["description", "Hic deleniti qui corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.416623"], ["updated_at", "2020-05-05 18:25:56.416623"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Excepturi iusto molestias sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.418977"], ["updated_at", "2020-05-05 18:25:56.418977"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Theo Emard"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$79FSdK7RjIzbqEBQtOyb5uuVqg4jld9Y3NFUqRIi.zccea9Rlq1da"], ["created_at", "2020-05-05 18:25:56.423769"], ["updated_at", "2020-05-05 18:25:56.423769"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:25:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.68ms) +Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.3ms | Allocations: 2915) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Voluptatum qui exercitationem quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.446225"], ["updated_at", "2020-05-05 18:25:56.446225"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellat"], ["description", "Ipsum aut ipsam aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.449062"], ["updated_at", "2020-05-05 18:25:56.449062"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "possimus"], ["description", "Nesciunt quam doloribus iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.450502"], ["updated_at", "2020-05-05 18:25:56.450502"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "optio"], ["description", "Omnis sunt minima sequi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.451901"], ["updated_at", "2020-05-05 18:25:56.451901"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quae"], ["description", "Accusamus libero quia ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.454237"], ["updated_at", "2020-05-05 18:25:56.454237"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Non debitis sapiente quisquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.456963"], ["updated_at", "2020-05-05 18:25:56.456963"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "totam"], ["description", "Non harum est natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.461585"], ["updated_at", "2020-05-05 18:25:56.461585"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "architecto"], ["description", "Ipsa velit et explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.463758"], ["updated_at", "2020-05-05 18:25:56.463758"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Voluptatem libero animi unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.465157"], ["updated_at", "2020-05-05 18:25:56.465157"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ullam"], ["description", "Voluptate ratione perferendis autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.466435"], ["updated_at", "2020-05-05 18:25:56.466435"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dominick Watsica"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$d8hx2b5Dko78Gmnr6DUoK.S/OylR02WfdBlwcx.z44r4yruXerttG"], ["created_at", "2020-05-05 18:25:56.469033"], ["updated_at", "2020-05-05 18:25:56.469033"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:25:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (5.94ms) +Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.2ms | Allocations: 2844) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "unde"], ["description", "Odit nulla velit ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.490354"], ["updated_at", "2020-05-05 18:25:56.490354"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Dignissimos architecto animi qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.493665"], ["updated_at", "2020-05-05 18:25:56.493665"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Repudiandae neque rem necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.497075"], ["updated_at", "2020-05-05 18:25:56.497075"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "suscipit"], ["description", "Molestias alias explicabo aliquid."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.499071"], ["updated_at", "2020-05-05 18:25:56.499071"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsum"], ["description", "Ipsa illo praesentium incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.502125"], ["updated_at", "2020-05-05 18:25:56.502125"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eius"], ["description", "Sed excepturi vero itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.504072"], ["updated_at", "2020-05-05 18:25:56.504072"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Porro nihil qui aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.505436"], ["updated_at", "2020-05-05 18:25:56.505436"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consectetur"], ["description", "Et totam qui ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.506731"], ["updated_at", "2020-05-05 18:25:56.506731"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illo"], ["description", "Magni natus debitis occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.508039"], ["updated_at", "2020-05-05 18:25:56.508039"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Aut eum sunt ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.509781"], ["updated_at", "2020-05-05 18:25:56.509781"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Rodrigo Weber"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ALtqMmokJJnNDYO84fNGqeEn/0GDkoFzTiGcjvjoIboaf5NEzITIe"], ["created_at", "2020-05-05 18:25:56.513121"], ["updated_at", "2020-05-05 18:25:56.513121"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:25:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.73ms) +Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:25:56 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.2ms) +Completed 200 OK in 4ms (Views: 1.5ms | ActiveRecord: 0.3ms | Allocations: 1241) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "placeat"], ["description", "Quae repellat nulla libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.541947"], ["updated_at", "2020-05-05 18:25:56.541947"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptates"], ["description", "Placeat quia aut hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.545329"], ["updated_at", "2020-05-05 18:25:56.545329"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Sit ipsa doloremque unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.546970"], ["updated_at", "2020-05-05 18:25:56.546970"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tenetur"], ["description", "Repellat iusto sequi architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.548255"], ["updated_at", "2020-05-05 18:25:56.548255"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "expedita"], ["description", "Sit et odit quaerat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.549759"], ["updated_at", "2020-05-05 18:25:56.549759"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Et quia corrupti nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.551103"], ["updated_at", "2020-05-05 18:25:56.551103"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "exercitationem"], ["description", "Consectetur itaque corrupti atque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.552463"], ["updated_at", "2020-05-05 18:25:56.552463"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ex"], ["description", "Necessitatibus vel ut culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.554081"], ["updated_at", "2020-05-05 18:25:56.554081"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptate"], ["description", "Aliquam vero accusantium perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.556968"], ["updated_at", "2020-05-05 18:25:56.556968"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "porro"], ["description", "Inventore culpa repudiandae aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.559946"], ["updated_at", "2020-05-05 18:25:56.559946"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Luciana Conroy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rbr57edHco5t2fglGhSYKOO7yiP1Zq9OIcLA90fX2l.bVZ9p54e5e"], ["created_at", "2020-05-05 18:25:56.564862"], ["updated_at", "2020-05-05 18:25:56.564862"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:25:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2843) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:25:56 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.56ms) +Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 0.3ms | Allocations: 1240) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laborum"], ["description", "Repudiandae veniam eos doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.588619"], ["updated_at", "2020-05-05 18:25:56.588619"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laudantium"], ["description", "Amet exercitationem qui quisquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.591542"], ["updated_at", "2020-05-05 18:25:56.591542"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ducimus"], ["description", "Ullam aut quidem iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.593817"], ["updated_at", "2020-05-05 18:25:56.593817"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "exercitationem"], ["description", "Magnam hic quas aperiam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.596619"], ["updated_at", "2020-05-05 18:25:56.596619"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "explicabo"], ["description", "Ad accusantium omnis quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.598653"], ["updated_at", "2020-05-05 18:25:56.598653"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Doloribus et et et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.601952"], ["updated_at", "2020-05-05 18:25:56.601952"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "porro"], ["description", "Molestiae alias sit ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.603980"], ["updated_at", "2020-05-05 18:25:56.603980"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veniam"], ["description", "Eos impedit et similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.605449"], ["updated_at", "2020-05-05 18:25:56.605449"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptates"], ["description", "Eum ipsam blanditiis eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.606775"], ["updated_at", "2020-05-05 18:25:56.606775"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maiores"], ["description", "Magnam quasi quisquam aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.608087"], ["updated_at", "2020-05-05 18:25:56.608087"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Joshua Bergnaum"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$lH123ZNti0dwaeBWarDrguzk0ZcC/CkKVw60FtddxHzgHZ36QRKbm"], ["created_at", "2020-05-05 18:25:56.611207"], ["updated_at", "2020-05-05 18:25:56.611207"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:25:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.97ms) +Completed 200 OK in 8ms (Views: 6.1ms | ActiveRecord: 0.3ms | Allocations: 2843) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:25:56 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 404 Not Found in 2ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 512) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "praesentium"], ["description", "Vitae commodi consequatur dolore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.636433"], ["updated_at", "2020-05-05 18:25:56.636433"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatum"], ["description", "Sunt repudiandae laudantium iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.639941"], ["updated_at", "2020-05-05 18:25:56.639941"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Aut ut at et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.641567"], ["updated_at", "2020-05-05 18:25:56.641567"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Autem animi architecto enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.643451"], ["updated_at", "2020-05-05 18:25:56.643451"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Fugit vel enim ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.645203"], ["updated_at", "2020-05-05 18:25:56.645203"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "suscipit"], ["description", "Harum eaque earum eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.646666"], ["updated_at", "2020-05-05 18:25:56.646666"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cupiditate"], ["description", "Dolores maxime repellendus voluptatum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.647924"], ["updated_at", "2020-05-05 18:25:56.647924"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Quasi sed expedita quas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.649224"], ["updated_at", "2020-05-05 18:25:56.649224"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "debitis"], ["description", "Nobis eveniet laudantium similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.650547"], ["updated_at", "2020-05-05 18:25:56.650547"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "delectus"], ["description", "Dolor delectus debitis perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.652056"], ["updated_at", "2020-05-05 18:25:56.652056"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Vicente Langosh"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BDznsaTe3EauWyjxaoVMP.2MV9VE0UAKKrsiKssWbJU9xzpiSFaWu"], ["created_at", "2020-05-05 18:25:56.655105"], ["updated_at", "2020-05-05 18:25:56.655105"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:25:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.3ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.36ms) +Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.4ms | Allocations: 2843) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:25:56 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Et rem quas expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.681033"], ["updated_at", "2020-05-05 18:25:56.681033"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Nihil quo velit consectetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.683903"], ["updated_at", "2020-05-05 18:25:56.683903"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "expedita"], ["description", "Repellendus quisquam alias quidem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.685396"], ["updated_at", "2020-05-05 18:25:56.685396"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "unde"], ["description", "Ut autem magni deleniti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.686718"], ["updated_at", "2020-05-05 18:25:56.686718"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magnam"], ["description", "Numquam nisi nemo impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.687994"], ["updated_at", "2020-05-05 18:25:56.687994"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laboriosam"], ["description", "Maiores modi aut recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.689289"], ["updated_at", "2020-05-05 18:25:56.689289"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sapiente"], ["description", "Laborum et sint fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.690561"], ["updated_at", "2020-05-05 18:25:56.690561"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Maxime labore et dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.692027"], ["updated_at", "2020-05-05 18:25:56.692027"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Placeat optio laudantium non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.693838"], ["updated_at", "2020-05-05 18:25:56.693838"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vero"], ["description", "Culpa iure ullam aperiam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.696179"], ["updated_at", "2020-05-05 18:25:56.696179"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Fletcher Mueller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Xpy3zdKQHRt4Dpz2JbpW1Oon/6x4lbnEigG4gSjMEz61a3nh6G0qe"], ["created_at", "2020-05-05 18:25:56.700025"], ["updated_at", "2020-05-05 18:25:56.700025"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:25:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.76ms) +Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:25: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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:25:56.727149"], ["updated_at", "2020-05-05 18:25:56.727149"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.52ms) +Completed 201 Created in 22ms (Views: 1.0ms | ActiveRecord: 1.2ms | Allocations: 6220) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "A sunt perferendis sequi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.745508"], ["updated_at", "2020-05-05 18:25:56.745508"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Incidunt quo beatae et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.748270"], ["updated_at", "2020-05-05 18:25:56.748270"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Quis labore quos id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.749654"], ["updated_at", "2020-05-05 18:25:56.749654"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eligendi"], ["description", "Aut id sed hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.750918"], ["updated_at", "2020-05-05 18:25:56.750918"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Asperiores est delectus veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.752197"], ["updated_at", "2020-05-05 18:25:56.752197"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quidem"], ["description", "Et sunt voluptas labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.753593"], ["updated_at", "2020-05-05 18:25:56.753593"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quibusdam"], ["description", "Quod molestias similique et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.755037"], ["updated_at", "2020-05-05 18:25:56.755037"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptates"], ["description", "Amet fugiat sed voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.757271"], ["updated_at", "2020-05-05 18:25:56.757271"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illum"], ["description", "Incidunt explicabo ipsa quas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.760420"], ["updated_at", "2020-05-05 18:25:56.760420"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "atque"], ["description", "Ex et qui ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.763508"], ["updated_at", "2020-05-05 18:25:56.763508"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marietta Abshire"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$zwLQdkTMS5UaWA0jEVwzZ./amr0dqfapxqIG8kmAwBPkfztbtCkke"], ["created_at", "2020-05-05 18:25:56.766777"], ["updated_at", "2020-05-05 18:25:56.766777"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:25:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.02ms) +Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms | Allocations: 2842) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:25: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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:25:56.780531"], ["updated_at", "2020-05-05 18:25:56.780531"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.51ms) +Completed 201 Created in 6ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 2217) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (26.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officiis"], ["description", "Totam fuga in aperiam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.813994"], ["updated_at", "2020-05-05 18:25:56.813994"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Dignissimos optio ut aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.818225"], ["updated_at", "2020-05-05 18:25:56.818225"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "possimus"], ["description", "Consequuntur dolor neque et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.820075"], ["updated_at", "2020-05-05 18:25:56.820075"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eaque"], ["description", "Quo quae culpa sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.824147"], ["updated_at", "2020-05-05 18:25:56.824147"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Modi libero ullam ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.827324"], ["updated_at", "2020-05-05 18:25:56.827324"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Adipisci sed eum natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.828882"], ["updated_at", "2020-05-05 18:25:56.828882"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ab"], ["description", "Et repellat consequatur occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.830283"], ["updated_at", "2020-05-05 18:25:56.830283"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cumque"], ["description", "Beatae quod non aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.831684"], ["updated_at", "2020-05-05 18:25:56.831684"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "in"], ["description", "Asperiores doloribus ut odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.833002"], ["updated_at", "2020-05-05 18:25:56.833002"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Sequi nemo non molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.834286"], ["updated_at", "2020-05-05 18:25:56.834286"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ben Veum PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KnNkyBI4qDUvfiEJqdxxcuetSAirY7WHHA8xpM37Z/SB6ptk1bURe"], ["created_at", "2020-05-05 18:25:56.837799"], ["updated_at", "2020-05-05 18:25:56.837799"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:25:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.3ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.28ms) +Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.4ms | Allocations: 2841) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:25:56 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 422 Unprocessable Entity in 6ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 4006) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "modi"], ["description", "Dolorem quas neque praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.866926"], ["updated_at", "2020-05-05 18:25:56.866926"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rem"], ["description", "Distinctio rerum inventore est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.869596"], ["updated_at", "2020-05-05 18:25:56.869596"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Inventore fuga tempore temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.870975"], ["updated_at", "2020-05-05 18:25:56.870975"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Ut iure nemo quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.872284"], ["updated_at", "2020-05-05 18:25:56.872284"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugit"], ["description", "Dolor provident vel enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.873594"], ["updated_at", "2020-05-05 18:25:56.873594"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Et rerum omnis possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.875106"], ["updated_at", "2020-05-05 18:25:56.875106"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "modi"], ["description", "Quam aut vel neque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.878573"], ["updated_at", "2020-05-05 18:25:56.878573"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quidem"], ["description", "Non explicabo quibusdam eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.880507"], ["updated_at", "2020-05-05 18:25:56.880507"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "provident"], ["description", "Molestiae iste aliquid cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.883011"], ["updated_at", "2020-05-05 18:25:56.883011"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Qui laudantium et harum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.884917"], ["updated_at", "2020-05-05 18:25:56.884917"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Trent Bradtke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FiEetZF8ubdbNA7N0lIVeOT0fc8dchscXiwvaYWDqs.xPKlUkSxlm"], ["created_at", "2020-05-05 18:25:56.887822"], ["updated_at", "2020-05-05 18:25:56.887822"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:25:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.4ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:25:56 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.8ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ullam"], ["description", "Quod ratione velit non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.914565"], ["updated_at", "2020-05-05 18:25:56.914565"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsum"], ["description", "Adipisci placeat vel rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.918714"], ["updated_at", "2020-05-05 18:25:56.918714"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Accusantium rem ad ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.920776"], ["updated_at", "2020-05-05 18:25:56.920776"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "soluta"], ["description", "Voluptatem nulla velit iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.923631"], ["updated_at", "2020-05-05 18:25:56.923631"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eveniet"], ["description", "Maiores cumque porro veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.925941"], ["updated_at", "2020-05-05 18:25:56.925941"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Sed excepturi culpa natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.927835"], ["updated_at", "2020-05-05 18:25:56.927835"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequuntur"], ["description", "Magnam et voluptate facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.929143"], ["updated_at", "2020-05-05 18:25:56.929143"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ullam"], ["description", "Sunt impedit culpa rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.930569"], ["updated_at", "2020-05-05 18:25:56.930569"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Alias sed nam modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.931949"], ["updated_at", "2020-05-05 18:25:56.931949"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quos"], ["description", "Laudantium omnis vitae laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.933292"], ["updated_at", "2020-05-05 18:25:56.933292"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kraig Spencer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XgbgoX0mEJsmY6MgPh8Imuty70BV3mdkCoyD3Ka3Gd.7F1AaXT6wa"], ["created_at", "2020-05-05 18:25:56.936084"], ["updated_at", "2020-05-05 18:25:56.936084"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:25:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.94ms) +Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.3ms | Allocations: 2843) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:25:56 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:25:56.952086"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1087) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (10.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolore"], ["description", "Dolor recusandae adipisci quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.966579"], ["updated_at", "2020-05-05 18:25:56.966579"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Dolor praesentium explicabo tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.969325"], ["updated_at", "2020-05-05 18:25:56.969325"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odit"], ["description", "Nisi eligendi illo omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.970749"], ["updated_at", "2020-05-05 18:25:56.970749"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "inventore"], ["description", "Officia ipsum in itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.972054"], ["updated_at", "2020-05-05 18:25:56.972054"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "similique"], ["description", "Recusandae aliquid quam ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.973242"], ["updated_at", "2020-05-05 18:25:56.973242"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nesciunt"], ["description", "Ipsam id eum dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.975006"], ["updated_at", "2020-05-05 18:25:56.975006"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officiis"], ["description", "Dolorum voluptatem nobis veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.977550"], ["updated_at", "2020-05-05 18:25:56.977550"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quos"], ["description", "Dolores quasi perferendis dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.980340"], ["updated_at", "2020-05-05 18:25:56.980340"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cupiditate"], ["description", "Qui possimus ut id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.982141"], ["updated_at", "2020-05-05 18:25:56.982141"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dicta"], ["description", "Similique esse harum sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:56.984491"], ["updated_at", "2020-05-05 18:25:56.984491"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Carmelo Powlowski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QFmIfesqyw0hJ/AYhGGJruhH//SYlY2JFXHfpBOt2lYrsbxou4DYy"], ["created_at", "2020-05-05 18:25:56.987789"], ["updated_at", "2020-05-05 18:25:56.987789"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:25:56 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.5ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:25:56 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:25:57.000929"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 999) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugit"], ["description", "A consequatur natus accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:57.011640"], ["updated_at", "2020-05-05 18:25:57.011640"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eius"], ["description", "Sit natus et vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:57.014432"], ["updated_at", "2020-05-05 18:25:57.014432"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequuntur"], ["description", "Dolorum nam deleniti commodi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:57.015845"], ["updated_at", "2020-05-05 18:25:57.015845"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "numquam"], ["description", "Aut iste quasi cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:57.018438"], ["updated_at", "2020-05-05 18:25:57.018438"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Sint sed et explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:57.021089"], ["updated_at", "2020-05-05 18:25:57.021089"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Sunt voluptas voluptatem possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:57.023143"], ["updated_at", "2020-05-05 18:25:57.023143"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "animi"], ["description", "Similique aut hic corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:57.024450"], ["updated_at", "2020-05-05 18:25:57.024450"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "necessitatibus"], ["description", "Non officiis veritatis omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:57.025743"], ["updated_at", "2020-05-05 18:25:57.025743"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rem"], ["description", "Et et ut excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:57.027572"], ["updated_at", "2020-05-05 18:25:57.027572"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloremque"], ["description", "Iste mollitia qui debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:25:57.029115"], ["updated_at", "2020-05-05 18:25:57.029115"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Isidro Klocko"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ppR.L8WBrH7dP0YIWVpIEOHzsOTdx13LQhlT5zuOmzCzKtO.t5A.m"], ["created_at", "2020-05-05 18:25:57.031745"], ["updated_at", "2020-05-05 18:25:57.031745"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:25:57 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.06ms) +Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.1ms | Allocations: 2843) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:25:57 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.6ms | Allocations: 1221) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (33.1ms) rollback transaction +  (5.5ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (175.6ms) DELETE FROM "meetings"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (107.8ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (102.4ms) DELETE FROM "user_meetings"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (1.0ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (122.3ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (363.2ms) DELETE FROM "conversations"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (148.8ms) DELETE FROM "messagems"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (88.3ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.2ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cristal Rempel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2M8E7zbXE0EJcjvTgZ.k0ek8uQkaFF7dn1CcFoQQG2ujx3RVJm3Be"], ["created_at", "2020-05-05 18:26:32.218507"], ["updated_at", "2020-05-05 18:26:32.218507"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veniam"], ["description", "Earum est aut soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:32.236096"], ["updated_at", "2020-05-05 18:26:32.236096"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur placeat incidunt et?"], ["description", "Perferendis reiciendis laborum aut."], ["date", "2020-05-06 18:26:32.258863"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.285232"], ["updated_at", "2020-05-05 18:26:32.285232"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero amet non sunt?"], ["description", "Recusandae blanditiis et earum."], ["date", "2020-05-06 18:26:32.287341"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.288480"], ["updated_at", "2020-05-05 18:26:32.288480"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor aspernatur et nemo?"], ["description", "Voluptas aperiam in ut."], ["date", "2020-05-06 18:26:32.289962"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.290736"], ["updated_at", "2020-05-05 18:26:32.290736"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur fugit aliquid mollitia?"], ["description", "Consequatur repellendus dolores vel."], ["date", "2020-05-06 18:26:32.292031"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.292916"], ["updated_at", "2020-05-05 18:26:32.292916"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At ipsam in et?"], ["description", "Est quae non non."], ["date", "2020-05-06 18:26:32.294741"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.295706"], ["updated_at", "2020-05-05 18:26:32.295706"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A in qui non?"], ["description", "Possimus voluptatem est deserunt."], ["date", "2020-05-06 18:26:32.296949"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.297659"], ["updated_at", "2020-05-05 18:26:32.297659"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi quia velit minima?"], ["description", "Ut quam itaque odit."], ["date", "2020-05-06 18:26:32.298783"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.299472"], ["updated_at", "2020-05-05 18:26:32.299472"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed enim nobis reiciendis?"], ["description", "Vel modi cupiditate accusamus."], ["date", "2020-05-06 18:26:32.300682"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.301463"], ["updated_at", "2020-05-05 18:26:32.301463"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis ut vitae ut?"], ["description", "Non quod perferendis quia."], ["date", "2020-05-06 18:26:32.302664"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.303390"], ["updated_at", "2020-05-05 18:26:32.303390"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur et qui qui?"], ["description", "Perspiciatis autem quod illum."], ["date", "2020-05-06 18:26:32.305165"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.305978"], ["updated_at", "2020-05-05 18:26:32.305978"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia minima adipisci nemo?"], ["description", "Saepe eum a dolorem."], ["date", "2020-05-06 18:26:32.307837"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.308834"], ["updated_at", "2020-05-05 18:26:32.308834"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est dicta et iste?"], ["description", "Et odio sit blanditiis."], ["date", "2020-05-06 18:26:32.310236"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.311786"], ["updated_at", "2020-05-05 18:26:32.311786"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur harum alias praesentium?"], ["description", "Velit labore aliquid ea."], ["date", "2020-05-06 18:26:32.313533"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.314377"], ["updated_at", "2020-05-05 18:26:32.314377"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni est consequatur recusandae?"], ["description", "Dolores ut quod et."], ["date", "2020-05-06 18:26:32.315544"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.316274"], ["updated_at", "2020-05-05 18:26:32.316274"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi aliquid repudiandae accusantium?"], ["description", "Incidunt omnis inventore nisi."], ["date", "2020-05-06 18:26:32.317466"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.318147"], ["updated_at", "2020-05-05 18:26:32.318147"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In atque quae est?"], ["description", "Modi quo molestiae quis."], ["date", "2020-05-06 18:26:32.319332"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.320022"], ["updated_at", "2020-05-05 18:26:32.320022"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non aliquam facere odio?"], ["description", "Minus sequi sit ea."], ["date", "2020-05-06 18:26:32.321205"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.321929"], ["updated_at", "2020-05-05 18:26:32.321929"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti sit aliquid dicta?"], ["description", "Repellendus minima consequatur laborum."], ["date", "2020-05-06 18:26:32.323169"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.323854"], ["updated_at", "2020-05-05 18:26:32.323854"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit error velit est?"], ["description", "Qui perspiciatis ea non."], ["date", "2020-05-06 18:26:32.325052"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.326233"], ["updated_at", "2020-05-05 18:26:32.326233"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem eos nemo facere?"], ["description", "Nihil quasi atque temporibus."], ["date", "2020-05-06 18:26:32.328576"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.329534"], ["updated_at", "2020-05-05 18:26:32.329534"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:26:32 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.38ms) +Completed 200 OK in 34ms (Views: 15.7ms | ActiveRecord: 0.5ms | Allocations: 8636) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mia Upton"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Qm1hKmvo5Ju0XnHIm93NoOVPfyd.tp1jaxv6Blt2r4Iz7RffIBUHW"], ["created_at", "2020-05-05 18:26:32.415088"], ["updated_at", "2020-05-05 18:26:32.415088"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Voluptatibus et adipisci facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:32.418958"], ["updated_at", "2020-05-05 18:26:32.418958"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est dignissimos qui et?"], ["description", "Ut id vel voluptatibus."], ["date", "2020-05-06 18:26:32.420537"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.421524"], ["updated_at", "2020-05-05 18:26:32.421524"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut explicabo quam voluptatem?"], ["description", "Nulla eum est quis."], ["date", "2020-05-06 18:26:32.422868"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.423608"], ["updated_at", "2020-05-05 18:26:32.423608"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum doloremque laborum et?"], ["description", "Vel sint eos omnis."], ["date", "2020-05-06 18:26:32.424900"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.425788"], ["updated_at", "2020-05-05 18:26:32.425788"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero enim molestias et?"], ["description", "Quisquam assumenda laborum itaque."], ["date", "2020-05-06 18:26:32.427681"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.429096"], ["updated_at", "2020-05-05 18:26:32.429096"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero quo nihil eaque?"], ["description", "Repudiandae ut consectetur soluta."], ["date", "2020-05-06 18:26:32.430613"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.431436"], ["updated_at", "2020-05-05 18:26:32.431436"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima saepe perspiciatis necessitatibus?"], ["description", "Qui quo molestiae omnis."], ["date", "2020-05-06 18:26:32.432619"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.433332"], ["updated_at", "2020-05-05 18:26:32.433332"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem et voluptatem qui?"], ["description", "Modi iure voluptas necessitatibus."], ["date", "2020-05-06 18:26:32.434471"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.435145"], ["updated_at", "2020-05-05 18:26:32.435145"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut debitis cum quam?"], ["description", "Blanditiis quam perferendis illum."], ["date", "2020-05-06 18:26:32.436282"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.437086"], ["updated_at", "2020-05-05 18:26:32.437086"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut perspiciatis corrupti ratione?"], ["description", "Ut voluptatem reprehenderit quia."], ["date", "2020-05-06 18:26:32.438479"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.439689"], ["updated_at", "2020-05-05 18:26:32.439689"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex tempore itaque repudiandae?"], ["description", "Saepe est tempora accusantium."], ["date", "2020-05-06 18:26:32.442549"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.443664"], ["updated_at", "2020-05-05 18:26:32.443664"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam eos nihil suscipit?"], ["description", "Repellat velit fuga veritatis."], ["date", "2020-05-06 18:26:32.445088"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.445774"], ["updated_at", "2020-05-05 18:26:32.445774"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati dicta fuga vero?"], ["description", "Sapiente corporis unde rem."], ["date", "2020-05-06 18:26:32.447116"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.448239"], ["updated_at", "2020-05-05 18:26:32.448239"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam qui est ducimus?"], ["description", "Libero ipsa accusantium voluptatem."], ["date", "2020-05-06 18:26:32.449972"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.450840"], ["updated_at", "2020-05-05 18:26:32.450840"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga tenetur dicta similique?"], ["description", "Beatae laborum omnis suscipit."], ["date", "2020-05-06 18:26:32.452296"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.453092"], ["updated_at", "2020-05-05 18:26:32.453092"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et iure praesentium dignissimos?"], ["description", "Nihil et et consequatur."], ["date", "2020-05-06 18:26:32.454354"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.455047"], ["updated_at", "2020-05-05 18:26:32.455047"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum totam est enim?"], ["description", "Cumque accusamus veritatis dolores."], ["date", "2020-05-06 18:26:32.456244"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.456907"], ["updated_at", "2020-05-05 18:26:32.456907"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet similique voluptatem accusantium?"], ["description", "Possimus dolorum quibusdam ea."], ["date", "2020-05-06 18:26:32.458064"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.458729"], ["updated_at", "2020-05-05 18:26:32.458729"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem et facilis autem?"], ["description", "Voluptatibus iste libero vitae."], ["date", "2020-05-06 18:26:32.460295"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.461537"], ["updated_at", "2020-05-05 18:26:32.461537"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit sed quo commodi?"], ["description", "Quidem iure id non."], ["date", "2020-05-06 18:26:32.463165"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.464049"], ["updated_at", "2020-05-05 18:26:32.464049"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt laborum voluptate veritatis?"], ["description", "Dolor dolor soluta voluptatem."], ["date", "2020-05-06 18:26:32.465303"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.466008"], ["updated_at", "2020-05-05 18:26:32.466008"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:26:32 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (7.89ms) +Completed 200 OK in 11ms (Views: 9.8ms | ActiveRecord: 0.3ms | Allocations: 5516) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Johnny Fay"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$f8T.SkDjdCo/slIPU/NZG..1VQvlYvCV83HPRhDK4ErGWJEZuPwOK"], ["created_at", "2020-05-05 18:26:32.495581"], ["updated_at", "2020-05-05 18:26:32.495581"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rem"], ["description", "Laudantium aut qui consectetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:32.499524"], ["updated_at", "2020-05-05 18:26:32.499524"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis omnis sapiente et?"], ["description", "Porro velit non dolores."], ["date", "2020-05-06 18:26:32.501314"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.502355"], ["updated_at", "2020-05-05 18:26:32.502355"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A eum dignissimos aut?"], ["description", "Suscipit eveniet nulla deserunt."], ["date", "2020-05-06 18:26:32.503876"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.504652"], ["updated_at", "2020-05-05 18:26:32.504652"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe in tenetur aut?"], ["description", "Possimus architecto repudiandae et."], ["date", "2020-05-06 18:26:32.505792"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.506522"], ["updated_at", "2020-05-05 18:26:32.506522"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.5ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est ut iusto ut?"], ["description", "Animi unde totam occaecati."], ["date", "2020-05-06 18:26:32.507768"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.510395"], ["updated_at", "2020-05-05 18:26:32.510395"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis illo voluptatem recusandae?"], ["description", "Et ex occaecati est."], ["date", "2020-05-06 18:26:32.512371"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.513977"], ["updated_at", "2020-05-05 18:26:32.513977"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus et ut in?"], ["description", "Eos voluptatibus quae consectetur."], ["date", "2020-05-06 18:26:32.515532"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.516271"], ["updated_at", "2020-05-05 18:26:32.516271"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium molestiae quis velit?"], ["description", "Nesciunt fugit et ea."], ["date", "2020-05-06 18:26:32.517390"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.518083"], ["updated_at", "2020-05-05 18:26:32.518083"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim autem et dolor?"], ["description", "Nihil officia quas fuga."], ["date", "2020-05-06 18:26:32.519256"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.519952"], ["updated_at", "2020-05-05 18:26:32.519952"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem nisi aut in?"], ["description", "Quas possimus vitae dicta."], ["date", "2020-05-06 18:26:32.521084"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.521798"], ["updated_at", "2020-05-05 18:26:32.521798"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reiciendis et aut dolores?"], ["description", "Debitis ea accusamus dignissimos."], ["date", "2020-05-06 18:26:32.523681"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.524640"], ["updated_at", "2020-05-05 18:26:32.524640"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus autem dolorem qui?"], ["description", "Quis nihil sed sapiente."], ["date", "2020-05-06 18:26:32.527235"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.528875"], ["updated_at", "2020-05-05 18:26:32.528875"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae facere totam unde?"], ["description", "Doloremque nihil facere velit."], ["date", "2020-05-06 18:26:32.530571"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.531450"], ["updated_at", "2020-05-05 18:26:32.531450"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit nam recusandae molestiae?"], ["description", "Qui saepe alias dolorem."], ["date", "2020-05-06 18:26:32.532691"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.533399"], ["updated_at", "2020-05-05 18:26:32.533399"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab voluptatibus autem et?"], ["description", "Ab voluptatem ut accusantium."], ["date", "2020-05-06 18:26:32.534674"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.535364"], ["updated_at", "2020-05-05 18:26:32.535364"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In quo rem officia?"], ["description", "Repellendus placeat natus quis."], ["date", "2020-05-06 18:26:32.536836"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.537623"], ["updated_at", "2020-05-05 18:26:32.537623"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (19.5ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore ut voluptates nobis?"], ["description", "Laudantium aspernatur minus non."], ["date", "2020-05-06 18:26:32.538835"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.559204"], ["updated_at", "2020-05-05 18:26:32.559204"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem minima voluptas amet?"], ["description", "Facere incidunt voluptatibus eum."], ["date", "2020-05-06 18:26:32.560875"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.561757"], ["updated_at", "2020-05-05 18:26:32.561757"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati ipsam aut dolor?"], ["description", "Mollitia et qui doloribus."], ["date", "2020-05-06 18:26:32.562996"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.563709"], ["updated_at", "2020-05-05 18:26:32.563709"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit unde suscipit assumenda?"], ["description", "Nulla unde nemo et."], ["date", "2020-05-06 18:26:32.565020"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.565718"], ["updated_at", "2020-05-05 18:26:32.565718"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos voluptatem voluptas quaerat?"], ["description", "Laboriosam voluptatibus id nisi."], ["date", "2020-05-06 18:26:32.566924"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.567715"], ["updated_at", "2020-05-05 18:26:32.567715"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:26:32 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms) +Completed 404 Not Found in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms | Allocations: 866) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Roger Moen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kVJwX4cZUtaQsX45kMRWSOms.mIN2EYoOHNg.Gi1VI71OqKnr/3C6"], ["created_at", "2020-05-05 18:26:32.589385"], ["updated_at", "2020-05-05 18:26:32.589385"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facere"], ["description", "Quo excepturi repellat sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:32.593791"], ["updated_at", "2020-05-05 18:26:32.593791"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis voluptas numquam ut?"], ["description", "Qui eum quaerat quo."], ["date", "2020-05-06 18:26:32.595850"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.596796"], ["updated_at", "2020-05-05 18:26:32.596796"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum a repellat ab?"], ["description", "Nemo dolorem quod harum."], ["date", "2020-05-06 18:26:32.598198"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.598934"], ["updated_at", "2020-05-05 18:26:32.598934"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui non quas aut?"], ["description", "Tempore laudantium modi consequatur."], ["date", "2020-05-06 18:26:32.600093"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.600786"], ["updated_at", "2020-05-05 18:26:32.600786"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit sit maiores harum?"], ["description", "A quo consequatur laudantium."], ["date", "2020-05-06 18:26:32.601984"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.602682"], ["updated_at", "2020-05-05 18:26:32.602682"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates aut qui corrupti?"], ["description", "Ipsam eum deserunt atque."], ["date", "2020-05-06 18:26:32.603983"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.604743"], ["updated_at", "2020-05-05 18:26:32.604743"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id delectus est aspernatur?"], ["description", "Dolores ut harum asperiores."], ["date", "2020-05-06 18:26:32.605835"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.606505"], ["updated_at", "2020-05-05 18:26:32.606505"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel voluptas iure ut?"], ["description", "Magnam at voluptas voluptate."], ["date", "2020-05-06 18:26:32.607573"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.608443"], ["updated_at", "2020-05-05 18:26:32.608443"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus illum deleniti saepe?"], ["description", "Doloribus explicabo iure est."], ["date", "2020-05-06 18:26:32.611812"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.613547"], ["updated_at", "2020-05-05 18:26:32.613547"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident dolores perspiciatis est?"], ["description", "Perferendis inventore eum officiis."], ["date", "2020-05-06 18:26:32.615056"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.615885"], ["updated_at", "2020-05-05 18:26:32.615885"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti dolorem vitae molestias?"], ["description", "Vel cupiditate voluptate qui."], ["date", "2020-05-06 18:26:32.617788"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.618619"], ["updated_at", "2020-05-05 18:26:32.618619"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi dolores ut nemo?"], ["description", "Repellat beatae libero sapiente."], ["date", "2020-05-06 18:26:32.619867"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.620560"], ["updated_at", "2020-05-05 18:26:32.620560"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui aut debitis veniam?"], ["description", "Cum sunt et porro."], ["date", "2020-05-06 18:26:32.621837"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.622616"], ["updated_at", "2020-05-05 18:26:32.622616"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea itaque cumque quos?"], ["description", "Cum quia ea perspiciatis."], ["date", "2020-05-06 18:26:32.623910"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.624604"], ["updated_at", "2020-05-05 18:26:32.624604"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur et porro exercitationem?"], ["description", "Consequatur recusandae quia eveniet."], ["date", "2020-05-06 18:26:32.626077"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.627358"], ["updated_at", "2020-05-05 18:26:32.627358"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque et voluptas nobis?"], ["description", "Nihil quisquam voluptates omnis."], ["date", "2020-05-06 18:26:32.629049"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.630301"], ["updated_at", "2020-05-05 18:26:32.630301"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis suscipit occaecati nam?"], ["description", "Nulla delectus praesentium eos."], ["date", "2020-05-06 18:26:32.631918"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.632669"], ["updated_at", "2020-05-05 18:26:32.632669"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet iste deserunt ut?"], ["description", "Quae aut qui enim."], ["date", "2020-05-06 18:26:32.633848"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.634551"], ["updated_at", "2020-05-05 18:26:32.634551"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia dolorum provident vitae?"], ["description", "Quibusdam dolorum totam assumenda."], ["date", "2020-05-06 18:26:32.635785"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.636487"], ["updated_at", "2020-05-05 18:26:32.636487"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus fugit dolores non?"], ["description", "Aut est voluptatem nihil."], ["date", "2020-05-06 18:26:32.637651"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.638327"], ["updated_at", "2020-05-05 18:26:32.638327"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea molestias facilis quia?"], ["description", "Esse eum sapiente voluptatem."], ["date", "2020-05-06 18:26:32.639544"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.640229"], ["updated_at", "2020-05-05 18:26:32.640229"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:26:32 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 404 Not Found in 2ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 509) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bethany Kunze"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JDaP9xyW1o9jUrKqxOfhMOgQrsDH9SpOVKRsmqAXAX.l1Lx3fG32C"], ["created_at", "2020-05-05 18:26:32.659671"], ["updated_at", "2020-05-05 18:26:32.659671"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quisquam"], ["description", "Ipsa aliquid dicta et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:32.663131"], ["updated_at", "2020-05-05 18:26:32.663131"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas eos sint fuga?"], ["description", "Fugiat enim atque impedit."], ["date", "2020-05-06 18:26:32.664778"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.665684"], ["updated_at", "2020-05-05 18:26:32.665684"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error quia et ut?"], ["description", "Distinctio quos consequatur deserunt."], ["date", "2020-05-06 18:26:32.666908"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.667617"], ["updated_at", "2020-05-05 18:26:32.667617"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit quo aut voluptas?"], ["description", "Rerum quaerat adipisci velit."], ["date", "2020-05-06 18:26:32.669146"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.670557"], ["updated_at", "2020-05-05 18:26:32.670557"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam sint vel fugit?"], ["description", "Officiis fugit ad repellat."], ["date", "2020-05-06 18:26:32.672429"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.673657"], ["updated_at", "2020-05-05 18:26:32.673657"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque ab repellat error?"], ["description", "Commodi sint sit dolore."], ["date", "2020-05-06 18:26:32.675838"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.676806"], ["updated_at", "2020-05-05 18:26:32.676806"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit expedita ut maiores?"], ["description", "Maxime consequatur consectetur soluta."], ["date", "2020-05-06 18:26:32.678059"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.678709"], ["updated_at", "2020-05-05 18:26:32.678709"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum alias quam quia?"], ["description", "Nihil placeat enim ea."], ["date", "2020-05-06 18:26:32.679840"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.680496"], ["updated_at", "2020-05-05 18:26:32.680496"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti inventore voluptas nihil?"], ["description", "Consequatur ratione libero in."], ["date", "2020-05-06 18:26:32.681629"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.682298"], ["updated_at", "2020-05-05 18:26:32.682298"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel tempore quis eos?"], ["description", "Quis corporis quos consequatur."], ["date", "2020-05-06 18:26:32.683403"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.684147"], ["updated_at", "2020-05-05 18:26:32.684147"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet voluptates sed itaque?"], ["description", "Eius et ratione est."], ["date", "2020-05-06 18:26:32.686076"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.686931"], ["updated_at", "2020-05-05 18:26:32.686931"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut architecto itaque debitis?"], ["description", "Debitis quasi culpa delectus."], ["date", "2020-05-06 18:26:32.688299"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.689713"], ["updated_at", "2020-05-05 18:26:32.689713"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et repellendus voluptas at?"], ["description", "Et quasi ad nulla."], ["date", "2020-05-06 18:26:32.691645"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.692761"], ["updated_at", "2020-05-05 18:26:32.692761"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi unde modi quia?"], ["description", "Nobis voluptatem saepe magnam."], ["date", "2020-05-06 18:26:32.694469"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.695360"], ["updated_at", "2020-05-05 18:26:32.695360"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt voluptas quis non?"], ["description", "Vel ut saepe ducimus."], ["date", "2020-05-06 18:26:32.696560"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.697326"], ["updated_at", "2020-05-05 18:26:32.697326"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut aperiam itaque veniam?"], ["description", "Magni in porro ducimus."], ["date", "2020-05-06 18:26:32.698505"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.699216"], ["updated_at", "2020-05-05 18:26:32.699216"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam maiores cum sed?"], ["description", "Vero cumque est odio."], ["date", "2020-05-06 18:26:32.700313"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.701047"], ["updated_at", "2020-05-05 18:26:32.701047"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis et est aspernatur?"], ["description", "Consequatur explicabo illo tenetur."], ["date", "2020-05-06 18:26:32.702150"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.702831"], ["updated_at", "2020-05-05 18:26:32.702831"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium nesciunt molestiae rem?"], ["description", "Aut doloribus soluta consectetur."], ["date", "2020-05-06 18:26:32.703964"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.704641"], ["updated_at", "2020-05-05 18:26:32.704641"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id repellat sunt et?"], ["description", "Et culpa quisquam est."], ["date", "2020-05-06 18:26:32.705769"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.706443"], ["updated_at", "2020-05-05 18:26:32.706443"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem placeat debitis sequi?"], ["description", "Qui et culpa et."], ["date", "2020-05-06 18:26:32.707709"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.708728"], ["updated_at", "2020-05-05 18:26:32.708728"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:26:32 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.74ms) +Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.3ms | Allocations: 1085) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.9ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lilli Koss"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$o4q/7Y2opFGaTAsUsQgE9ewT4h27H3mUXyaV9sq20UujDNa8NOup2"], ["created_at", "2020-05-05 18:26:32.728078"], ["updated_at", "2020-05-05 18:26:32.728078"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "possimus"], ["description", "Doloremque dolorem dolorum sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:32.732367"], ["updated_at", "2020-05-05 18:26:32.732367"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore occaecati labore qui?"], ["description", "A sed debitis occaecati."], ["date", "2020-05-06 18:26:32.734818"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.735864"], ["updated_at", "2020-05-05 18:26:32.735864"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum sint facere molestiae?"], ["description", "Consequuntur voluptas repudiandae tempora."], ["date", "2020-05-06 18:26:32.737239"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.737960"], ["updated_at", "2020-05-05 18:26:32.737960"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi voluptatem id ratione?"], ["description", "Hic debitis sunt qui."], ["date", "2020-05-06 18:26:32.739120"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.739797"], ["updated_at", "2020-05-05 18:26:32.739797"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptate porro placeat rem?"], ["description", "Dicta in voluptatem vel."], ["date", "2020-05-06 18:26:32.740969"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.741687"], ["updated_at", "2020-05-05 18:26:32.741687"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum ullam odit dolore?"], ["description", "Nulla recusandae repellat asperiores."], ["date", "2020-05-06 18:26:32.743405"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.744736"], ["updated_at", "2020-05-05 18:26:32.744736"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos eveniet quis quis?"], ["description", "Hic facilis blanditiis amet."], ["date", "2020-05-06 18:26:32.746313"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.747385"], ["updated_at", "2020-05-05 18:26:32.747385"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque aut vel voluptatem?"], ["description", "Nesciunt quas molestiae recusandae."], ["date", "2020-05-06 18:26:32.748804"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.750496"], ["updated_at", "2020-05-05 18:26:32.750496"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex repellendus sint enim?"], ["description", "Et ab incidunt dolor."], ["date", "2020-05-06 18:26:32.752353"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.753656"], ["updated_at", "2020-05-05 18:26:32.753656"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum sint ullam perferendis?"], ["description", "Exercitationem ut est beatae."], ["date", "2020-05-06 18:26:32.755346"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.756204"], ["updated_at", "2020-05-05 18:26:32.756204"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero mollitia amet unde?"], ["description", "Qui quae possimus necessitatibus."], ["date", "2020-05-06 18:26:32.758079"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.758934"], ["updated_at", "2020-05-05 18:26:32.758934"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum sunt sint molestiae?"], ["description", "Blanditiis quis unde vel."], ["date", "2020-05-06 18:26:32.760374"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.761198"], ["updated_at", "2020-05-05 18:26:32.761198"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus officiis est aperiam?"], ["description", "Nihil esse qui ut."], ["date", "2020-05-06 18:26:32.762580"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.763292"], ["updated_at", "2020-05-05 18:26:32.763292"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut modi corporis aperiam?"], ["description", "At debitis et aut."], ["date", "2020-05-06 18:26:32.764536"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.765270"], ["updated_at", "2020-05-05 18:26:32.765270"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda sunt non vel?"], ["description", "Cum soluta cupiditate et."], ["date", "2020-05-06 18:26:32.766520"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.767230"], ["updated_at", "2020-05-05 18:26:32.767230"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae omnis voluptatum et?"], ["description", "Ut ipsum enim totam."], ["date", "2020-05-06 18:26:32.768410"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.769300"], ["updated_at", "2020-05-05 18:26:32.769300"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit recusandae officia rerum?"], ["description", "Ipsum rerum non soluta."], ["date", "2020-05-06 18:26:32.771871"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.773056"], ["updated_at", "2020-05-05 18:26:32.773056"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem reiciendis natus laborum?"], ["description", "Laboriosam aliquid vitae qui."], ["date", "2020-05-06 18:26:32.774716"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.776052"], ["updated_at", "2020-05-05 18:26:32.776052"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro est explicabo deleniti?"], ["description", "Error perspiciatis quia exercitationem."], ["date", "2020-05-06 18:26:32.778435"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.779905"], ["updated_at", "2020-05-05 18:26:32.779905"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quibusdam mollitia ratione cupiditate?"], ["description", "Aspernatur voluptatum et minus."], ["date", "2020-05-06 18:26:32.781720"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.782775"], ["updated_at", "2020-05-05 18:26:32.782775"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Culpa officia alias ut?"], ["description", "Voluptate porro consequatur aspernatur."], ["date", "2020-05-06 18:26:32.784435"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.785397"], ["updated_at", "2020-05-05 18:26:32.785397"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:26:32 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.73ms) +Completed 200 OK in 5ms (Views: 1.4ms | ActiveRecord: 0.3ms | Allocations: 1058) +  (0.6ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marylee Parisian"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$zYV7g7BIM/A/eXiAdXLOA.yoZDsF66ZjR/ZVXHwhj9V5MywvoUK36"], ["created_at", "2020-05-05 18:26:32.837972"], ["updated_at", "2020-05-05 18:26:32.837972"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vero"], ["description", "Autem dicta quibusdam nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:32.841758"], ["updated_at", "2020-05-05 18:26:32.841758"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae repudiandae dolorum aliquid?"], ["description", "Quia quos et enim."], ["date", "2020-05-06 18:26:32.844760"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.845790"], ["updated_at", "2020-05-05 18:26:32.845790"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non sed suscipit sunt?"], ["description", "Ipsam earum velit ut."], ["date", "2020-05-06 18:26:32.847168"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.847884"], ["updated_at", "2020-05-05 18:26:32.847884"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum consequatur animi quo?"], ["description", "Magni officia nam facilis."], ["date", "2020-05-06 18:26:32.849110"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.850438"], ["updated_at", "2020-05-05 18:26:32.850438"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint nihil laudantium atque?"], ["description", "Eius quaerat facilis sunt."], ["date", "2020-05-06 18:26:32.852328"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.853301"], ["updated_at", "2020-05-05 18:26:32.853301"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita laudantium cupiditate fuga?"], ["description", "Soluta rerum et accusamus."], ["date", "2020-05-06 18:26:32.855102"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.856533"], ["updated_at", "2020-05-05 18:26:32.856533"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et officiis quia porro?"], ["description", "Aut sint sapiente voluptatem."], ["date", "2020-05-06 18:26:32.858738"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.861924"], ["updated_at", "2020-05-05 18:26:32.861924"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla delectus molestias temporibus?"], ["description", "Laudantium natus nihil et."], ["date", "2020-05-06 18:26:32.863581"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.864432"], ["updated_at", "2020-05-05 18:26:32.864432"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim non explicabo ad?"], ["description", "Animi quibusdam eos iusto."], ["date", "2020-05-06 18:26:32.865583"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.866258"], ["updated_at", "2020-05-05 18:26:32.866258"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quibusdam libero ut quo?"], ["description", "Autem nulla repellendus quis."], ["date", "2020-05-06 18:26:32.867448"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.868156"], ["updated_at", "2020-05-05 18:26:32.868156"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas nulla ducimus incidunt?"], ["description", "Quo veniam laudantium magnam."], ["date", "2020-05-06 18:26:32.870439"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.872229"], ["updated_at", "2020-05-05 18:26:32.872229"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor nam impedit qui?"], ["description", "Rerum et excepturi aut."], ["date", "2020-05-06 18:26:32.874728"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.876935"], ["updated_at", "2020-05-05 18:26:32.876935"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe voluptas dolores voluptas?"], ["description", "Architecto reiciendis ipsa ut."], ["date", "2020-05-06 18:26:32.879324"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.880968"], ["updated_at", "2020-05-05 18:26:32.880968"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Hic quam qui eius?"], ["description", "Placeat enim quae et."], ["date", "2020-05-06 18:26:32.882630"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.883492"], ["updated_at", "2020-05-05 18:26:32.883492"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum et nisi dolor?"], ["description", "Distinctio nobis consequatur error."], ["date", "2020-05-06 18:26:32.884722"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.885406"], ["updated_at", "2020-05-05 18:26:32.885406"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est sunt cumque aut?"], ["description", "Accusamus error adipisci voluptatibus."], ["date", "2020-05-06 18:26:32.886622"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.887425"], ["updated_at", "2020-05-05 18:26:32.887425"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laudantium quo dolorem aut?"], ["description", "Iure nihil fugit commodi."], ["date", "2020-05-06 18:26:32.888660"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.889458"], ["updated_at", "2020-05-05 18:26:32.889458"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto deserunt rerum temporibus?"], ["description", "Dicta et ea eaque."], ["date", "2020-05-06 18:26:32.891694"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.894534"], ["updated_at", "2020-05-05 18:26:32.894534"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure ut rerum qui?"], ["description", "Unde impedit culpa qui."], ["date", "2020-05-06 18:26:32.897053"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.898416"], ["updated_at", "2020-05-05 18:26:32.898416"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque perspiciatis cum sapiente?"], ["description", "Et explicabo commodi doloribus."], ["date", "2020-05-06 18:26:32.900162"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.901072"], ["updated_at", "2020-05-05 18:26:32.901072"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum dicta aperiam nostrum?"], ["description", "Ut et laborum ipsa."], ["date", "2020-05-06 18:26:32.902237"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.903063"], ["updated_at", "2020-05-05 18:26:32.903063"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:26:32 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["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: 884) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Collin McLaughlin IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0OEQJY6UFCysl2MWChArL.xD4mHHFEGT80a6ilFd1dtBzwDK5QQJe"], ["created_at", "2020-05-05 18:26:32.923083"], ["updated_at", "2020-05-05 18:26:32.923083"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quas"], ["description", "Mollitia qui nihil et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:32.926471"], ["updated_at", "2020-05-05 18:26:32.926471"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat velit ut ab?"], ["description", "Ut deleniti quibusdam enim."], ["date", "2020-05-06 18:26:32.928221"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.929176"], ["updated_at", "2020-05-05 18:26:32.929176"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita quibusdam debitis hic?"], ["description", "Aut culpa sit consequatur."], ["date", "2020-05-06 18:26:32.931964"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.933575"], ["updated_at", "2020-05-05 18:26:32.933575"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non perspiciatis quo in?"], ["description", "Eaque facilis amet aliquid."], ["date", "2020-05-06 18:26:32.935121"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.936001"], ["updated_at", "2020-05-05 18:26:32.936001"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe necessitatibus quibusdam officiis?"], ["description", "Et ut ut quia."], ["date", "2020-05-06 18:26:32.937428"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.938451"], ["updated_at", "2020-05-05 18:26:32.938451"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto omnis iste dicta?"], ["description", "Ad dolor eveniet vel."], ["date", "2020-05-06 18:26:32.940339"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.942493"], ["updated_at", "2020-05-05 18:26:32.942493"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo quia esse harum?"], ["description", "Doloribus necessitatibus voluptates saepe."], ["date", "2020-05-06 18:26:32.947370"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.948787"], ["updated_at", "2020-05-05 18:26:32.948787"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit officiis facilis facere?"], ["description", "Rerum eaque ea quo."], ["date", "2020-05-06 18:26:32.950250"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.952258"], ["updated_at", "2020-05-05 18:26:32.952258"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui consequuntur quasi corporis?"], ["description", "Laborum aliquid consequatur nemo."], ["date", "2020-05-06 18:26:32.954384"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.955587"], ["updated_at", "2020-05-05 18:26:32.955587"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos molestias nesciunt magnam?"], ["description", "Fuga illum dolorum fugiat."], ["date", "2020-05-06 18:26:32.956986"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.957945"], ["updated_at", "2020-05-05 18:26:32.957945"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Culpa at ipsam excepturi?"], ["description", "Necessitatibus eos nobis eius."], ["date", "2020-05-06 18:26:32.960355"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.961478"], ["updated_at", "2020-05-05 18:26:32.961478"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet consequatur fuga possimus?"], ["description", "Sapiente harum doloribus veniam."], ["date", "2020-05-06 18:26:32.962883"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.963607"], ["updated_at", "2020-05-05 18:26:32.963607"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam qui et deserunt?"], ["description", "In nihil voluptatem soluta."], ["date", "2020-05-06 18:26:32.964711"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.965374"], ["updated_at", "2020-05-05 18:26:32.965374"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni voluptatem facilis est?"], ["description", "Quo quam non molestiae."], ["date", "2020-05-06 18:26:32.966443"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.967114"], ["updated_at", "2020-05-05 18:26:32.967114"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis eius molestiae illo?"], ["description", "Reiciendis totam voluptas quis."], ["date", "2020-05-06 18:26:32.968285"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.969007"], ["updated_at", "2020-05-05 18:26:32.969007"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore ratione ut atque?"], ["description", "Vitae totam reprehenderit eum."], ["date", "2020-05-06 18:26:32.970312"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.972650"], ["updated_at", "2020-05-05 18:26:32.972650"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quibusdam temporibus aspernatur nulla?"], ["description", "Praesentium eum rerum explicabo."], ["date", "2020-05-06 18:26:32.974347"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.975243"], ["updated_at", "2020-05-05 18:26:32.975243"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit dignissimos in est?"], ["description", "Quas voluptas qui vel."], ["date", "2020-05-06 18:26:32.976730"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.977965"], ["updated_at", "2020-05-05 18:26:32.977965"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea aut assumenda provident?"], ["description", "Quasi molestias vel dolor."], ["date", "2020-05-06 18:26:32.979449"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.980235"], ["updated_at", "2020-05-05 18:26:32.980235"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor quod quasi rem?"], ["description", "Beatae reiciendis asperiores rerum."], ["date", "2020-05-06 18:26:32.981472"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.982238"], ["updated_at", "2020-05-05 18:26:32.982238"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error consequatur esse dolorem?"], ["description", "Maxime iure provident ea."], ["date", "2020-05-06 18:26:32.983376"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:32.984047"], ["updated_at", "2020-05-05 18:26:32.984047"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:26:32 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["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: 867) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lera Hettinger"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LB8SUEGH1oqbOz6a4A8XreDW.Sm2mW82cqx/nKw.A/HFIkFQspAHq"], ["created_at", "2020-05-05 18:26:33.000542"], ["updated_at", "2020-05-05 18:26:33.000542"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "recusandae"], ["description", "Nostrum ipsam dicta facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.004602"], ["updated_at", "2020-05-05 18:26:33.004602"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut quasi officia possimus?"], ["description", "Aut nemo ratione voluptatem."], ["date", "2020-05-06 18:26:33.006468"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.007402"], ["updated_at", "2020-05-05 18:26:33.007402"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque mollitia eaque et?"], ["description", "Occaecati esse dolores aut."], ["date", "2020-05-06 18:26:33.008677"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.009373"], ["updated_at", "2020-05-05 18:26:33.009373"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis consequuntur laborum fuga?"], ["description", "Quos et consequatur laboriosam."], ["date", "2020-05-06 18:26:33.012143"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.013972"], ["updated_at", "2020-05-05 18:26:33.013972"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione qui quo accusamus?"], ["description", "Autem perferendis sit facere."], ["date", "2020-05-06 18:26:33.015868"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.017162"], ["updated_at", "2020-05-05 18:26:33.017162"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et modi quia nam?"], ["description", "Dolorem veniam eum voluptas."], ["date", "2020-05-06 18:26:33.018521"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.019229"], ["updated_at", "2020-05-05 18:26:33.019229"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed voluptas qui accusamus?"], ["description", "Est vel numquam et."], ["date", "2020-05-06 18:26:33.020403"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.021121"], ["updated_at", "2020-05-05 18:26:33.021121"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim deleniti dolorem id?"], ["description", "Ex temporibus recusandae soluta."], ["date", "2020-05-06 18:26:33.022324"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.023010"], ["updated_at", "2020-05-05 18:26:33.023010"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere quo aliquam necessitatibus?"], ["description", "Ab ullam error rerum."], ["date", "2020-05-06 18:26:33.024101"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.024773"], ["updated_at", "2020-05-05 18:26:33.024773"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minus autem fugit sunt?"], ["description", "Et voluptas vel iure."], ["date", "2020-05-06 18:26:33.026365"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.027350"], ["updated_at", "2020-05-05 18:26:33.027350"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est ut et enim?"], ["description", "Velit laborum quis possimus."], ["date", "2020-05-06 18:26:33.029493"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.030495"], ["updated_at", "2020-05-05 18:26:33.030495"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero voluptatem illo delectus?"], ["description", "Nihil et dolorem possimus."], ["date", "2020-05-06 18:26:33.032442"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.033389"], ["updated_at", "2020-05-05 18:26:33.033389"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste totam reiciendis non?"], ["description", "Enim est corporis fugiat."], ["date", "2020-05-06 18:26:33.034655"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.035341"], ["updated_at", "2020-05-05 18:26:33.035341"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi quidem animi iste?"], ["description", "Ea minima voluptas tenetur."], ["date", "2020-05-06 18:26:33.036570"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.037301"], ["updated_at", "2020-05-05 18:26:33.037301"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum sed nam nihil?"], ["description", "Molestiae iusto officiis unde."], ["date", "2020-05-06 18:26:33.038521"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.039189"], ["updated_at", "2020-05-05 18:26:33.039189"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta quis eos consequatur?"], ["description", "Ex suscipit non aspernatur."], ["date", "2020-05-06 18:26:33.040312"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.041052"], ["updated_at", "2020-05-05 18:26:33.041052"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam quod suscipit dignissimos?"], ["description", "Et commodi in quo."], ["date", "2020-05-06 18:26:33.042295"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.043045"], ["updated_at", "2020-05-05 18:26:33.043045"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus repudiandae molestiae tempore?"], ["description", "Fugiat architecto non ut."], ["date", "2020-05-06 18:26:33.044762"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.045661"], ["updated_at", "2020-05-05 18:26:33.045661"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid et delectus id?"], ["description", "Suscipit et consequatur omnis."], ["date", "2020-05-06 18:26:33.046936"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.047627"], ["updated_at", "2020-05-05 18:26:33.047627"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem quas est sit?"], ["description", "Aperiam aliquid aut omnis."], ["date", "2020-05-06 18:26:33.048837"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.049511"], ["updated_at", "2020-05-05 18:26:33.049511"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime repellat consequatur illum?"], ["description", "Quaerat id ullam voluptatem."], ["date", "2020-05-06 18:26:33.050946"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.052555"], ["updated_at", "2020-05-05 18:26:33.052555"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:26:33 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"title"=>"Visit Narnia", "description"=>"false", "date"=>"2020-05-06 15:26:33 -0300", "link"=>"https://zoom.com/fakelink", "meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Visit Narnia"], ["description", "false"], ["date", "2020-05-06 18:26:33"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.072860"], ["updated_at", "2020-05-05 18:26:33.072860"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.54ms) +Completed 201 Created in 6ms (Views: 1.1ms | ActiveRecord: 0.5ms | Allocations: 1699) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Wm Rath"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tck4ldHa6YlHePUrqocHfu/FiiUhg9INGEaUYrIR1rO9VVNXb5UCm"], ["created_at", "2020-05-05 18:26:33.086098"], ["updated_at", "2020-05-05 18:26:33.086098"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vitae"], ["description", "Amet natus maxime ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.089613"], ["updated_at", "2020-05-05 18:26:33.089613"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro sint nam consequuntur?"], ["description", "Aut ut placeat earum."], ["date", "2020-05-06 18:26:33.091441"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.094154"], ["updated_at", "2020-05-05 18:26:33.094154"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam illum tenetur alias?"], ["description", "Ut quas voluptatem accusamus."], ["date", "2020-05-06 18:26:33.096008"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.097409"], ["updated_at", "2020-05-05 18:26:33.097409"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere id voluptatum odit?"], ["description", "Aspernatur quia ad ea."], ["date", "2020-05-06 18:26:33.098941"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.099765"], ["updated_at", "2020-05-05 18:26:33.099765"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident voluptatum exercitationem eos?"], ["description", "Velit quaerat quia deleniti."], ["date", "2020-05-06 18:26:33.100945"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.101656"], ["updated_at", "2020-05-05 18:26:33.101656"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores sunt aut vel?"], ["description", "A totam rerum et."], ["date", "2020-05-06 18:26:33.102834"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.103522"], ["updated_at", "2020-05-05 18:26:33.103522"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis eum nobis ut?"], ["description", "Vel dolore sit quis."], ["date", "2020-05-06 18:26:33.104707"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.105396"], ["updated_at", "2020-05-05 18:26:33.105396"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laudantium eaque labore rerum?"], ["description", "Numquam minima nemo reprehenderit."], ["date", "2020-05-06 18:26:33.106527"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.107191"], ["updated_at", "2020-05-05 18:26:33.107191"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam at praesentium quia?"], ["description", "At quod rerum consequuntur."], ["date", "2020-05-06 18:26:33.108316"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.108978"], ["updated_at", "2020-05-05 18:26:33.108978"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae modi quidem et?"], ["description", "Sit quia quo quidem."], ["date", "2020-05-06 18:26:33.110274"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.112069"], ["updated_at", "2020-05-05 18:26:33.112069"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam sit ut soluta?"], ["description", "Voluptas fugiat aliquid odit."], ["date", "2020-05-06 18:26:33.114578"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.115518"], ["updated_at", "2020-05-05 18:26:33.115518"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut facere harum numquam?"], ["description", "Quis eos delectus laboriosam."], ["date", "2020-05-06 18:26:33.116829"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.117501"], ["updated_at", "2020-05-05 18:26:33.117501"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium velit doloremque eos?"], ["description", "Unde qui officiis vero."], ["date", "2020-05-06 18:26:33.118740"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.119484"], ["updated_at", "2020-05-05 18:26:33.119484"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero laborum architecto enim?"], ["description", "Iusto et asperiores possimus."], ["date", "2020-05-06 18:26:33.120677"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.121385"], ["updated_at", "2020-05-05 18:26:33.121385"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet est provident facilis?"], ["description", "Sit quidem dolore laborum."], ["date", "2020-05-06 18:26:33.122663"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.123434"], ["updated_at", "2020-05-05 18:26:33.123434"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur neque labore aspernatur?"], ["description", "Voluptas aspernatur debitis in."], ["date", "2020-05-06 18:26:33.124610"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.125549"], ["updated_at", "2020-05-05 18:26:33.125549"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptate atque voluptatem repellat?"], ["description", "Rerum quam quis aspernatur."], ["date", "2020-05-06 18:26:33.127276"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.128199"], ["updated_at", "2020-05-05 18:26:33.128199"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo eius voluptatem omnis?"], ["description", "Velit sit perspiciatis optio."], ["date", "2020-05-06 18:26:33.129338"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.130025"], ["updated_at", "2020-05-05 18:26:33.130025"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex quia ducimus ipsum?"], ["description", "Aperiam rerum saepe est."], ["date", "2020-05-06 18:26:33.131795"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.133102"], ["updated_at", "2020-05-05 18:26:33.133102"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum itaque autem sunt?"], ["description", "Rerum harum iste expedita."], ["date", "2020-05-06 18:26:33.134665"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.135402"], ["updated_at", "2020-05-05 18:26:33.135402"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis praesentium et nihil?"], ["description", "Non aut ratione reprehenderit."], ["date", "2020-05-06 18:26:33.136600"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.137296"], ["updated_at", "2020-05-05 18:26:33.137296"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:26:33 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms) +Completed 422 Unprocessable Entity in 5ms (Views: 1.0ms | ActiveRecord: 0.1ms | Allocations: 3010) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Meta Glover"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$sWy4UtjY2kt2HG4pGN6nX.ZiChgQajqRgpTjxgxD1ew2p9dYh2HxK"], ["created_at", "2020-05-05 18:26:33.155544"], ["updated_at", "2020-05-05 18:26:33.155544"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minima"], ["description", "Possimus quas natus omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.159320"], ["updated_at", "2020-05-05 18:26:33.159320"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi dolor ut maiores?"], ["description", "Non cum at voluptate."], ["date", "2020-05-06 18:26:33.161142"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.162180"], ["updated_at", "2020-05-05 18:26:33.162180"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas rem ut quis?"], ["description", "Distinctio et inventore velit."], ["date", "2020-05-06 18:26:33.163701"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.164624"], ["updated_at", "2020-05-05 18:26:33.164624"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt sed fugiat voluptates?"], ["description", "Doloribus sapiente dolores recusandae."], ["date", "2020-05-06 18:26:33.165966"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.166735"], ["updated_at", "2020-05-05 18:26:33.166735"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem nemo vitae quisquam?"], ["description", "Fugit minus occaecati libero."], ["date", "2020-05-06 18:26:33.167919"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.168595"], ["updated_at", "2020-05-05 18:26:33.168595"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim reprehenderit itaque repellendus?"], ["description", "Ad earum mollitia provident."], ["date", "2020-05-06 18:26:33.169705"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.170358"], ["updated_at", "2020-05-05 18:26:33.170358"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio harum nemo autem?"], ["description", "Est repellat quia sunt."], ["date", "2020-05-06 18:26:33.171923"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.173664"], ["updated_at", "2020-05-05 18:26:33.173664"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit aliquam voluptas quae?"], ["description", "Odit dignissimos aut rerum."], ["date", "2020-05-06 18:26:33.175400"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.177171"], ["updated_at", "2020-05-05 18:26:33.177171"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione illum dignissimos et?"], ["description", "Delectus eum rerum itaque."], ["date", "2020-05-06 18:26:33.178766"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.179611"], ["updated_at", "2020-05-05 18:26:33.179611"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error optio aut est?"], ["description", "Tenetur mollitia quas non."], ["date", "2020-05-06 18:26:33.180756"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.181488"], ["updated_at", "2020-05-05 18:26:33.181488"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga optio suscipit aut?"], ["description", "Nihil adipisci ex omnis."], ["date", "2020-05-06 18:26:33.183355"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.184124"], ["updated_at", "2020-05-05 18:26:33.184124"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores eos fuga nulla?"], ["description", "Cupiditate eos ut quo."], ["date", "2020-05-06 18:26:33.185342"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.186016"], ["updated_at", "2020-05-05 18:26:33.186016"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod est molestiae maiores?"], ["description", "Et voluptatem quidem alias."], ["date", "2020-05-06 18:26:33.187172"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.187831"], ["updated_at", "2020-05-05 18:26:33.187831"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis esse adipisci aut?"], ["description", "Dolorem ut sapiente molestiae."], ["date", "2020-05-06 18:26:33.188956"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.189640"], ["updated_at", "2020-05-05 18:26:33.189640"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et autem voluptatem nostrum?"], ["description", "Tenetur alias enim quia."], ["date", "2020-05-06 18:26:33.190922"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.191945"], ["updated_at", "2020-05-05 18:26:33.191945"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores numquam ab odio?"], ["description", "Vel aut et labore."], ["date", "2020-05-06 18:26:33.195135"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.196196"], ["updated_at", "2020-05-05 18:26:33.196196"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque est tempore eveniet?"], ["description", "Nihil nesciunt enim exercitationem."], ["date", "2020-05-06 18:26:33.197563"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.198255"], ["updated_at", "2020-05-05 18:26:33.198255"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur amet natus numquam?"], ["description", "Similique illum veniam dignissimos."], ["date", "2020-05-06 18:26:33.199406"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.200088"], ["updated_at", "2020-05-05 18:26:33.200088"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos officia est qui?"], ["description", "Similique velit maiores eos."], ["date", "2020-05-06 18:26:33.201277"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.202055"], ["updated_at", "2020-05-05 18:26:33.202055"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero sed dolore sed?"], ["description", "Quia id sint voluptatibus."], ["date", "2020-05-06 18:26:33.203237"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.203957"], ["updated_at", "2020-05-05 18:26:33.203957"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi illum sit in?"], ["description", "Ipsa voluptatem tenetur reprehenderit."], ["date", "2020-05-06 18:26:33.205209"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.206085"], ["updated_at", "2020-05-05 18:26:33.206085"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:26:33 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 2705) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.0ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sammy Kautzer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$t750zZJNLpUk6LIdNgGN9.uAac4lPyEzZJ01fEtQeIByqU9TeWZ1C"], ["created_at", "2020-05-05 18:26:33.225389"], ["updated_at", "2020-05-05 18:26:33.225389"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugit"], ["description", "Minus modi ea qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.229857"], ["updated_at", "2020-05-05 18:26:33.229857"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut facere et exercitationem?"], ["description", "Occaecati dolor explicabo deleniti."], ["date", "2020-05-06 18:26:33.231966"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.233723"], ["updated_at", "2020-05-05 18:26:33.233723"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos inventore dicta iste?"], ["description", "Quo totam perspiciatis minima."], ["date", "2020-05-06 18:26:33.235544"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.237037"], ["updated_at", "2020-05-05 18:26:33.237037"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis consequatur consequatur quo?"], ["description", "Atque velit fuga vitae."], ["date", "2020-05-06 18:26:33.238578"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.254085"], ["updated_at", "2020-05-05 18:26:33.254085"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste aut neque aliquid?"], ["description", "Hic aut magni rem."], ["date", "2020-05-06 18:26:33.255595"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.256389"], ["updated_at", "2020-05-05 18:26:33.256389"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores eum repudiandae ut?"], ["description", "Amet praesentium ut quaerat."], ["date", "2020-05-06 18:26:33.257609"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.258285"], ["updated_at", "2020-05-05 18:26:33.258285"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis quod similique ipsum?"], ["description", "Corporis in asperiores earum."], ["date", "2020-05-06 18:26:33.259968"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.261116"], ["updated_at", "2020-05-05 18:26:33.261116"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore culpa autem omnis?"], ["description", "Sint accusantium dolorem veniam."], ["date", "2020-05-06 18:26:33.262673"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.263477"], ["updated_at", "2020-05-05 18:26:33.263477"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus omnis molestias facere?"], ["description", "Id consectetur rerum provident."], ["date", "2020-05-06 18:26:33.264683"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.265368"], ["updated_at", "2020-05-05 18:26:33.265368"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto et quaerat quo?"], ["description", "Et omnis qui nihil."], ["date", "2020-05-06 18:26:33.266560"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.267240"], ["updated_at", "2020-05-05 18:26:33.267240"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia facere est ut?"], ["description", "Voluptatem rerum autem consequatur."], ["date", "2020-05-06 18:26:33.269036"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.269832"], ["updated_at", "2020-05-05 18:26:33.269832"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas quia vel non?"], ["description", "Reprehenderit cupiditate sunt ut."], ["date", "2020-05-06 18:26:33.271101"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.272234"], ["updated_at", "2020-05-05 18:26:33.272234"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium non nam facilis?"], ["description", "Impedit possimus omnis autem."], ["date", "2020-05-06 18:26:33.274203"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.275199"], ["updated_at", "2020-05-05 18:26:33.275199"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio quidem eaque ratione?"], ["description", "Ducimus nostrum amet sed."], ["date", "2020-05-06 18:26:33.276989"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.278044"], ["updated_at", "2020-05-05 18:26:33.278044"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias cumque sapiente autem?"], ["description", "Soluta vitae mollitia laboriosam."], ["date", "2020-05-06 18:26:33.279411"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.280104"], ["updated_at", "2020-05-05 18:26:33.280104"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse nam id numquam?"], ["description", "Porro blanditiis earum a."], ["date", "2020-05-06 18:26:33.281383"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.282150"], ["updated_at", "2020-05-05 18:26:33.282150"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id soluta qui quaerat?"], ["description", "Expedita consectetur ut molestias."], ["date", "2020-05-06 18:26:33.283340"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.284037"], ["updated_at", "2020-05-05 18:26:33.284037"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias voluptatum cumque ab?"], ["description", "Sed eveniet ut velit."], ["date", "2020-05-06 18:26:33.285249"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.285943"], ["updated_at", "2020-05-05 18:26:33.285943"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt cumque ut ad?"], ["description", "Officiis omnis impedit ullam."], ["date", "2020-05-06 18:26:33.287176"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.287885"], ["updated_at", "2020-05-05 18:26:33.287885"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos est sit maxime?"], ["description", "Molestias perferendis natus doloremque."], ["date", "2020-05-06 18:26:33.289092"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.289775"], ["updated_at", "2020-05-05 18:26:33.289775"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem labore similique minus?"], ["description", "Eius dolores repudiandae facilis."], ["date", "2020-05-06 18:26:33.290964"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.291949"], ["updated_at", "2020-05-05 18:26:33.291949"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:26:33 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.0ms) SAVEPOINT active_record_2 + Meeting Update (0.2ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:26:33.297721"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1397) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jalisa Murray"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QWqMC/o/V6tMcVSmt89LOeLyb3u2HO8qtZnNp4S3NGt5t7zcLNV22"], ["created_at", "2020-05-05 18:26:33.310333"], ["updated_at", "2020-05-05 18:26:33.310333"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Iste nisi corrupti quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.315175"], ["updated_at", "2020-05-05 18:26:33.315175"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus esse velit alias?"], ["description", "Distinctio laboriosam laudantium ea."], ["date", "2020-05-06 18:26:33.316996"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.317960"], ["updated_at", "2020-05-05 18:26:33.317960"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur velit rerum commodi?"], ["description", "Dolores quo ea veniam."], ["date", "2020-05-06 18:26:33.319199"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.319931"], ["updated_at", "2020-05-05 18:26:33.319931"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quia impedit et?"], ["description", "Explicabo est dolor voluptates."], ["date", "2020-05-06 18:26:33.321168"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.321913"], ["updated_at", "2020-05-05 18:26:33.321913"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et minus ducimus libero?"], ["description", "Dolor fuga reiciendis veritatis."], ["date", "2020-05-06 18:26:33.323098"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.323819"], ["updated_at", "2020-05-05 18:26:33.323819"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum sint hic iure?"], ["description", "Dignissimos deleniti natus modi."], ["date", "2020-05-06 18:26:33.325078"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.326556"], ["updated_at", "2020-05-05 18:26:33.326556"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque nihil laboriosam provident?"], ["description", "Cupiditate doloribus qui sit."], ["date", "2020-05-06 18:26:33.327981"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.328740"], ["updated_at", "2020-05-05 18:26:33.328740"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut qui quia nam?"], ["description", "Laudantium ullam iusto non."], ["date", "2020-05-06 18:26:33.329805"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.330487"], ["updated_at", "2020-05-05 18:26:33.330487"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit dolorem earum rerum?"], ["description", "Ex ad vitae impedit."], ["date", "2020-05-06 18:26:33.331691"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.332634"], ["updated_at", "2020-05-05 18:26:33.332634"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque nostrum nesciunt porro?"], ["description", "Modi autem magni dicta."], ["date", "2020-05-06 18:26:33.334623"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.335608"], ["updated_at", "2020-05-05 18:26:33.335608"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui harum quam vel?"], ["description", "Voluptas et vero alias."], ["date", "2020-05-06 18:26:33.337695"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.338727"], ["updated_at", "2020-05-05 18:26:33.338727"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum est ut et?"], ["description", "Placeat nemo provident quas."], ["date", "2020-05-06 18:26:33.340423"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.341978"], ["updated_at", "2020-05-05 18:26:33.341978"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.4ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae et ut quia?"], ["description", "Molestiae odit autem voluptatem."], ["date", "2020-05-06 18:26:33.346616"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.349555"], ["updated_at", "2020-05-05 18:26:33.349555"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia omnis rerum accusantium?"], ["description", "Nostrum quos soluta enim."], ["date", "2020-05-06 18:26:33.351068"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.351956"], ["updated_at", "2020-05-05 18:26:33.351956"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel sint architecto ipsa?"], ["description", "Aut minus non minima."], ["date", "2020-05-06 18:26:33.354318"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.355728"], ["updated_at", "2020-05-05 18:26:33.355728"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis voluptatibus iusto doloribus?"], ["description", "Totam consequuntur sequi quos."], ["date", "2020-05-06 18:26:33.357400"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.358204"], ["updated_at", "2020-05-05 18:26:33.358204"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad natus quasi sunt?"], ["description", "Dolorum veniam repellat facilis."], ["date", "2020-05-06 18:26:33.359517"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.360204"], ["updated_at", "2020-05-05 18:26:33.360204"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod nemo maxime in?"], ["description", "Est aut dicta et."], ["date", "2020-05-06 18:26:33.361513"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.362328"], ["updated_at", "2020-05-05 18:26:33.362328"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est nisi maiores et?"], ["description", "Vero et natus ut."], ["date", "2020-05-06 18:26:33.363537"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.364221"], ["updated_at", "2020-05-05 18:26:33.364221"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum dolorem occaecati voluptatibus?"], ["description", "Omnis doloremque quia ut."], ["date", "2020-05-06 18:26:33.365470"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.366144"], ["updated_at", "2020-05-05 18:26:33.366144"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam omnis qui praesentium?"], ["description", "Qui sit vel labore."], ["date", "2020-05-06 18:26:33.367376"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.368121"], ["updated_at", "2020-05-05 18:26:33.368121"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:26:33 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.2ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:26:33.372455"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 4ms (ActiveRecord: 0.6ms | Allocations: 1321) + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dillon Littel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.Qndnld6Njzfm3xHsk3gXuQZI/2UM7JKSx1HIi.KBxK4lYaraL5fi"], ["created_at", "2020-05-05 18:26:33.387468"], ["updated_at", "2020-05-05 18:26:33.387468"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sapiente"], ["description", "Corporis esse numquam facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.390348"], ["updated_at", "2020-05-05 18:26:33.390348"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel nulla hic qui?"], ["description", "Similique quo minima minus."], ["date", "2020-05-06 18:26:33.391965"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.394595"], ["updated_at", "2020-05-05 18:26:33.394595"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex voluptate autem id?"], ["description", "Ea et expedita dolorem."], ["date", "2020-05-06 18:26:33.398144"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.399761"], ["updated_at", "2020-05-05 18:26:33.399761"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit explicabo quaerat quod?"], ["description", "Voluptatum non dolor enim."], ["date", "2020-05-06 18:26:33.401592"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.402563"], ["updated_at", "2020-05-05 18:26:33.402563"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus aut quidem odit?"], ["description", "Animi veritatis iste similique."], ["date", "2020-05-06 18:26:33.403851"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.404556"], ["updated_at", "2020-05-05 18:26:33.404556"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos deleniti voluptas unde?"], ["description", "Minima nemo et ut."], ["date", "2020-05-06 18:26:33.405673"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.406337"], ["updated_at", "2020-05-05 18:26:33.406337"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad aliquid accusantium rerum?"], ["description", "Porro aut enim impedit."], ["date", "2020-05-06 18:26:33.407439"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.408113"], ["updated_at", "2020-05-05 18:26:33.408113"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium iure doloribus ut?"], ["description", "Id perferendis molestiae omnis."], ["date", "2020-05-06 18:26:33.409646"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.410926"], ["updated_at", "2020-05-05 18:26:33.410926"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas aut velit consequatur?"], ["description", "Cupiditate inventore alias in."], ["date", "2020-05-06 18:26:33.412457"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.413812"], ["updated_at", "2020-05-05 18:26:33.413812"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus quo magnam optio?"], ["description", "Enim saepe beatae sunt."], ["date", "2020-05-06 18:26:33.415735"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.416859"], ["updated_at", "2020-05-05 18:26:33.416859"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et esse aut eos?"], ["description", "Aut deleniti omnis id."], ["date", "2020-05-06 18:26:33.419823"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.421042"], ["updated_at", "2020-05-05 18:26:33.421042"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est perferendis non aut?"], ["description", "Id facere qui iste."], ["date", "2020-05-06 18:26:33.422631"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.423472"], ["updated_at", "2020-05-05 18:26:33.423472"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam distinctio beatae repudiandae?"], ["description", "Id deserunt est iste."], ["date", "2020-05-06 18:26:33.424735"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.425561"], ["updated_at", "2020-05-05 18:26:33.425561"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore voluptatem quibusdam ullam?"], ["description", "Ut velit error qui."], ["date", "2020-05-06 18:26:33.427284"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.428199"], ["updated_at", "2020-05-05 18:26:33.428199"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum tempore vitae eaque?"], ["description", "Delectus ut et repellendus."], ["date", "2020-05-06 18:26:33.429524"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.430225"], ["updated_at", "2020-05-05 18:26:33.430225"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam labore quidem culpa?"], ["description", "Quia tempora vel qui."], ["date", "2020-05-06 18:26:33.431495"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.432253"], ["updated_at", "2020-05-05 18:26:33.432253"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit debitis laudantium ut?"], ["description", "Nemo deserunt temporibus nulla."], ["date", "2020-05-06 18:26:33.434510"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.435804"], ["updated_at", "2020-05-05 18:26:33.435804"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error recusandae rerum ut?"], ["description", "Harum officiis molestiae nihil."], ["date", "2020-05-06 18:26:33.437238"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.437963"], ["updated_at", "2020-05-05 18:26:33.437963"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut dolore quam non?"], ["description", "Omnis minus aut natus."], ["date", "2020-05-06 18:26:33.439150"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.439842"], ["updated_at", "2020-05-05 18:26:33.439842"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae asperiores sapiente ut?"], ["description", "Velit quaerat non architecto."], ["date", "2020-05-06 18:26:33.441051"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.441767"], ["updated_at", "2020-05-05 18:26:33.441767"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit amet ab maiores?"], ["description", "Itaque eaque voluptatem voluptate."], ["date", "2020-05-06 18:26:33.443491"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.444449"], ["updated_at", "2020-05-05 18:26:33.444449"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:26:33 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Laquanda Goodwin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$y5E4KmhH1EDkHkHFr5OiDeMGbarxK1E7MHogwoYUy/RgJ.eJh8WP2"], ["created_at", "2020-05-05 18:26:33.460731"], ["updated_at", "2020-05-05 18:26:33.460731"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Mollitia corrupti id possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.464077"], ["updated_at", "2020-05-05 18:26:33.464077"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam inventore pariatur eum?"], ["description", "Nobis similique vitae et."], ["date", "2020-05-06 18:26:33.465575"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.466514"], ["updated_at", "2020-05-05 18:26:33.466514"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas repudiandae ipsam voluptatem?"], ["description", "Laborum enim sit non."], ["date", "2020-05-06 18:26:33.467945"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.468670"], ["updated_at", "2020-05-05 18:26:33.468670"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi enim cum quia?"], ["description", "Architecto odit quasi id."], ["date", "2020-05-06 18:26:33.469808"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.470470"], ["updated_at", "2020-05-05 18:26:33.470470"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui in atque sunt?"], ["description", "Quia molestiae et velit."], ["date", "2020-05-06 18:26:33.471923"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.472789"], ["updated_at", "2020-05-05 18:26:33.472789"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est dignissimos omnis sunt?"], ["description", "Voluptas dicta ab blanditiis."], ["date", "2020-05-06 18:26:33.474639"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.475943"], ["updated_at", "2020-05-05 18:26:33.475943"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequuntur sit vel exercitationem?"], ["description", "Inventore enim odit sed."], ["date", "2020-05-06 18:26:33.478211"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.479987"], ["updated_at", "2020-05-05 18:26:33.479987"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium cumque harum enim?"], ["description", "Quis sed distinctio cupiditate."], ["date", "2020-05-06 18:26:33.481867"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.482891"], ["updated_at", "2020-05-05 18:26:33.482891"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime in consequatur omnis?"], ["description", "Sed qui consequatur est."], ["date", "2020-05-06 18:26:33.484181"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.484883"], ["updated_at", "2020-05-05 18:26:33.484883"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet quia debitis dolorem?"], ["description", "Dolorem et et est."], ["date", "2020-05-06 18:26:33.486002"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.486650"], ["updated_at", "2020-05-05 18:26:33.486650"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut dolorem provident perferendis?"], ["description", "Ea vel blanditiis amet."], ["date", "2020-05-06 18:26:33.488434"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.489181"], ["updated_at", "2020-05-05 18:26:33.489181"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis rerum possimus qui?"], ["description", "Consequatur reprehenderit dolore molestiae."], ["date", "2020-05-06 18:26:33.490412"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.491170"], ["updated_at", "2020-05-05 18:26:33.491170"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et culpa quia molestiae?"], ["description", "Voluptatem dolorem eum at."], ["date", "2020-05-06 18:26:33.492504"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.495154"], ["updated_at", "2020-05-05 18:26:33.495154"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet tenetur laboriosam animi?"], ["description", "Officiis consequatur distinctio non."], ["date", "2020-05-06 18:26:33.497269"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.498160"], ["updated_at", "2020-05-05 18:26:33.498160"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia sunt corrupti rerum?"], ["description", "Non minus dolor ratione."], ["date", "2020-05-06 18:26:33.499382"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.500098"], ["updated_at", "2020-05-05 18:26:33.500098"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel illo sunt unde?"], ["description", "Tempore est architecto accusamus."], ["date", "2020-05-06 18:26:33.501315"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.502065"], ["updated_at", "2020-05-05 18:26:33.502065"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod unde et officiis?"], ["description", "Nihil aut dolorem nesciunt."], ["date", "2020-05-06 18:26:33.503464"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.504360"], ["updated_at", "2020-05-05 18:26:33.504360"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum quia qui sit?"], ["description", "Rerum officia et enim."], ["date", "2020-05-06 18:26:33.505632"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.506384"], ["updated_at", "2020-05-05 18:26:33.506384"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem aut dolor aspernatur?"], ["description", "Dicta nobis aut ea."], ["date", "2020-05-06 18:26:33.507458"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.508127"], ["updated_at", "2020-05-05 18:26:33.508127"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus ipsum aliquid non?"], ["description", "Voluptatem aut est laboriosam."], ["date", "2020-05-06 18:26:33.509196"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.509905"], ["updated_at", "2020-05-05 18:26:33.509905"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos eum sit eaque?"], ["description", "Eum labore at sequi."], ["date", "2020-05-06 18:26:33.511865"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:26:33.512813"], ["updated_at", "2020-05-05 18:26:33.512813"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:26:33 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 868) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "occaecati"], ["description", "Sit consequatur incidunt eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.561024"], ["updated_at", "2020-05-05 18:26:33.561024"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "recusandae"], ["description", "Iste error amet qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.563903"], ["updated_at", "2020-05-05 18:26:33.563903"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Nobis nemo in dignissimos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.565295"], ["updated_at", "2020-05-05 18:26:33.565295"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Provident delectus beatae sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.566698"], ["updated_at", "2020-05-05 18:26:33.566698"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "libero"], ["description", "Sed vel in recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.568133"], ["updated_at", "2020-05-05 18:26:33.568133"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempore"], ["description", "Quas enim sunt quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.569427"], ["updated_at", "2020-05-05 18:26:33.569427"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Et et architecto dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.570882"], ["updated_at", "2020-05-05 18:26:33.570882"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "neque"], ["description", "Quod et sunt et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.572297"], ["updated_at", "2020-05-05 18:26:33.572297"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officia"], ["description", "Qui quaerat possimus et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.574258"], ["updated_at", "2020-05-05 18:26:33.574258"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Dignissimos corporis suscipit eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.577507"], ["updated_at", "2020-05-05 18:26:33.577507"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jo Wisozk"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$di.oOFWs9HgChowsQ7XpqO0D/IAU5Rom38SRIrAnqpMJMv.ll2Bxq"], ["created_at", "2020-05-05 18:26:33.580309"], ["updated_at", "2020-05-05 18:26:33.580309"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:26:33 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.13ms) +Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms | Allocations: 2912) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Et hic cupiditate quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.602110"], ["updated_at", "2020-05-05 18:26:33.602110"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Ipsam eius qui repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.604876"], ["updated_at", "2020-05-05 18:26:33.604876"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Eius reprehenderit voluptatem porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.606258"], ["updated_at", "2020-05-05 18:26:33.606258"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laboriosam"], ["description", "Iure quo asperiores neque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.607625"], ["updated_at", "2020-05-05 18:26:33.607625"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Ipsa deserunt corporis odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.608994"], ["updated_at", "2020-05-05 18:26:33.608994"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illum"], ["description", "Quas dolorum non eius."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.611112"], ["updated_at", "2020-05-05 18:26:33.611112"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Aut veritatis a et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.612580"], ["updated_at", "2020-05-05 18:26:33.612580"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magni"], ["description", "Inventore ex numquam ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.614094"], ["updated_at", "2020-05-05 18:26:33.614094"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "recusandae"], ["description", "Consectetur accusantium nam est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.616478"], ["updated_at", "2020-05-05 18:26:33.616478"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Sint id ut voluptatum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.618545"], ["updated_at", "2020-05-05 18:26:33.618545"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gwendolyn Kiehn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$70u0gXiCj/itkeyU/vK8r.qgPvQuagXfrvvY/8OW3t1pFZd2zDsjq"], ["created_at", "2020-05-05 18:26:33.622561"], ["updated_at", "2020-05-05 18:26:33.622561"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:26:33 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.16ms) +Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms | Allocations: 2843) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "delectus"], ["description", "Non est dolorem quisquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.640592"], ["updated_at", "2020-05-05 18:26:33.640592"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nam"], ["description", "Itaque explicabo voluptate atque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.643377"], ["updated_at", "2020-05-05 18:26:33.643377"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Quis doloremque autem assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.645566"], ["updated_at", "2020-05-05 18:26:33.645566"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Ex et aut quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.646856"], ["updated_at", "2020-05-05 18:26:33.646856"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Rem sequi reprehenderit qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.648056"], ["updated_at", "2020-05-05 18:26:33.648056"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "expedita"], ["description", "Qui sit dolores maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.649276"], ["updated_at", "2020-05-05 18:26:33.649276"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corrupti"], ["description", "Voluptas voluptatem neque asperiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.650492"], ["updated_at", "2020-05-05 18:26:33.650492"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Consectetur ad totam ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.651741"], ["updated_at", "2020-05-05 18:26:33.651741"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Fugit minus ipsum saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.653018"], ["updated_at", "2020-05-05 18:26:33.653018"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "saepe"], ["description", "Adipisci est quod vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.654698"], ["updated_at", "2020-05-05 18:26:33.654698"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shaina Mosciski I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ze4CyQ5cOqYtHxXXGcOrpun2vLNhaWuOFCcwcMN0fz4YS1Ba6/Lsy"], ["created_at", "2020-05-05 18:26:33.658716"], ["updated_at", "2020-05-05 18:26:33.658716"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.4ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:26:33 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2843) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:26:33 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.14ms) +Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.2ms | Allocations: 1242) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ab"], ["description", "Ipsam eaque qui similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.683644"], ["updated_at", "2020-05-05 18:26:33.683644"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Illo beatae incidunt esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.686343"], ["updated_at", "2020-05-05 18:26:33.686343"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Omnis qui sed dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.687795"], ["updated_at", "2020-05-05 18:26:33.687795"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Quasi iste dignissimos et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.689113"], ["updated_at", "2020-05-05 18:26:33.689113"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Dolorum eum minima molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.690363"], ["updated_at", "2020-05-05 18:26:33.690363"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "commodi"], ["description", "Explicabo omnis dolor et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.692002"], ["updated_at", "2020-05-05 18:26:33.692002"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nostrum"], ["description", "Magnam rerum eius delectus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.693940"], ["updated_at", "2020-05-05 18:26:33.693940"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsa"], ["description", "Omnis id autem rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.696440"], ["updated_at", "2020-05-05 18:26:33.696440"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ratione"], ["description", "Exercitationem harum neque nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.698235"], ["updated_at", "2020-05-05 18:26:33.698235"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequuntur"], ["description", "Laudantium beatae quibusdam ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.699987"], ["updated_at", "2020-05-05 18:26:33.699987"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Janita Abbott"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$u2lQ6JdOBFB95x3ygxX/d.6YJ3eosGzHvjpzZz.6rLAXtl5/CXP2e"], ["created_at", "2020-05-05 18:26:33.704106"], ["updated_at", "2020-05-05 18:26:33.704106"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:26:33 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.62ms) +Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.1ms | Allocations: 2844) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:26:33 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.3ms) +Completed 200 OK in 4ms (Views: 1.6ms | ActiveRecord: 0.4ms | Allocations: 1240) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Ducimus corrupti blanditiis inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.727699"], ["updated_at", "2020-05-05 18:26:33.727699"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Perspiciatis quis itaque qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.730528"], ["updated_at", "2020-05-05 18:26:33.730528"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptate"], ["description", "Vero ut praesentium quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.732125"], ["updated_at", "2020-05-05 18:26:33.732125"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "assumenda"], ["description", "Aut veritatis similique repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.733427"], ["updated_at", "2020-05-05 18:26:33.733427"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Libero consequatur quod expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.734913"], ["updated_at", "2020-05-05 18:26:33.734913"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vitae"], ["description", "Cum esse numquam quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.737499"], ["updated_at", "2020-05-05 18:26:33.737499"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "porro"], ["description", "Excepturi possimus et sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.739301"], ["updated_at", "2020-05-05 18:26:33.739301"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Quam numquam molestias qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.742081"], ["updated_at", "2020-05-05 18:26:33.742081"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Pariatur fugiat labore odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.745571"], ["updated_at", "2020-05-05 18:26:33.745571"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "necessitatibus"], ["description", "Error consequatur sequi vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.747209"], ["updated_at", "2020-05-05 18:26:33.747209"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Zola Sauer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$h8wXBXc4/lSzBgPu5aO5relm/yIGnbIMCydyhmWCPJRXqpxMxFFPu"], ["created_at", "2020-05-05 18:26:33.749841"], ["updated_at", "2020-05-05 18:26:33.749841"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:26:33 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.35ms) +Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.2ms | Allocations: 2845) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:26:33 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 512) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Reprehenderit ad laudantium ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.771916"], ["updated_at", "2020-05-05 18:26:33.771916"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Occaecati est aspernatur unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.774869"], ["updated_at", "2020-05-05 18:26:33.774869"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "recusandae"], ["description", "Omnis provident et id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.778449"], ["updated_at", "2020-05-05 18:26:33.778449"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Autem id ut consectetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.781083"], ["updated_at", "2020-05-05 18:26:33.781083"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fuga"], ["description", "Aliquam molestiae adipisci voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.783385"], ["updated_at", "2020-05-05 18:26:33.783385"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Ut dolorem eius dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.785185"], ["updated_at", "2020-05-05 18:26:33.785185"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cupiditate"], ["description", "Alias sunt et quas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.786609"], ["updated_at", "2020-05-05 18:26:33.786609"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nisi"], ["description", "Aliquid quaerat facilis est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.787872"], ["updated_at", "2020-05-05 18:26:33.787872"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Est ex fugiat dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.789151"], ["updated_at", "2020-05-05 18:26:33.789151"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "optio"], ["description", "Aut voluptas eaque nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.790377"], ["updated_at", "2020-05-05 18:26:33.790377"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Marco Towne"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HPitXvQ.ZVKn7mRVOFdqcuu5ZpheJC.SsWl32L8F3Xo.Mrl5j0vHK"], ["created_at", "2020-05-05 18:26:33.793129"], ["updated_at", "2020-05-05 18:26:33.793129"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:26:33 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | ActiveRecord: 0.2ms | Allocations: 2841) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:26:33 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (6.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsum"], ["description", "Nemo accusantium excepturi reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.817313"], ["updated_at", "2020-05-05 18:26:33.817313"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "porro"], ["description", "Ut cum est nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.825411"], ["updated_at", "2020-05-05 18:26:33.825411"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempore"], ["description", "Quaerat perspiciatis culpa quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.827467"], ["updated_at", "2020-05-05 18:26:33.827467"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "excepturi"], ["description", "Nihil placeat est consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.828921"], ["updated_at", "2020-05-05 18:26:33.828921"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Ut voluptas ratione voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.830255"], ["updated_at", "2020-05-05 18:26:33.830255"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "totam"], ["description", "Quibusdam nihil velit voluptatum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.831664"], ["updated_at", "2020-05-05 18:26:33.831664"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "numquam"], ["description", "Molestias nemo nam repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.832940"], ["updated_at", "2020-05-05 18:26:33.832940"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rem"], ["description", "Nesciunt quam voluptate nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.834212"], ["updated_at", "2020-05-05 18:26:33.834212"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "exercitationem"], ["description", "At sint autem dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.836175"], ["updated_at", "2020-05-05 18:26:33.836175"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corrupti"], ["description", "Voluptatibus aliquam et sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.838600"], ["updated_at", "2020-05-05 18:26:33.838600"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lucius Block"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4Df9kZfXn4vEr.mL3smcy.ktfZ5PiTwatGvG396NDhsY/7oNF6GCm"], ["created_at", "2020-05-05 18:26:33.842983"], ["updated_at", "2020-05-05 18:26:33.842983"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:26:33 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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 15:26:33 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:26:33.867918"], ["updated_at", "2020-05-05 18:26:33.867918"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.64ms) +Completed 201 Created in 23ms (Views: 1.4ms | ActiveRecord: 1.1ms | Allocations: 6220) +  (0.6ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "reiciendis"], ["description", "Id molestias quam illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.887608"], ["updated_at", "2020-05-05 18:26:33.887608"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nam"], ["description", "Iste dolorem commodi ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.890310"], ["updated_at", "2020-05-05 18:26:33.890310"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eveniet"], ["description", "Est enim voluptatum omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.891753"], ["updated_at", "2020-05-05 18:26:33.891753"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quae"], ["description", "Sint temporibus architecto nisi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.893298"], ["updated_at", "2020-05-05 18:26:33.893298"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Quisquam ea est omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.895224"], ["updated_at", "2020-05-05 18:26:33.895224"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "saepe"], ["description", "Facere delectus architecto qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.897668"], ["updated_at", "2020-05-05 18:26:33.897668"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Incidunt unde vero ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.899650"], ["updated_at", "2020-05-05 18:26:33.899650"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "similique"], ["description", "Dicta ducimus ex reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.902310"], ["updated_at", "2020-05-05 18:26:33.902310"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "soluta"], ["description", "Harum nemo quaerat facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.904210"], ["updated_at", "2020-05-05 18:26:33.904210"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Ex aut id et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.905536"], ["updated_at", "2020-05-05 18:26:33.905536"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Eldridge Pfeffer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RKIHylpa1cFcX5ki/aLUgO85YqM1wUIF4iZNLAAwX8bWE3g3Ml9r6"], ["created_at", "2020-05-05 18:26:33.908120"], ["updated_at", "2020-05-05 18:26:33.908120"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:26:33 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (19.59ms) +Completed 200 OK in 22ms (Views: 20.8ms | ActiveRecord: 0.2ms | Allocations: 2845) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:26:33 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:26:33.936192"], ["updated_at", "2020-05-05 18:26:33.936192"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.54ms) +Completed 201 Created in 7ms (Views: 1.0ms | ActiveRecord: 0.9ms | Allocations: 2252) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (25.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Minus accusantium assumenda est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.970216"], ["updated_at", "2020-05-05 18:26:33.970216"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Inventore nesciunt laboriosam totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.973259"], ["updated_at", "2020-05-05 18:26:33.973259"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "exercitationem"], ["description", "Perferendis recusandae eius est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.974921"], ["updated_at", "2020-05-05 18:26:33.974921"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "occaecati"], ["description", "Quod quibusdam ut saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.978120"], ["updated_at", "2020-05-05 18:26:33.978120"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "inventore"], ["description", "Tenetur nihil et voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.980431"], ["updated_at", "2020-05-05 18:26:33.980431"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Beatae quia est voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.983138"], ["updated_at", "2020-05-05 18:26:33.983138"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "amet"], ["description", "Ab consequuntur dolor labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.985112"], ["updated_at", "2020-05-05 18:26:33.985112"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Esse minima similique dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.986459"], ["updated_at", "2020-05-05 18:26:33.986459"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Iste accusamus iusto distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.987802"], ["updated_at", "2020-05-05 18:26:33.987802"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Vero quia impedit possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:33.989096"], ["updated_at", "2020-05-05 18:26:33.989096"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Reynaldo Dach"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BPoEnLjQy7UDi3F/J/qm/u3rA6/7oZXyn.Wj7YubS1Hm95..pedvS"], ["created_at", "2020-05-05 18:26:33.991776"], ["updated_at", "2020-05-05 18:26:33.991776"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:26:33 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.3ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.37ms) +Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.4ms | Allocations: 2846) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:26:34 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.11ms) +Completed 422 Unprocessable Entity in 6ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 4006) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odio"], ["description", "Excepturi est ipsa a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.021366"], ["updated_at", "2020-05-05 18:26:34.021366"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Voluptates nam omnis beatae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.024076"], ["updated_at", "2020-05-05 18:26:34.024076"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aspernatur"], ["description", "Sint earum nemo voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.025503"], ["updated_at", "2020-05-05 18:26:34.025503"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Harum tenetur odio aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.027434"], ["updated_at", "2020-05-05 18:26:34.027434"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Odio ab quis dolore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.029015"], ["updated_at", "2020-05-05 18:26:34.029015"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quas"], ["description", "Similique est esse quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.030470"], ["updated_at", "2020-05-05 18:26:34.030470"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "In ut aspernatur officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.031903"], ["updated_at", "2020-05-05 18:26:34.031903"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Corporis distinctio sit et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.033242"], ["updated_at", "2020-05-05 18:26:34.033242"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quasi"], ["description", "Dolore dolorum et laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.034554"], ["updated_at", "2020-05-05 18:26:34.034554"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Quam et blanditiis quidem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.035822"], ["updated_at", "2020-05-05 18:26:34.035822"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ismael O'Conner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$wZmckg.5uuzzMU7naix2RuPsp40geGg822Tnfpa7QSEP7OZOZNZJ6"], ["created_at", "2020-05-05 18:26:34.039623"], ["updated_at", "2020-05-05 18:26:34.039623"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:26:34 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.21ms) +Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:26:34 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Voluptates totam odit assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.066192"], ["updated_at", "2020-05-05 18:26:34.066192"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Quod atque placeat aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.068995"], ["updated_at", "2020-05-05 18:26:34.068995"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nostrum"], ["description", "Et optio ipsum impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.070493"], ["updated_at", "2020-05-05 18:26:34.070493"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "harum"], ["description", "Ut dolor ea possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.071949"], ["updated_at", "2020-05-05 18:26:34.071949"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Inventore animi eligendi qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.073258"], ["updated_at", "2020-05-05 18:26:34.073258"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Molestiae cumque atque iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.074492"], ["updated_at", "2020-05-05 18:26:34.074492"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Impedit veritatis omnis adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.075794"], ["updated_at", "2020-05-05 18:26:34.075794"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magni"], ["description", "Numquam ut et odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.079019"], ["updated_at", "2020-05-05 18:26:34.079019"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Sed necessitatibus ut vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.081149"], ["updated_at", "2020-05-05 18:26:34.081149"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Atque suscipit commodi ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.083670"], ["updated_at", "2020-05-05 18:26:34.083670"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lynda Hane"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KbzHDHHoG8qWXopZzLqD8.LXbIY4a6HHW.AKJyK5cmtg8w2YtlDSW"], ["created_at", "2020-05-05 18:26:34.086897"], ["updated_at", "2020-05-05 18:26:34.086897"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:26:34 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.69ms) +Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms | Allocations: 2842) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:26:34 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:26:34.099768"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1044) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellat"], ["description", "Deserunt aut praesentium laboriosam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.110494"], ["updated_at", "2020-05-05 18:26:34.110494"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Quisquam fugit harum provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.113324"], ["updated_at", "2020-05-05 18:26:34.113324"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aperiam"], ["description", "Ab voluptatum ut aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.114705"], ["updated_at", "2020-05-05 18:26:34.114705"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eaque"], ["description", "Est sed est nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.116139"], ["updated_at", "2020-05-05 18:26:34.116139"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iusto"], ["description", "Consequatur repellendus et consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.118296"], ["updated_at", "2020-05-05 18:26:34.118296"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Ut est impedit laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.120429"], ["updated_at", "2020-05-05 18:26:34.120429"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repudiandae"], ["description", "Aut nam nihil iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.122926"], ["updated_at", "2020-05-05 18:26:34.122926"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Expedita blanditiis ratione autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.124832"], ["updated_at", "2020-05-05 18:26:34.124832"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "architecto"], ["description", "Mollitia iusto aut minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.126703"], ["updated_at", "2020-05-05 18:26:34.126703"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "adipisci"], ["description", "Eligendi ex voluptates molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.128641"], ["updated_at", "2020-05-05 18:26:34.128641"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jesusita Kunze"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$IA5QUvPG5r/GRgqu79wMf.2zmc6hffaWT09E7qbwt0vWdgZF1nJGy"], ["created_at", "2020-05-05 18:26:34.131207"], ["updated_at", "2020-05-05 18:26:34.131207"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:26:34 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.76ms) +Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.1ms | Allocations: 2842) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:26:34 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.2ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:26:34.144370"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 5ms (ActiveRecord: 0.5ms | Allocations: 999) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorum"], ["description", "Fuga non optio nostrum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.155307"], ["updated_at", "2020-05-05 18:26:34.155307"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Eius velit molestiae pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.159397"], ["updated_at", "2020-05-05 18:26:34.159397"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "totam"], ["description", "Sunt similique tempore velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.162907"], ["updated_at", "2020-05-05 18:26:34.162907"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nemo"], ["description", "Nam modi et illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.165053"], ["updated_at", "2020-05-05 18:26:34.165053"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Aut veritatis fuga et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.166520"], ["updated_at", "2020-05-05 18:26:34.166520"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "incidunt"], ["description", "Laboriosam et et nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.167850"], ["updated_at", "2020-05-05 18:26:34.167850"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Officiis consequatur suscipit et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.169103"], ["updated_at", "2020-05-05 18:26:34.169103"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Qui provident nam ullam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.170417"], ["updated_at", "2020-05-05 18:26:34.170417"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Magnam nemo nihil est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.172086"], ["updated_at", "2020-05-05 18:26:34.172086"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "hic"], ["description", "Soluta laborum est magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:26:34.173383"], ["updated_at", "2020-05-05 18:26:34.173383"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kamilah Feest"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.H6s5O/P9/s1fgsWSP2olOYGWGnAaQaX6pwLdSLE9AHoWytLDjDSq"], ["created_at", "2020-05-05 18:26:34.176071"], ["updated_at", "2020-05-05 18:26:34.176071"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:26:34 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.14ms) +Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2841) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:26:34 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1221) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.0ms) rollback transaction +  (4.2ms) SELECT sqlite_version(*) +  (1.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (86.6ms) DELETE FROM "meetings"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (84.8ms) DELETE FROM "user_meets"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (111.4ms) DELETE FROM "user_meetings"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (80.8ms) DELETE FROM "meets"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (92.3ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (124.9ms) DELETE FROM "messagems"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (93.7ms) DELETE FROM "users"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (14.0ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jacquelyn Treutel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UG3MVh.08ASZ2.1fKvKBDOlzGVLDOlFYRtIZeiAnkaJ2R9X5LwMSS"], ["created_at", "2020-05-05 18:27:24.953733"], ["updated_at", "2020-05-05 18:27:24.953733"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Molestiae sint consequatur libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:24.985457"], ["updated_at", "2020-05-05 18:27:24.985457"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta aut repellat non?"], ["description", "A in architecto et."], ["date", "2020-05-06 18:27:25.036305"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.090793"], ["updated_at", "2020-05-05 18:27:25.090793"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Hic nemo quae placeat?"], ["description", "Ab fuga sed eos."], ["date", "2020-05-06 18:27:25.092990"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.094090"], ["updated_at", "2020-05-05 18:27:25.094090"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam voluptas et nihil?"], ["description", "Qui distinctio deserunt ducimus."], ["date", "2020-05-06 18:27:25.095508"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.096263"], ["updated_at", "2020-05-05 18:27:25.096263"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum dicta eum similique?"], ["description", "Molestiae consectetur aliquam natus."], ["date", "2020-05-06 18:27:25.097394"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.098134"], ["updated_at", "2020-05-05 18:27:25.098134"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero similique sint fuga?"], ["description", "Quas sed magnam et."], ["date", "2020-05-06 18:27:25.099333"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.100709"], ["updated_at", "2020-05-05 18:27:25.100709"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum vitae aperiam a?"], ["description", "Officiis voluptatem accusantium neque."], ["date", "2020-05-06 18:27:25.103072"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.104317"], ["updated_at", "2020-05-05 18:27:25.104317"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni suscipit vel assumenda?"], ["description", "Aut nobis cupiditate architecto."], ["date", "2020-05-06 18:27:25.105823"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.106692"], ["updated_at", "2020-05-05 18:27:25.106692"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique consequatur dolorum autem?"], ["description", "Repellendus consequatur et consequuntur."], ["date", "2020-05-06 18:27:25.108073"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.109645"], ["updated_at", "2020-05-05 18:27:25.109645"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum quisquam odit qui?"], ["description", "Dolorem et rem fugiat."], ["date", "2020-05-06 18:27:25.111269"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.112345"], ["updated_at", "2020-05-05 18:27:25.112345"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora culpa aut veritatis?"], ["description", "Autem vel beatae maxime."], ["date", "2020-05-06 18:27:25.114837"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.115926"], ["updated_at", "2020-05-05 18:27:25.115926"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit omnis ducimus quo?"], ["description", "Ut alias architecto consequatur."], ["date", "2020-05-06 18:27:25.118763"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.121569"], ["updated_at", "2020-05-05 18:27:25.121569"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur dolor quae voluptatem?"], ["description", "Neque provident in inventore."], ["date", "2020-05-06 18:27:25.125775"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.127240"], ["updated_at", "2020-05-05 18:27:25.127240"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quibusdam reiciendis repudiandae illo?"], ["description", "Nisi qui quia quia."], ["date", "2020-05-06 18:27:25.128847"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.129743"], ["updated_at", "2020-05-05 18:27:25.129743"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque molestiae praesentium fugiat?"], ["description", "Sint molestias ex qui."], ["date", "2020-05-06 18:27:25.131187"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.132076"], ["updated_at", "2020-05-05 18:27:25.132076"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis laudantium optio blanditiis?"], ["description", "Ut libero molestiae laboriosam."], ["date", "2020-05-06 18:27:25.133530"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.134645"], ["updated_at", "2020-05-05 18:27:25.134645"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum deserunt unde rerum?"], ["description", "Autem soluta qui possimus."], ["date", "2020-05-06 18:27:25.136291"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.137487"], ["updated_at", "2020-05-05 18:27:25.137487"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.5ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur et ut odit?"], ["description", "Itaque voluptatum est officia."], ["date", "2020-05-06 18:27:25.140140"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.144509"], ["updated_at", "2020-05-05 18:27:25.144509"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias aut inventore quam?"], ["description", "Esse rem animi ullam."], ["date", "2020-05-06 18:27:25.147581"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.149466"], ["updated_at", "2020-05-05 18:27:25.149466"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum praesentium nihil possimus?"], ["description", "Magni nemo incidunt officia."], ["date", "2020-05-06 18:27:25.151229"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.152201"], ["updated_at", "2020-05-05 18:27:25.152201"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis quod repudiandae voluptate?"], ["description", "Illum in quam et."], ["date", "2020-05-06 18:27:25.153788"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.154913"], ["updated_at", "2020-05-05 18:27:25.154913"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:27:25 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (2.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.73ms) +Completed 200 OK in 49ms (Views: 23.1ms | ActiveRecord: 2.3ms | Allocations: 8639) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (10.3ms) rollback transaction +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jewell Sauer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.4iZZRtQxQPYuS/VV9hf/eNrS73eQALMnUBt4l5U44jqlCiSWrx4C"], ["created_at", "2020-05-05 18:27:25.285111"], ["updated_at", "2020-05-05 18:27:25.285111"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Reprehenderit est eius non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:25.289912"], ["updated_at", "2020-05-05 18:27:25.289912"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam voluptas aperiam eos?"], ["description", "Corrupti voluptatem quia sed."], ["date", "2020-05-06 18:27:25.295604"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.296747"], ["updated_at", "2020-05-05 18:27:25.296747"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil est fugit similique?"], ["description", "Alias quia nulla sit."], ["date", "2020-05-06 18:27:25.298694"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.300542"], ["updated_at", "2020-05-05 18:27:25.300542"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit dolorem ipsam sint?"], ["description", "Inventore delectus explicabo nostrum."], ["date", "2020-05-06 18:27:25.303898"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.305533"], ["updated_at", "2020-05-05 18:27:25.305533"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro hic magni veniam?"], ["description", "Mollitia ut libero blanditiis."], ["date", "2020-05-06 18:27:25.307417"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.310220"], ["updated_at", "2020-05-05 18:27:25.310220"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt quaerat et id?"], ["description", "Repellendus similique enim occaecati."], ["date", "2020-05-06 18:27:25.311991"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.313062"], ["updated_at", "2020-05-05 18:27:25.313062"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem ad sit officia?"], ["description", "Exercitationem qui velit sed."], ["date", "2020-05-06 18:27:25.314826"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.316041"], ["updated_at", "2020-05-05 18:27:25.316041"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui laudantium ut dolores?"], ["description", "Quas totam commodi mollitia."], ["date", "2020-05-06 18:27:25.317691"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.319136"], ["updated_at", "2020-05-05 18:27:25.319136"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim quibusdam voluptates possimus?"], ["description", "Rerum est et molestiae."], ["date", "2020-05-06 18:27:25.322289"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.324017"], ["updated_at", "2020-05-05 18:27:25.324017"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut porro officia unde?"], ["description", "Debitis nesciunt molestiae enim."], ["date", "2020-05-06 18:27:25.326890"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.328673"], ["updated_at", "2020-05-05 18:27:25.328673"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas doloribus voluptatem necessitatibus?"], ["description", "Ad eligendi nam praesentium."], ["date", "2020-05-06 18:27:25.330869"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.332014"], ["updated_at", "2020-05-05 18:27:25.332014"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium aperiam provident doloremque?"], ["description", "Voluptas laborum molestiae animi."], ["date", "2020-05-06 18:27:25.333837"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.334817"], ["updated_at", "2020-05-05 18:27:25.334817"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe corporis ad quaerat?"], ["description", "Laudantium eos aut soluta."], ["date", "2020-05-06 18:27:25.336391"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.337205"], ["updated_at", "2020-05-05 18:27:25.337205"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem eos eaque aliquid?"], ["description", "Omnis eius impedit aut."], ["date", "2020-05-06 18:27:25.338338"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.339036"], ["updated_at", "2020-05-05 18:27:25.339036"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto voluptas omnis alias?"], ["description", "Doloremque voluptas debitis omnis."], ["date", "2020-05-06 18:27:25.340175"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.340918"], ["updated_at", "2020-05-05 18:27:25.340918"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia molestiae animi totam?"], ["description", "Et vel officiis consequatur."], ["date", "2020-05-06 18:27:25.343667"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.345132"], ["updated_at", "2020-05-05 18:27:25.345132"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam soluta quia velit?"], ["description", "Doloremque sed totam quis."], ["date", "2020-05-06 18:27:25.347075"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.347960"], ["updated_at", "2020-05-05 18:27:25.347960"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio sunt et asperiores?"], ["description", "Minima quia laborum aperiam."], ["date", "2020-05-06 18:27:25.349395"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.350132"], ["updated_at", "2020-05-05 18:27:25.350132"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim aspernatur et et?"], ["description", "Accusamus dolore dolores est."], ["date", "2020-05-06 18:27:25.351572"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.352357"], ["updated_at", "2020-05-05 18:27:25.352357"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat voluptatem sit blanditiis?"], ["description", "Eum a repellat voluptas."], ["date", "2020-05-06 18:27:25.353921"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.354730"], ["updated_at", "2020-05-05 18:27:25.354730"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non illum nihil consectetur?"], ["description", "Et et sapiente incidunt."], ["date", "2020-05-06 18:27:25.356275"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.357035"], ["updated_at", "2020-05-05 18:27:25.357035"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:27:25 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (7.66ms) +Completed 200 OK in 11ms (Views: 9.9ms | ActiveRecord: 0.3ms | Allocations: 5517) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tyler Koss"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$40Hc1roF9cmEMfbO8ZMp..akEoODbB4KIFXtwComlU5n9QKBpMaBe"], ["created_at", "2020-05-05 18:27:25.387050"], ["updated_at", "2020-05-05 18:27:25.387050"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "possimus"], ["description", "Ratione et rem et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:25.390859"], ["updated_at", "2020-05-05 18:27:25.390859"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut eius consectetur numquam?"], ["description", "Nihil non quis saepe."], ["date", "2020-05-06 18:27:25.393155"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.394279"], ["updated_at", "2020-05-05 18:27:25.394279"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam id et aut?"], ["description", "Quia sit iure laudantium."], ["date", "2020-05-06 18:27:25.395717"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.396444"], ["updated_at", "2020-05-05 18:27:25.396444"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur ut in corporis?"], ["description", "Tempora molestiae corporis inventore."], ["date", "2020-05-06 18:27:25.397642"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.398342"], ["updated_at", "2020-05-05 18:27:25.398342"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae dolorem officiis excepturi?"], ["description", "Ad dignissimos blanditiis et."], ["date", "2020-05-06 18:27:25.399503"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.400187"], ["updated_at", "2020-05-05 18:27:25.400187"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita in placeat voluptatem?"], ["description", "Blanditiis ut atque consequuntur."], ["date", "2020-05-06 18:27:25.401530"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.403095"], ["updated_at", "2020-05-05 18:27:25.403095"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minus ut et voluptatem?"], ["description", "Dolore natus tempore molestiae."], ["date", "2020-05-06 18:27:25.405060"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.406485"], ["updated_at", "2020-05-05 18:27:25.406485"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique dolores tempore qui?"], ["description", "Aut est aut accusantium."], ["date", "2020-05-06 18:27:25.408659"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.409926"], ["updated_at", "2020-05-05 18:27:25.409926"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium quidem sit soluta?"], ["description", "Aperiam dolores eos numquam."], ["date", "2020-05-06 18:27:25.411319"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.412065"], ["updated_at", "2020-05-05 18:27:25.412065"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex nihil velit dolorum?"], ["description", "Rerum repudiandae beatae est."], ["date", "2020-05-06 18:27:25.413220"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.413899"], ["updated_at", "2020-05-05 18:27:25.413899"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae harum eos incidunt?"], ["description", "Nisi voluptas veniam ipsam."], ["date", "2020-05-06 18:27:25.415698"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.416502"], ["updated_at", "2020-05-05 18:27:25.416502"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim commodi nostrum est?"], ["description", "Suscipit quis et nobis."], ["date", "2020-05-06 18:27:25.417774"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.418511"], ["updated_at", "2020-05-05 18:27:25.418511"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia minima sit sequi?"], ["description", "Nam reprehenderit ad placeat."], ["date", "2020-05-06 18:27:25.419734"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.420460"], ["updated_at", "2020-05-05 18:27:25.420460"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam dolorum pariatur expedita?"], ["description", "Et provident rerum autem."], ["date", "2020-05-06 18:27:25.422224"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.423637"], ["updated_at", "2020-05-05 18:27:25.423637"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam quae et inventore?"], ["description", "Tempore reprehenderit neque rerum."], ["date", "2020-05-06 18:27:25.425363"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.426676"], ["updated_at", "2020-05-05 18:27:25.426676"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur error ut ea?"], ["description", "Ea aut est corporis."], ["date", "2020-05-06 18:27:25.447635"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.448870"], ["updated_at", "2020-05-05 18:27:25.448870"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum iste autem vero?"], ["description", "Qui ullam et in."], ["date", "2020-05-06 18:27:25.450262"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.450987"], ["updated_at", "2020-05-05 18:27:25.450987"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae est corporis sit?"], ["description", "Quibusdam culpa repellat facilis."], ["date", "2020-05-06 18:27:25.452240"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.452989"], ["updated_at", "2020-05-05 18:27:25.452989"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque animi fugiat et?"], ["description", "Eos culpa voluptas temporibus."], ["date", "2020-05-06 18:27:25.454134"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.454818"], ["updated_at", "2020-05-05 18:27:25.454818"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque omnis quae hic?"], ["description", "Odio facilis fuga neque."], ["date", "2020-05-06 18:27:25.455973"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.456673"], ["updated_at", "2020-05-05 18:27:25.456673"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum labore vel et?"], ["description", "Aut voluptatem sint in."], ["date", "2020-05-06 18:27:25.458330"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.459559"], ["updated_at", "2020-05-05 18:27:25.459559"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:27:25 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 404 Not Found in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms | Allocations: 866) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. James Greenfelder"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UaGa8z44d3x8UW/TvMu1Ve57NuKjZ/dOv5yuVsvPWPh6LORfQVPey"], ["created_at", "2020-05-05 18:27:25.480555"], ["updated_at", "2020-05-05 18:27:25.480555"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Qui consectetur sunt culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:25.484578"], ["updated_at", "2020-05-05 18:27:25.484578"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum ad consequatur aut?"], ["description", "Non nulla est doloribus."], ["date", "2020-05-06 18:27:25.486361"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.487287"], ["updated_at", "2020-05-05 18:27:25.487287"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda et perferendis aut?"], ["description", "Maxime dolorum harum necessitatibus."], ["date", "2020-05-06 18:27:25.488660"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.489365"], ["updated_at", "2020-05-05 18:27:25.489365"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa qui ex eos?"], ["description", "Tenetur dolores eum omnis."], ["date", "2020-05-06 18:27:25.490571"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.491345"], ["updated_at", "2020-05-05 18:27:25.491345"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas nam eum consequatur?"], ["description", "Sint rem rerum hic."], ["date", "2020-05-06 18:27:25.492565"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.493360"], ["updated_at", "2020-05-05 18:27:25.493360"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea laudantium eius velit?"], ["description", "Ut ducimus est est."], ["date", "2020-05-06 18:27:25.494477"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.495183"], ["updated_at", "2020-05-05 18:27:25.495183"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia nemo commodi ex?"], ["description", "Voluptas earum blanditiis labore."], ["date", "2020-05-06 18:27:25.496251"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.496922"], ["updated_at", "2020-05-05 18:27:25.496922"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut voluptatem fuga animi?"], ["description", "Dolorem modi quia consequuntur."], ["date", "2020-05-06 18:27:25.498052"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.498776"], ["updated_at", "2020-05-05 18:27:25.498776"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Adipisci vitae qui voluptatem?"], ["description", "Recusandae consequatur velit et."], ["date", "2020-05-06 18:27:25.499891"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.500590"], ["updated_at", "2020-05-05 18:27:25.500590"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit sit minus quae?"], ["description", "Pariatur beatae rerum labore."], ["date", "2020-05-06 18:27:25.501787"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.502987"], ["updated_at", "2020-05-05 18:27:25.502987"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas ut maxime consequatur?"], ["description", "Fugit perspiciatis repellendus quis."], ["date", "2020-05-06 18:27:25.505842"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.507136"], ["updated_at", "2020-05-05 18:27:25.507136"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo officiis temporibus repellat?"], ["description", "Adipisci eveniet atque aut."], ["date", "2020-05-06 18:27:25.509063"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.510010"], ["updated_at", "2020-05-05 18:27:25.510010"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore voluptate optio sapiente?"], ["description", "Tenetur amet quis voluptas."], ["date", "2020-05-06 18:27:25.511412"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.512162"], ["updated_at", "2020-05-05 18:27:25.512162"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit ipsam quia enim?"], ["description", "Possimus aut numquam laboriosam."], ["date", "2020-05-06 18:27:25.513229"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.513892"], ["updated_at", "2020-05-05 18:27:25.513892"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque omnis autem quis?"], ["description", "Porro voluptates minima aut."], ["date", "2020-05-06 18:27:25.514920"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.515599"], ["updated_at", "2020-05-05 18:27:25.515599"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti aperiam blanditiis modi?"], ["description", "Totam unde dolores mollitia."], ["date", "2020-05-06 18:27:25.516701"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.517418"], ["updated_at", "2020-05-05 18:27:25.517418"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem fuga occaecati voluptatum?"], ["description", "Aut iusto libero magnam."], ["date", "2020-05-06 18:27:25.518590"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.519285"], ["updated_at", "2020-05-05 18:27:25.519285"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt rem quaerat illo?"], ["description", "Aliquam nisi est aspernatur."], ["date", "2020-05-06 18:27:25.520477"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.521336"], ["updated_at", "2020-05-05 18:27:25.521336"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt perspiciatis unde eum?"], ["description", "Veniam iste ut distinctio."], ["date", "2020-05-06 18:27:25.523210"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.524929"], ["updated_at", "2020-05-05 18:27:25.524929"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe veniam excepturi alias?"], ["description", "Sit repellat magnam rerum."], ["date", "2020-05-06 18:27:25.527561"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.528790"], ["updated_at", "2020-05-05 18:27:25.528790"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minus sit aut odit?"], ["description", "Exercitationem ipsum cumque explicabo."], ["date", "2020-05-06 18:27:25.530570"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.531565"], ["updated_at", "2020-05-05 18:27:25.531565"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:27:25 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 509) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (13.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alvin Kuphal DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hmMzj2GgSrruHGMM2RQMX.VyM0vFSO0e803rwtOTmsd18.PYbzRrW"], ["created_at", "2020-05-05 18:27:25.594521"], ["updated_at", "2020-05-05 18:27:25.594521"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veniam"], ["description", "Omnis quia sit optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:25.599756"], ["updated_at", "2020-05-05 18:27:25.599756"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem dignissimos sed facere?"], ["description", "Molestiae labore reprehenderit et."], ["date", "2020-05-06 18:27:25.603250"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.605121"], ["updated_at", "2020-05-05 18:27:25.605121"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est consequatur exercitationem qui?"], ["description", "Aspernatur animi et in."], ["date", "2020-05-06 18:27:25.606965"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.608463"], ["updated_at", "2020-05-05 18:27:25.608463"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis fugiat ipsam consequuntur?"], ["description", "Distinctio explicabo officia aut."], ["date", "2020-05-06 18:27:25.610220"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.611230"], ["updated_at", "2020-05-05 18:27:25.611230"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et et reiciendis qui?"], ["description", "Voluptas sit consectetur odit."], ["date", "2020-05-06 18:27:25.612756"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.613605"], ["updated_at", "2020-05-05 18:27:25.613605"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut quis hic aut?"], ["description", "Ipsum soluta sunt voluptates."], ["date", "2020-05-06 18:27:25.615098"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.616241"], ["updated_at", "2020-05-05 18:27:25.616241"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quia voluptatibus vitae?"], ["description", "Ab consequatur eum saepe."], ["date", "2020-05-06 18:27:25.618264"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.619648"], ["updated_at", "2020-05-05 18:27:25.619648"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et ullam doloremque quis?"], ["description", "Neque et unde quis."], ["date", "2020-05-06 18:27:25.622159"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.624363"], ["updated_at", "2020-05-05 18:27:25.624363"]] +  (0.4ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel vel nemo molestiae?"], ["description", "Saepe quia adipisci corrupti."], ["date", "2020-05-06 18:27:25.629353"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.631703"], ["updated_at", "2020-05-05 18:27:25.631703"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab quia corrupti quos?"], ["description", "Fugit harum sunt et."], ["date", "2020-05-06 18:27:25.633854"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.634775"], ["updated_at", "2020-05-05 18:27:25.634775"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit explicabo maiores iste?"], ["description", "Tempora eum repudiandae omnis."], ["date", "2020-05-06 18:27:25.636859"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.637806"], ["updated_at", "2020-05-05 18:27:25.637806"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam mollitia illum sit?"], ["description", "Delectus temporibus fugiat explicabo."], ["date", "2020-05-06 18:27:25.639403"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.640882"], ["updated_at", "2020-05-05 18:27:25.640882"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere eius totam sed?"], ["description", "Placeat nulla nihil facilis."], ["date", "2020-05-06 18:27:25.643256"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.645771"], ["updated_at", "2020-05-05 18:27:25.645771"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut cupiditate nesciunt libero?"], ["description", "Ut quia sapiente cumque."], ["date", "2020-05-06 18:27:25.648548"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.649900"], ["updated_at", "2020-05-05 18:27:25.649900"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis cum quos libero?"], ["description", "Voluptas odit perferendis vitae."], ["date", "2020-05-06 18:27:25.652388"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.654990"], ["updated_at", "2020-05-05 18:27:25.654990"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores iure ut dicta?"], ["description", "In quos aut dolore."], ["date", "2020-05-06 18:27:25.656629"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.657904"], ["updated_at", "2020-05-05 18:27:25.657904"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In inventore et esse?"], ["description", "Modi minima et laudantium."], ["date", "2020-05-06 18:27:25.660037"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.661243"], ["updated_at", "2020-05-05 18:27:25.661243"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur quam dolor dolores?"], ["description", "Sed et rerum similique."], ["date", "2020-05-06 18:27:25.664499"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.667362"], ["updated_at", "2020-05-05 18:27:25.667362"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A qui voluptas repellat?"], ["description", "Fugit illo cum voluptate."], ["date", "2020-05-06 18:27:25.669719"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.671103"], ["updated_at", "2020-05-05 18:27:25.671103"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione et omnis dolorem?"], ["description", "Reiciendis aut soluta tenetur."], ["date", "2020-05-06 18:27:25.673955"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.675847"], ["updated_at", "2020-05-05 18:27:25.675847"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi explicabo amet in?"], ["description", "Vel et rerum nulla."], ["date", "2020-05-06 18:27:25.677853"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.678880"], ["updated_at", "2020-05-05 18:27:25.678880"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:27:25 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.4ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.98ms) +Completed 200 OK in 6ms (Views: 1.8ms | ActiveRecord: 0.5ms | Allocations: 1086) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (2.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kelsie Dietrich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gmNTXcXVQjy0ensej88O..uxiny2HRZrmw5Ak0bxFH41yyhOZpLm6"], ["created_at", "2020-05-05 18:27:25.700553"], ["updated_at", "2020-05-05 18:27:25.700553"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vitae"], ["description", "Ratione sit repellendus neque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:25.707046"], ["updated_at", "2020-05-05 18:27:25.707046"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est laborum voluptatibus quis?"], ["description", "Deleniti qui sint cumque."], ["date", "2020-05-06 18:27:25.716095"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.717572"], ["updated_at", "2020-05-05 18:27:25.717572"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque tempore voluptas sed?"], ["description", "Aut labore ea sit."], ["date", "2020-05-06 18:27:25.719594"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.721111"], ["updated_at", "2020-05-05 18:27:25.721111"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quia ut omnis?"], ["description", "Eos distinctio eius et."], ["date", "2020-05-06 18:27:25.722746"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.724142"], ["updated_at", "2020-05-05 18:27:25.724142"]] +  (0.4ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At possimus officiis tenetur?"], ["description", "Velit tenetur dolorem voluptatibus."], ["date", "2020-05-06 18:27:25.729434"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.731130"], ["updated_at", "2020-05-05 18:27:25.731130"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam eligendi omnis optio?"], ["description", "Natus porro nihil incidunt."], ["date", "2020-05-06 18:27:25.732441"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.733224"], ["updated_at", "2020-05-05 18:27:25.733224"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa quo dolore eveniet?"], ["description", "Aperiam molestiae qui rerum."], ["date", "2020-05-06 18:27:25.734319"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.735013"], ["updated_at", "2020-05-05 18:27:25.735013"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo hic voluptas eos?"], ["description", "Quibusdam velit ut in."], ["date", "2020-05-06 18:27:25.736188"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.736882"], ["updated_at", "2020-05-05 18:27:25.736882"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi ut culpa et?"], ["description", "Aut nostrum vel fuga."], ["date", "2020-05-06 18:27:25.737966"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.738678"], ["updated_at", "2020-05-05 18:27:25.738678"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias aliquid ea porro?"], ["description", "Id asperiores consectetur consequatur."], ["date", "2020-05-06 18:27:25.739773"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.740490"], ["updated_at", "2020-05-05 18:27:25.740490"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit id dolores dolor?"], ["description", "Asperiores neque rerum occaecati."], ["date", "2020-05-06 18:27:25.742957"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.744359"], ["updated_at", "2020-05-05 18:27:25.744359"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore enim nihil consequatur?"], ["description", "In voluptatibus molestiae sit."], ["date", "2020-05-06 18:27:25.746130"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.747097"], ["updated_at", "2020-05-05 18:27:25.747097"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui enim nesciunt unde?"], ["description", "Molestiae repudiandae quo sint."], ["date", "2020-05-06 18:27:25.748356"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.749054"], ["updated_at", "2020-05-05 18:27:25.749054"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non et quas voluptate?"], ["description", "Non et animi autem."], ["date", "2020-05-06 18:27:25.750227"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.751058"], ["updated_at", "2020-05-05 18:27:25.751058"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe vel quos unde?"], ["description", "Repudiandae ab laborum modi."], ["date", "2020-05-06 18:27:25.752392"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.753129"], ["updated_at", "2020-05-05 18:27:25.753129"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias facilis sunt officia?"], ["description", "Soluta consequatur earum consequatur."], ["date", "2020-05-06 18:27:25.754321"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.755032"], ["updated_at", "2020-05-05 18:27:25.755032"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore blanditiis error voluptatem?"], ["description", "Qui nam pariatur beatae."], ["date", "2020-05-06 18:27:25.756181"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.756864"], ["updated_at", "2020-05-05 18:27:25.756864"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur ut rem amet?"], ["description", "Sed nulla vel voluptatem."], ["date", "2020-05-06 18:27:25.757927"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.758839"], ["updated_at", "2020-05-05 18:27:25.758839"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime aut earum ad?"], ["description", "Non aut magni voluptas."], ["date", "2020-05-06 18:27:25.760441"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.761334"], ["updated_at", "2020-05-05 18:27:25.761334"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Culpa corporis et voluptas?"], ["description", "Adipisci tempore dolor eos."], ["date", "2020-05-06 18:27:25.762459"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.763149"], ["updated_at", "2020-05-05 18:27:25.763149"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis aut dolorem ut?"], ["description", "Magnam ea saepe dolor."], ["date", "2020-05-06 18:27:25.764908"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.766083"], ["updated_at", "2020-05-05 18:27:25.766083"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:27:25 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.55ms) +Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.2ms | Allocations: 1058) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Olimpia Hayes DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$AmNKl2gNRWI2snbagr4kfeUhetR4BxfA8HhrTPxq4B3quLvNIxtWK"], ["created_at", "2020-05-05 18:27:25.782699"], ["updated_at", "2020-05-05 18:27:25.782699"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusamus"], ["description", "Consequatur facilis harum ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:25.786476"], ["updated_at", "2020-05-05 18:27:25.786476"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita ducimus dolores adipisci?"], ["description", "Voluptas aut omnis ut."], ["date", "2020-05-06 18:27:25.788740"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.789774"], ["updated_at", "2020-05-05 18:27:25.789774"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et sed earum in?"], ["description", "Esse pariatur excepturi accusamus."], ["date", "2020-05-06 18:27:25.791306"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.792664"], ["updated_at", "2020-05-05 18:27:25.792664"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum aperiam impedit quis?"], ["description", "Magni voluptas rem autem."], ["date", "2020-05-06 18:27:25.794179"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.794973"], ["updated_at", "2020-05-05 18:27:25.794973"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis adipisci at accusamus?"], ["description", "Numquam soluta repudiandae ab."], ["date", "2020-05-06 18:27:25.796111"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.796771"], ["updated_at", "2020-05-05 18:27:25.796771"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quibusdam harum rerum asperiores?"], ["description", "Nihil qui expedita voluptas."], ["date", "2020-05-06 18:27:25.797861"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.798537"], ["updated_at", "2020-05-05 18:27:25.798537"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur voluptas dolore eaque?"], ["description", "Quis perferendis in suscipit."], ["date", "2020-05-06 18:27:25.799638"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.800380"], ["updated_at", "2020-05-05 18:27:25.800380"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum et repellendus repellat?"], ["description", "Omnis asperiores iure autem."], ["date", "2020-05-06 18:27:25.801576"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.802277"], ["updated_at", "2020-05-05 18:27:25.802277"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et sint atque quos?"], ["description", "Rem accusamus in suscipit."], ["date", "2020-05-06 18:27:25.803474"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.804449"], ["updated_at", "2020-05-05 18:27:25.804449"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel maxime sapiente id?"], ["description", "Dolor dolor sit fugiat."], ["date", "2020-05-06 18:27:25.806483"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.808014"], ["updated_at", "2020-05-05 18:27:25.808014"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil reprehenderit ut ducimus?"], ["description", "Dolores voluptatibus tempore est."], ["date", "2020-05-06 18:27:25.811162"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.812146"], ["updated_at", "2020-05-05 18:27:25.812146"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam recusandae consequatur repellendus?"], ["description", "Et est quia expedita."], ["date", "2020-05-06 18:27:25.813625"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.814406"], ["updated_at", "2020-05-05 18:27:25.814406"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In velit voluptates inventore?"], ["description", "Veniam qui et assumenda."], ["date", "2020-05-06 18:27:25.815585"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.816300"], ["updated_at", "2020-05-05 18:27:25.816300"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse corrupti fugit eos?"], ["description", "Ad delectus earum perferendis."], ["date", "2020-05-06 18:27:25.817488"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.818157"], ["updated_at", "2020-05-05 18:27:25.818157"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui quas ab quia?"], ["description", "Omnis rerum vel corporis."], ["date", "2020-05-06 18:27:25.819337"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.820024"], ["updated_at", "2020-05-05 18:27:25.820024"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora est dolorem quam?"], ["description", "Culpa consectetur doloremque nulla."], ["date", "2020-05-06 18:27:25.821257"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.822041"], ["updated_at", "2020-05-05 18:27:25.822041"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam eaque consequatur pariatur?"], ["description", "Recusandae ut inventore architecto."], ["date", "2020-05-06 18:27:25.823357"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.824621"], ["updated_at", "2020-05-05 18:27:25.824621"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et voluptatem vel architecto?"], ["description", "Non natus asperiores explicabo."], ["date", "2020-05-06 18:27:25.827726"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.828927"], ["updated_at", "2020-05-05 18:27:25.828927"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe dolor nesciunt iure?"], ["description", "Maxime hic aut qui."], ["date", "2020-05-06 18:27:25.830242"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.831022"], ["updated_at", "2020-05-05 18:27:25.831022"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam maxime labore dolorem?"], ["description", "Culpa hic at nulla."], ["date", "2020-05-06 18:27:25.832124"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.832831"], ["updated_at", "2020-05-05 18:27:25.832831"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut laboriosam quibusdam nisi?"], ["description", "Qui ipsum dolor expedita."], ["date", "2020-05-06 18:27:25.833862"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.834532"], ["updated_at", "2020-05-05 18:27:25.834532"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:27:25 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 884) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mauro Mertz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7pQ6Sg0pvj2VQIIW6/jhwuDj6XJ/sbYuS0Hf9D7AcBEMiAuFLLnJ."], ["created_at", "2020-05-05 18:27:25.850629"], ["updated_at", "2020-05-05 18:27:25.850629"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "explicabo"], ["description", "Vel sed eligendi ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:25.853557"], ["updated_at", "2020-05-05 18:27:25.853557"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis quibusdam totam fugit?"], ["description", "Accusantium dolorem dolorem tempore."], ["date", "2020-05-06 18:27:25.854985"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.855915"], ["updated_at", "2020-05-05 18:27:25.855915"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto eos praesentium amet?"], ["description", "Sunt corrupti sit vel."], ["date", "2020-05-06 18:27:25.857195"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.858403"], ["updated_at", "2020-05-05 18:27:25.858403"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et sunt ut id?"], ["description", "Maxime ullam esse consectetur."], ["date", "2020-05-06 18:27:25.860083"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.860981"], ["updated_at", "2020-05-05 18:27:25.860981"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed sunt hic voluptate?"], ["description", "Eius ut iure consectetur."], ["date", "2020-05-06 18:27:25.862303"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.863036"], ["updated_at", "2020-05-05 18:27:25.863036"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo necessitatibus sunt qui?"], ["description", "Ut quos omnis voluptas."], ["date", "2020-05-06 18:27:25.864201"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.865379"], ["updated_at", "2020-05-05 18:27:25.865379"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus laudantium exercitationem aut?"], ["description", "Architecto quia iusto magni."], ["date", "2020-05-06 18:27:25.867055"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.868108"], ["updated_at", "2020-05-05 18:27:25.868108"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut nisi quisquam velit?"], ["description", "Et qui facere veritatis."], ["date", "2020-05-06 18:27:25.869911"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.870794"], ["updated_at", "2020-05-05 18:27:25.870794"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam sint mollitia porro?"], ["description", "Soluta non quam sapiente."], ["date", "2020-05-06 18:27:25.872047"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.872770"], ["updated_at", "2020-05-05 18:27:25.872770"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut aut hic molestiae?"], ["description", "Quia sed itaque et."], ["date", "2020-05-06 18:27:25.874004"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.874816"], ["updated_at", "2020-05-05 18:27:25.874816"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut qui est deleniti?"], ["description", "Quibusdam tempore perferendis temporibus."], ["date", "2020-05-06 18:27:25.877396"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.878344"], ["updated_at", "2020-05-05 18:27:25.878344"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur laudantium doloremque deleniti?"], ["description", "Et praesentium tempora tenetur."], ["date", "2020-05-06 18:27:25.879673"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.880435"], ["updated_at", "2020-05-05 18:27:25.880435"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et ipsa qui consectetur?"], ["description", "Vitae non repudiandae maxime."], ["date", "2020-05-06 18:27:25.881812"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.882613"], ["updated_at", "2020-05-05 18:27:25.882613"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse vel assumenda reprehenderit?"], ["description", "Quia ut pariatur ipsam."], ["date", "2020-05-06 18:27:25.883763"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.884603"], ["updated_at", "2020-05-05 18:27:25.884603"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum vel est ipsum?"], ["description", "Qui voluptates dolor earum."], ["date", "2020-05-06 18:27:25.886720"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.887718"], ["updated_at", "2020-05-05 18:27:25.887718"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque id at rem?"], ["description", "Incidunt cumque et iure."], ["date", "2020-05-06 18:27:25.889121"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.889860"], ["updated_at", "2020-05-05 18:27:25.889860"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia modi non inventore?"], ["description", "Est sequi voluptatem velit."], ["date", "2020-05-06 18:27:25.891260"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.892466"], ["updated_at", "2020-05-05 18:27:25.892466"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Unde sed optio ea?"], ["description", "Aut enim pariatur commodi."], ["date", "2020-05-06 18:27:25.893863"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.894635"], ["updated_at", "2020-05-05 18:27:25.894635"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil id nisi eum?"], ["description", "Dolorem consectetur aspernatur unde."], ["date", "2020-05-06 18:27:25.896056"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.896888"], ["updated_at", "2020-05-05 18:27:25.896888"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas et omnis doloribus?"], ["description", "Sed perspiciatis molestias omnis."], ["date", "2020-05-06 18:27:25.898265"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.899184"], ["updated_at", "2020-05-05 18:27:25.899184"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam corrupti repellat ex?"], ["description", "Incidunt accusantium consectetur vitae."], ["date", "2020-05-06 18:27:25.900768"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.901739"], ["updated_at", "2020-05-05 18:27:25.901739"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:27:25 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 404 Not Found in 3ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 867) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Clemente Reinger III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pAJcc89pE.biHhI78h7gueSsbDMgFUqB9GadObRs7VDKUMM8twQ8K"], ["created_at", "2020-05-05 18:27:25.919546"], ["updated_at", "2020-05-05 18:27:25.919546"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Eum tempore nisi voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:25.923292"], ["updated_at", "2020-05-05 18:27:25.923292"], ["created_by", "1"]] +  (0.4ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque ipsum iste quaerat?"], ["description", "Fugiat eum facere voluptatum."], ["date", "2020-05-06 18:27:25.927286"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.928651"], ["updated_at", "2020-05-05 18:27:25.928651"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam reprehenderit quo ipsam?"], ["description", "Iusto recusandae doloremque ipsam."], ["date", "2020-05-06 18:27:25.930795"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.931750"], ["updated_at", "2020-05-05 18:27:25.931750"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt commodi praesentium fugit?"], ["description", "Quod ea et sunt."], ["date", "2020-05-06 18:27:25.933013"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.933711"], ["updated_at", "2020-05-05 18:27:25.933711"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et fugit quasi dicta?"], ["description", "Earum voluptatibus cupiditate tempore."], ["date", "2020-05-06 18:27:25.934786"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.935520"], ["updated_at", "2020-05-05 18:27:25.935520"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia est in cum?"], ["description", "Assumenda voluptates et in."], ["date", "2020-05-06 18:27:25.936721"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.937396"], ["updated_at", "2020-05-05 18:27:25.937396"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et unde fugiat natus?"], ["description", "Earum officia molestiae perspiciatis."], ["date", "2020-05-06 18:27:25.938485"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.939146"], ["updated_at", "2020-05-05 18:27:25.939146"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem sint dolore eveniet?"], ["description", "Ab dolore voluptatum rem."], ["date", "2020-05-06 18:27:25.940231"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.940952"], ["updated_at", "2020-05-05 18:27:25.940952"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo ullam ipsam dicta?"], ["description", "Occaecati corrupti magnam excepturi."], ["date", "2020-05-06 18:27:25.942141"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.943259"], ["updated_at", "2020-05-05 18:27:25.943259"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem id similique omnis?"], ["description", "Aspernatur debitis accusamus quidem."], ["date", "2020-05-06 18:27:25.945162"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.947021"], ["updated_at", "2020-05-05 18:27:25.947021"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia aspernatur nam voluptatem?"], ["description", "Architecto eius provident animi."], ["date", "2020-05-06 18:27:25.949888"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.950854"], ["updated_at", "2020-05-05 18:27:25.950854"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem quis dolorem totam?"], ["description", "Dolor eligendi eveniet facere."], ["date", "2020-05-06 18:27:25.952331"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.953140"], ["updated_at", "2020-05-05 18:27:25.953140"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint nulla necessitatibus et?"], ["description", "Vel saepe velit aut."], ["date", "2020-05-06 18:27:25.954310"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.954986"], ["updated_at", "2020-05-05 18:27:25.954986"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut sunt ut odio?"], ["description", "Corporis aut ea deleniti."], ["date", "2020-05-06 18:27:25.956088"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.956761"], ["updated_at", "2020-05-05 18:27:25.956761"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non vero nihil praesentium?"], ["description", "Maiores accusamus facere incidunt."], ["date", "2020-05-06 18:27:25.958839"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.959896"], ["updated_at", "2020-05-05 18:27:25.959896"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure nesciunt odit quasi?"], ["description", "Mollitia neque natus porro."], ["date", "2020-05-06 18:27:25.961376"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.962104"], ["updated_at", "2020-05-05 18:27:25.962104"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam vero et modi?"], ["description", "Sunt ut culpa nihil."], ["date", "2020-05-06 18:27:25.963234"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.963907"], ["updated_at", "2020-05-05 18:27:25.963907"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime modi dolore architecto?"], ["description", "Qui aut ipsa quas."], ["date", "2020-05-06 18:27:25.965305"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.966534"], ["updated_at", "2020-05-05 18:27:25.966534"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo esse perferendis enim?"], ["description", "Eos aut quo vel."], ["date", "2020-05-06 18:27:25.968073"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.968889"], ["updated_at", "2020-05-05 18:27:25.968889"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione qui aut unde?"], ["description", "Rerum quaerat saepe consequatur."], ["date", "2020-05-06 18:27:25.970092"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.970807"], ["updated_at", "2020-05-05 18:27:25.970807"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur quia laborum quae?"], ["description", "Et velit distinctio exercitationem."], ["date", "2020-05-06 18:27:25.971973"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.972710"], ["updated_at", "2020-05-05 18:27:25.972710"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:27:25 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"title"=>"Visit Narnia", "description"=>"false", "date"=>"2020-05-06 15:27:25 -0300", "link"=>"https://zoom.com/fakelink", "meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Visit Narnia"], ["description", "false"], ["date", "2020-05-06 18:27:25"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:25.993333"], ["updated_at", "2020-05-05 18:27:25.993333"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.52ms) +Completed 201 Created in 6ms (Views: 1.2ms | ActiveRecord: 0.6ms | Allocations: 1699) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Yee Terry V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HHnv1KzxSt5djiHvayonDe2KfUe2lBg1QlztNmr7omTT6Ts6z71wa"], ["created_at", "2020-05-05 18:27:26.007257"], ["updated_at", "2020-05-05 18:27:26.007257"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugiat"], ["description", "Ut itaque consequatur voluptates."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.012956"], ["updated_at", "2020-05-05 18:27:26.012956"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem quidem aperiam quo?"], ["description", "Maxime sit sed quo."], ["date", "2020-05-06 18:27:26.015076"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.016095"], ["updated_at", "2020-05-05 18:27:26.016095"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minus minima quasi voluptate?"], ["description", "Dicta quia dolorem dolorum."], ["date", "2020-05-06 18:27:26.017401"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.018114"], ["updated_at", "2020-05-05 18:27:26.018114"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor voluptate rerum ipsum?"], ["description", "Possimus aut iusto magnam."], ["date", "2020-05-06 18:27:26.019216"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.019896"], ["updated_at", "2020-05-05 18:27:26.019896"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias dolor rem repudiandae?"], ["description", "Quo non saepe architecto."], ["date", "2020-05-06 18:27:26.020965"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.021696"], ["updated_at", "2020-05-05 18:27:26.021696"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere excepturi nisi eos?"], ["description", "At soluta dolorum vel."], ["date", "2020-05-06 18:27:26.022936"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.023619"], ["updated_at", "2020-05-05 18:27:26.023619"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea provident beatae corporis?"], ["description", "Doloremque unde blanditiis voluptas."], ["date", "2020-05-06 18:27:26.024664"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.025924"], ["updated_at", "2020-05-05 18:27:26.025924"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi officiis aspernatur molestias?"], ["description", "Quae omnis commodi unde."], ["date", "2020-05-06 18:27:26.028508"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.029869"], ["updated_at", "2020-05-05 18:27:26.029869"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem aliquid itaque voluptas?"], ["description", "Vel iure eligendi aut."], ["date", "2020-05-06 18:27:26.031574"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.032501"], ["updated_at", "2020-05-05 18:27:26.032501"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et repudiandae sit qui?"], ["description", "Sed consequuntur eligendi qui."], ["date", "2020-05-06 18:27:26.033700"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.034452"], ["updated_at", "2020-05-05 18:27:26.034452"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est et voluptas occaecati?"], ["description", "Qui velit voluptatem sed."], ["date", "2020-05-06 18:27:26.036263"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.037046"], ["updated_at", "2020-05-05 18:27:26.037046"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo eos occaecati fugiat?"], ["description", "Amet consequatur in nostrum."], ["date", "2020-05-06 18:27:26.038188"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.038865"], ["updated_at", "2020-05-05 18:27:26.038865"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil quia nihil nisi?"], ["description", "Nulla rerum qui molestias."], ["date", "2020-05-06 18:27:26.040105"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.040842"], ["updated_at", "2020-05-05 18:27:26.040842"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui rerum et minus?"], ["description", "Molestiae repellat voluptatibus possimus."], ["date", "2020-05-06 18:27:26.042101"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.043230"], ["updated_at", "2020-05-05 18:27:26.043230"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum culpa illo nihil?"], ["description", "Minima nihil a natus."], ["date", "2020-05-06 18:27:26.044864"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.045964"], ["updated_at", "2020-05-05 18:27:26.045964"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum dolorem et molestias?"], ["description", "Est qui earum deleniti."], ["date", "2020-05-06 18:27:26.047836"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.048739"], ["updated_at", "2020-05-05 18:27:26.048739"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo corporis aut eum?"], ["description", "Veritatis ab nihil dolorem."], ["date", "2020-05-06 18:27:26.049950"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.050619"], ["updated_at", "2020-05-05 18:27:26.050619"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe nam est rerum?"], ["description", "Ut explicabo atque nihil."], ["date", "2020-05-06 18:27:26.052033"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.052816"], ["updated_at", "2020-05-05 18:27:26.052816"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit officia ullam et?"], ["description", "Ut nulla facilis consequuntur."], ["date", "2020-05-06 18:27:26.053986"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.054661"], ["updated_at", "2020-05-05 18:27:26.054661"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur ut adipisci consectetur?"], ["description", "Iusto quibusdam aliquam et."], ["date", "2020-05-06 18:27:26.055855"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.056523"], ["updated_at", "2020-05-05 18:27:26.056523"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae vel soluta magni?"], ["description", "Et nulla voluptates eum."], ["date", "2020-05-06 18:27:26.057738"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.058464"], ["updated_at", "2020-05-05 18:27:26.058464"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:27:26 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 3010) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marquis Ledner DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$P7RAFmwxgrn6hhjONW0eLOI4kVAkBzIZlC7KLkCbGu/om4Ek8edxe"], ["created_at", "2020-05-05 18:27:26.078457"], ["updated_at", "2020-05-05 18:27:26.078457"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ab"], ["description", "Quae eos pariatur unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.081375"], ["updated_at", "2020-05-05 18:27:26.081375"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex vel non vel?"], ["description", "Enim repellat incidunt aliquam."], ["date", "2020-05-06 18:27:26.083028"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.083981"], ["updated_at", "2020-05-05 18:27:26.083981"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Delectus et quam vel?"], ["description", "Sit expedita vel voluptatum."], ["date", "2020-05-06 18:27:26.085593"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.086937"], ["updated_at", "2020-05-05 18:27:26.086937"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur aperiam atque excepturi?"], ["description", "Soluta nesciunt ut praesentium."], ["date", "2020-05-06 18:27:26.088771"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.089692"], ["updated_at", "2020-05-05 18:27:26.089692"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit dolor velit molestias?"], ["description", "Mollitia sapiente enim rerum."], ["date", "2020-05-06 18:27:26.091510"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.093156"], ["updated_at", "2020-05-05 18:27:26.093156"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore est perspiciatis aliquid?"], ["description", "Quos excepturi fugit architecto."], ["date", "2020-05-06 18:27:26.094807"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.096742"], ["updated_at", "2020-05-05 18:27:26.096742"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia fugit delectus ducimus?"], ["description", "Magnam beatae debitis sunt."], ["date", "2020-05-06 18:27:26.099205"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.100540"], ["updated_at", "2020-05-05 18:27:26.100540"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est et blanditiis velit?"], ["description", "Perferendis numquam deleniti provident."], ["date", "2020-05-06 18:27:26.102760"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.103676"], ["updated_at", "2020-05-05 18:27:26.103676"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et voluptatem dolorum sequi?"], ["description", "Qui doloremque magni molestiae."], ["date", "2020-05-06 18:27:26.104850"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.105625"], ["updated_at", "2020-05-05 18:27:26.105625"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo atque odio molestiae?"], ["description", "Et repellendus sapiente aspernatur."], ["date", "2020-05-06 18:27:26.108823"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.111157"], ["updated_at", "2020-05-05 18:27:26.111157"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet vero aut omnis?"], ["description", "Voluptate deserunt laboriosam cum."], ["date", "2020-05-06 18:27:26.113437"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.114339"], ["updated_at", "2020-05-05 18:27:26.114339"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum modi aut dolorum?"], ["description", "Occaecati aspernatur debitis quas."], ["date", "2020-05-06 18:27:26.115612"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.116305"], ["updated_at", "2020-05-05 18:27:26.116305"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis aperiam nesciunt quod?"], ["description", "Enim corrupti non laudantium."], ["date", "2020-05-06 18:27:26.117449"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.118126"], ["updated_at", "2020-05-05 18:27:26.118126"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime laboriosam sint ducimus?"], ["description", "Quo cum totam sequi."], ["date", "2020-05-06 18:27:26.119215"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.119895"], ["updated_at", "2020-05-05 18:27:26.119895"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis dolores quo eum?"], ["description", "Est minima eaque dolorem."], ["date", "2020-05-06 18:27:26.121292"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.122086"], ["updated_at", "2020-05-05 18:27:26.122086"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia vel labore molestiae?"], ["description", "Reprehenderit minus atque quibusdam."], ["date", "2020-05-06 18:27:26.123313"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.124057"], ["updated_at", "2020-05-05 18:27:26.124057"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam hic eligendi natus?"], ["description", "Rerum non corrupti nulla."], ["date", "2020-05-06 18:27:26.125309"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.126283"], ["updated_at", "2020-05-05 18:27:26.126283"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda asperiores aut quia?"], ["description", "Omnis quis ut aspernatur."], ["date", "2020-05-06 18:27:26.128497"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.129505"], ["updated_at", "2020-05-05 18:27:26.129505"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus dolor repudiandae omnis?"], ["description", "Dolores dolor quia ut."], ["date", "2020-05-06 18:27:26.130848"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.131627"], ["updated_at", "2020-05-05 18:27:26.131627"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente consequatur fugit nulla?"], ["description", "Quas ex optio perferendis."], ["date", "2020-05-06 18:27:26.132849"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.133588"], ["updated_at", "2020-05-05 18:27:26.133588"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia sapiente nisi fugit?"], ["description", "Culpa modi est hic."], ["date", "2020-05-06 18:27:26.134814"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.135560"], ["updated_at", "2020-05-05 18:27:26.135560"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:27:26 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 422 Unprocessable Entity in 4ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 2705) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (23.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Josiah Hansen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$q8bToPEu6ib/RMzolSfW9u6tnms4xx6CC3JnSoh3kVOFN8TBnChSy"], ["created_at", "2020-05-05 18:27:26.171099"], ["updated_at", "2020-05-05 18:27:26.171099"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Quae dolor voluptatum et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.174050"], ["updated_at", "2020-05-05 18:27:26.174050"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut qui laudantium est?"], ["description", "Cupiditate optio magni quibusdam."], ["date", "2020-05-06 18:27:26.190677"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.192411"], ["updated_at", "2020-05-05 18:27:26.192411"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto vero enim adipisci?"], ["description", "Suscipit eos nihil expedita."], ["date", "2020-05-06 18:27:26.194077"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.195077"], ["updated_at", "2020-05-05 18:27:26.195077"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi voluptatem eos et?"], ["description", "Earum soluta quia aut."], ["date", "2020-05-06 18:27:26.196548"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.197565"], ["updated_at", "2020-05-05 18:27:26.197565"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe sed facere est?"], ["description", "Ipsum omnis reprehenderit sunt."], ["date", "2020-05-06 18:27:26.199184"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.200410"], ["updated_at", "2020-05-05 18:27:26.200410"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam recusandae magni cumque?"], ["description", "In sit at quisquam."], ["date", "2020-05-06 18:27:26.202410"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.204307"], ["updated_at", "2020-05-05 18:27:26.204307"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit quis ea dignissimos?"], ["description", "Doloribus qui incidunt hic."], ["date", "2020-05-06 18:27:26.207860"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.212147"], ["updated_at", "2020-05-05 18:27:26.212147"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut animi ad accusamus?"], ["description", "Sapiente quidem libero quis."], ["date", "2020-05-06 18:27:26.213723"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.214651"], ["updated_at", "2020-05-05 18:27:26.214651"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos in ut blanditiis?"], ["description", "Veritatis voluptatem voluptatem minima."], ["date", "2020-05-06 18:27:26.215956"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.216751"], ["updated_at", "2020-05-05 18:27:26.216751"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut et magnam saepe?"], ["description", "Praesentium quis officiis corrupti."], ["date", "2020-05-06 18:27:26.218158"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.219282"], ["updated_at", "2020-05-05 18:27:26.219282"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae dolorem at eveniet?"], ["description", "Molestiae atque occaecati unde."], ["date", "2020-05-06 18:27:26.221792"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.222903"], ["updated_at", "2020-05-05 18:27:26.222903"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut aut delectus totam?"], ["description", "Incidunt porro ipsum dicta."], ["date", "2020-05-06 18:27:26.227567"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.230303"], ["updated_at", "2020-05-05 18:27:26.230303"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit ex nobis sunt?"], ["description", "Ut non nihil commodi."], ["date", "2020-05-06 18:27:26.234439"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.235729"], ["updated_at", "2020-05-05 18:27:26.235729"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et laborum sequi dolorum?"], ["description", "Voluptates corporis dolorem modi."], ["date", "2020-05-06 18:27:26.237309"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.238305"], ["updated_at", "2020-05-05 18:27:26.238305"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor et numquam tempore?"], ["description", "Vitae qui blanditiis similique."], ["date", "2020-05-06 18:27:26.239881"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.240920"], ["updated_at", "2020-05-05 18:27:26.240920"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem aspernatur impedit explicabo?"], ["description", "Molestiae earum quo blanditiis."], ["date", "2020-05-06 18:27:26.242985"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.244964"], ["updated_at", "2020-05-05 18:27:26.244964"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui facere ut possimus?"], ["description", "Doloremque veritatis voluptatum voluptatibus."], ["date", "2020-05-06 18:27:26.248819"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.251000"], ["updated_at", "2020-05-05 18:27:26.251000"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut aperiam consequatur provident?"], ["description", "Dicta harum aut voluptatibus."], ["date", "2020-05-06 18:27:26.253023"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.253974"], ["updated_at", "2020-05-05 18:27:26.253974"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea praesentium et id?"], ["description", "Aut dolores excepturi est."], ["date", "2020-05-06 18:27:26.255505"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.256435"], ["updated_at", "2020-05-05 18:27:26.256435"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non perferendis pariatur quo?"], ["description", "Dolores sunt pariatur sit."], ["date", "2020-05-06 18:27:26.258163"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.259861"], ["updated_at", "2020-05-05 18:27:26.259861"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem quod animi est?"], ["description", "Mollitia consequuntur atque aut."], ["date", "2020-05-06 18:27:26.261833"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.263078"], ["updated_at", "2020-05-05 18:27:26.263078"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:27:26 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.2ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:27:26.270909"], ["id", 1]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 7ms (ActiveRecord: 0.9ms | Allocations: 1396) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Glynda Kovacek"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$u/oPAtvjIVH9BHabU0Sxwe8E7M4NsLl4kckbfBxZuRCRhPCA.0xNi"], ["created_at", "2020-05-05 18:27:26.288225"], ["updated_at", "2020-05-05 18:27:26.288225"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Voluptatem corrupti maxime repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.293469"], ["updated_at", "2020-05-05 18:27:26.293469"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio iure rerum dolores?"], ["description", "Delectus sed voluptatum adipisci."], ["date", "2020-05-06 18:27:26.295870"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.296967"], ["updated_at", "2020-05-05 18:27:26.296967"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum deleniti numquam aut?"], ["description", "Ex id officia ut."], ["date", "2020-05-06 18:27:26.298507"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.299518"], ["updated_at", "2020-05-05 18:27:26.299518"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error blanditiis reiciendis consequatur?"], ["description", "Aut assumenda est atque."], ["date", "2020-05-06 18:27:26.301161"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.302186"], ["updated_at", "2020-05-05 18:27:26.302186"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam sint aliquid aliquam?"], ["description", "Molestiae deserunt at nisi."], ["date", "2020-05-06 18:27:26.304154"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.306607"], ["updated_at", "2020-05-05 18:27:26.306607"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.4ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga qui animi neque?"], ["description", "Voluptas eveniet sunt atque."], ["date", "2020-05-06 18:27:26.312380"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.315746"], ["updated_at", "2020-05-05 18:27:26.315746"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim sapiente quia quae?"], ["description", "Et mollitia quaerat perspiciatis."], ["date", "2020-05-06 18:27:26.317674"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.318721"], ["updated_at", "2020-05-05 18:27:26.318721"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est velit dolorem itaque?"], ["description", "Fuga quam possimus minus."], ["date", "2020-05-06 18:27:26.320223"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.321275"], ["updated_at", "2020-05-05 18:27:26.321275"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur eaque ad accusantium?"], ["description", "Culpa adipisci sed atque."], ["date", "2020-05-06 18:27:26.322740"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.323676"], ["updated_at", "2020-05-05 18:27:26.323676"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis sed quam ullam?"], ["description", "Dolor occaecati qui voluptatum."], ["date", "2020-05-06 18:27:26.328724"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.331735"], ["updated_at", "2020-05-05 18:27:26.331735"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos aut commodi facere?"], ["description", "Vel voluptatem a at."], ["date", "2020-05-06 18:27:26.334707"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.337554"], ["updated_at", "2020-05-05 18:27:26.337554"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita omnis necessitatibus voluptates?"], ["description", "Aut et cumque numquam."], ["date", "2020-05-06 18:27:26.339967"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.341064"], ["updated_at", "2020-05-05 18:27:26.341064"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim quidem officiis et?"], ["description", "Consequuntur earum vel consequatur."], ["date", "2020-05-06 18:27:26.343762"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.344976"], ["updated_at", "2020-05-05 18:27:26.344976"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi quibusdam repudiandae eos?"], ["description", "Dolores qui sint minus."], ["date", "2020-05-06 18:27:26.346906"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.349295"], ["updated_at", "2020-05-05 18:27:26.349295"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit deleniti omnis ex?"], ["description", "Ipsa illo consequatur fugit."], ["date", "2020-05-06 18:27:26.352038"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.353186"], ["updated_at", "2020-05-05 18:27:26.353186"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad minus nihil iste?"], ["description", "Non molestiae nihil laborum."], ["date", "2020-05-06 18:27:26.355007"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.356091"], ["updated_at", "2020-05-05 18:27:26.356091"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum non inventore dolor?"], ["description", "Velit nemo beatae harum."], ["date", "2020-05-06 18:27:26.357614"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.358474"], ["updated_at", "2020-05-05 18:27:26.358474"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit illo et nihil?"], ["description", "Est nulla quis debitis."], ["date", "2020-05-06 18:27:26.360313"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.361840"], ["updated_at", "2020-05-05 18:27:26.361840"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis porro atque sed?"], ["description", "Illo sapiente corrupti sunt."], ["date", "2020-05-06 18:27:26.363689"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.364741"], ["updated_at", "2020-05-05 18:27:26.364741"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores culpa esse quibusdam?"], ["description", "Voluptatem nemo et reiciendis."], ["date", "2020-05-06 18:27:26.368205"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.371919"], ["updated_at", "2020-05-05 18:27:26.371919"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est voluptatibus nisi at?"], ["description", "Sapiente enim quisquam quis."], ["date", "2020-05-06 18:27:26.375980"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.378271"], ["updated_at", "2020-05-05 18:27:26.378271"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:27:26 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.2ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:27:26.384239"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 5ms (ActiveRecord: 0.6ms | Allocations: 1321) + Meeting Load (0.6ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (1.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kimbery Littel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jfaBqg.ioSsEGpIICgm3pezQpAqAti5naJ4Qop3qpD3u/XlWtIMfO"], ["created_at", "2020-05-05 18:27:26.407212"], ["updated_at", "2020-05-05 18:27:26.407212"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Dolorum non esse nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.413961"], ["updated_at", "2020-05-05 18:27:26.413961"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut perspiciatis debitis nulla?"], ["description", "Ut nihil vitae voluptas."], ["date", "2020-05-06 18:27:26.417054"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.418341"], ["updated_at", "2020-05-05 18:27:26.418341"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum consequatur doloribus quasi?"], ["description", "Molestias fuga ipsam ut."], ["date", "2020-05-06 18:27:26.420136"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.420978"], ["updated_at", "2020-05-05 18:27:26.420978"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et fugiat molestiae reiciendis?"], ["description", "Maxime praesentium accusamus aspernatur."], ["date", "2020-05-06 18:27:26.422361"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.423255"], ["updated_at", "2020-05-05 18:27:26.423255"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et aut sed aut?"], ["description", "Magni odio assumenda fugiat."], ["date", "2020-05-06 18:27:26.425713"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.426764"], ["updated_at", "2020-05-05 18:27:26.426764"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo et explicabo et?"], ["description", "Voluptas modi quas qui."], ["date", "2020-05-06 18:27:26.428756"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.430250"], ["updated_at", "2020-05-05 18:27:26.430250"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur dolor enim culpa?"], ["description", "Fuga adipisci asperiores consequatur."], ["date", "2020-05-06 18:27:26.432716"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.434253"], ["updated_at", "2020-05-05 18:27:26.434253"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et repellendus aut sed?"], ["description", "Esse dolores dolorum necessitatibus."], ["date", "2020-05-06 18:27:26.435754"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.436811"], ["updated_at", "2020-05-05 18:27:26.436811"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae ducimus nobis dolores?"], ["description", "Qui non est quo."], ["date", "2020-05-06 18:27:26.438096"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.438839"], ["updated_at", "2020-05-05 18:27:26.438839"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia quaerat aut omnis?"], ["description", "Voluptas omnis sint ea."], ["date", "2020-05-06 18:27:26.439958"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.440739"], ["updated_at", "2020-05-05 18:27:26.440739"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem repudiandae minima est?"], ["description", "Est alias temporibus voluptatibus."], ["date", "2020-05-06 18:27:26.443244"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.444268"], ["updated_at", "2020-05-05 18:27:26.444268"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam nihil atque officiis?"], ["description", "Ullam labore sapiente consequatur."], ["date", "2020-05-06 18:27:26.445584"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.446292"], ["updated_at", "2020-05-05 18:27:26.446292"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil iure necessitatibus atque?"], ["description", "Nobis quibusdam eveniet molestias."], ["date", "2020-05-06 18:27:26.447405"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.448970"], ["updated_at", "2020-05-05 18:27:26.448970"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa ut odio voluptatem?"], ["description", "Neque placeat inventore qui."], ["date", "2020-05-06 18:27:26.450914"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.451890"], ["updated_at", "2020-05-05 18:27:26.451890"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reiciendis ullam consequatur labore?"], ["description", "Porro id saepe aliquam."], ["date", "2020-05-06 18:27:26.453341"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.454253"], ["updated_at", "2020-05-05 18:27:26.454253"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem inventore illo aliquid?"], ["description", "Similique fugiat id ipsam."], ["date", "2020-05-06 18:27:26.455498"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.456215"], ["updated_at", "2020-05-05 18:27:26.456215"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut earum numquam deleniti?"], ["description", "Pariatur dignissimos vitae deserunt."], ["date", "2020-05-06 18:27:26.457309"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.458041"], ["updated_at", "2020-05-05 18:27:26.458041"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam non quae alias?"], ["description", "Corrupti eum quis veritatis."], ["date", "2020-05-06 18:27:26.459848"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.460745"], ["updated_at", "2020-05-05 18:27:26.460745"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem deserunt est et?"], ["description", "Fuga perferendis consectetur quas."], ["date", "2020-05-06 18:27:26.461967"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.462666"], ["updated_at", "2020-05-05 18:27:26.462666"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At numquam dolores natus?"], ["description", "Tenetur autem architecto in."], ["date", "2020-05-06 18:27:26.463787"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.464544"], ["updated_at", "2020-05-05 18:27:26.464544"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut sit ipsam ad?"], ["description", "Saepe sequi quia culpa."], ["date", "2020-05-06 18:27:26.465617"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.466311"], ["updated_at", "2020-05-05 18:27:26.466311"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:27:26 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 3ms (Views: 0.5ms | ActiveRecord: 0.3ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (3.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Wanda Green"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YkPx/srH3bO1FDHhiJ/oL.QvsaX5SKsN5PKDSENRWhgZ149zf0/dq"], ["created_at", "2020-05-05 18:27:26.486943"], ["updated_at", "2020-05-05 18:27:26.486943"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veritatis"], ["description", "Quibusdam nemo tempora ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.494058"], ["updated_at", "2020-05-05 18:27:26.494058"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut molestiae illo deleniti?"], ["description", "Quibusdam sit quis nihil."], ["date", "2020-05-06 18:27:26.496696"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.498809"], ["updated_at", "2020-05-05 18:27:26.498809"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis delectus vitae enim?"], ["description", "Quos quo quia illo."], ["date", "2020-05-06 18:27:26.500901"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.502095"], ["updated_at", "2020-05-05 18:27:26.502095"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis sit est nobis?"], ["description", "Reiciendis saepe esse suscipit."], ["date", "2020-05-06 18:27:26.503764"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.504683"], ["updated_at", "2020-05-05 18:27:26.504683"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea provident qui non?"], ["description", "Aliquid error ex incidunt."], ["date", "2020-05-06 18:27:26.506018"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.506948"], ["updated_at", "2020-05-05 18:27:26.506948"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam rerum officiis est?"], ["description", "Quas nobis quasi totam."], ["date", "2020-05-06 18:27:26.508689"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.513022"], ["updated_at", "2020-05-05 18:27:26.513022"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam et id tempora?"], ["description", "Voluptatum dolor dolores veniam."], ["date", "2020-05-06 18:27:26.516000"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.517590"], ["updated_at", "2020-05-05 18:27:26.517590"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem exercitationem et unde?"], ["description", "Nemo consequatur non ipsum."], ["date", "2020-05-06 18:27:26.519283"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.520209"], ["updated_at", "2020-05-05 18:27:26.520209"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim voluptatum accusamus vero?"], ["description", "Aut deleniti et quo."], ["date", "2020-05-06 18:27:26.521518"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.522279"], ["updated_at", "2020-05-05 18:27:26.522279"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint rem praesentium voluptas?"], ["description", "Labore corrupti placeat repudiandae."], ["date", "2020-05-06 18:27:26.523453"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.524190"], ["updated_at", "2020-05-05 18:27:26.524190"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus ipsa accusamus ducimus?"], ["description", "Distinctio aut mollitia laudantium."], ["date", "2020-05-06 18:27:26.526081"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.527583"], ["updated_at", "2020-05-05 18:27:26.527583"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed quod vel ducimus?"], ["description", "Magni cumque et velit."], ["date", "2020-05-06 18:27:26.530018"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.531501"], ["updated_at", "2020-05-05 18:27:26.531501"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et eveniet laudantium nihil?"], ["description", "Voluptas nobis ut est."], ["date", "2020-05-06 18:27:26.532980"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.533735"], ["updated_at", "2020-05-05 18:27:26.533735"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste vero et consequatur?"], ["description", "Modi sequi ipsam facilis."], ["date", "2020-05-06 18:27:26.534998"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.535699"], ["updated_at", "2020-05-05 18:27:26.535699"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam sint modi tenetur?"], ["description", "Iusto ex impedit est."], ["date", "2020-05-06 18:27:26.536923"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.537635"], ["updated_at", "2020-05-05 18:27:26.537635"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum numquam magni sapiente?"], ["description", "Velit delectus in et."], ["date", "2020-05-06 18:27:26.538930"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.539652"], ["updated_at", "2020-05-05 18:27:26.539652"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem ut officiis harum?"], ["description", "Iste aliquam aut est."], ["date", "2020-05-06 18:27:26.540828"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.541570"], ["updated_at", "2020-05-05 18:27:26.541570"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At quos sed accusamus?"], ["description", "Omnis fugiat maiores eligendi."], ["date", "2020-05-06 18:27:26.543586"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.544803"], ["updated_at", "2020-05-05 18:27:26.544803"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et corporis quaerat aut?"], ["description", "Nihil dolores iusto sint."], ["date", "2020-05-06 18:27:26.546281"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.547058"], ["updated_at", "2020-05-05 18:27:26.547058"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt omnis voluptas iure?"], ["description", "Ea saepe deleniti sit."], ["date", "2020-05-06 18:27:26.548215"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.549606"], ["updated_at", "2020-05-05 18:27:26.549606"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt ullam aut ipsum?"], ["description", "Officia qui accusamus mollitia."], ["date", "2020-05-06 18:27:26.551669"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:26.552601"], ["updated_at", "2020-05-05 18:27:26.552601"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:27:26 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms) +Completed 404 Not Found in 2ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Earum reprehenderit et ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.567181"], ["updated_at", "2020-05-05 18:27:26.567181"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Doloremque sunt aspernatur facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.571555"], ["updated_at", "2020-05-05 18:27:26.571555"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "error"], ["description", "Architecto odit consequatur quaerat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.573986"], ["updated_at", "2020-05-05 18:27:26.573986"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatibus"], ["description", "Consequatur aut quo corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.577632"], ["updated_at", "2020-05-05 18:27:26.577632"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Sunt illum qui voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.579133"], ["updated_at", "2020-05-05 18:27:26.579133"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "suscipit"], ["description", "Exercitationem optio facilis voluptatum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.580453"], ["updated_at", "2020-05-05 18:27:26.580453"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Eos quia voluptatem qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.581781"], ["updated_at", "2020-05-05 18:27:26.581781"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aspernatur"], ["description", "Cum ducimus qui ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.583066"], ["updated_at", "2020-05-05 18:27:26.583066"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Sed impedit animi alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.584325"], ["updated_at", "2020-05-05 18:27:26.584325"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Hic quia culpa accusantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.585584"], ["updated_at", "2020-05-05 18:27:26.585584"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tim Tromp"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8QUOymD7Bp5ZeuxwyO5qLuO6AWV/ylGaMipT3/ow0SGNFoq1.2hGG"], ["created_at", "2020-05-05 18:27:26.588233"], ["updated_at", "2020-05-05 18:27:26.588233"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:26 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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.8ms | ActiveRecord: 0.3ms | Allocations: 2915) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Deserunt ut quasi reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.615670"], ["updated_at", "2020-05-05 18:27:26.615670"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsa"], ["description", "Maxime dignissimos tenetur neque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.618408"], ["updated_at", "2020-05-05 18:27:26.618408"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellat"], ["description", "Consequatur asperiores veniam rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.619844"], ["updated_at", "2020-05-05 18:27:26.619844"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Necessitatibus qui soluta optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.621143"], ["updated_at", "2020-05-05 18:27:26.621143"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Et quia fuga sapiente."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.622605"], ["updated_at", "2020-05-05 18:27:26.622605"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Perspiciatis quos sit unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.623941"], ["updated_at", "2020-05-05 18:27:26.623941"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "at"], ["description", "Assumenda doloremque enim laboriosam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.625272"], ["updated_at", "2020-05-05 18:27:26.625272"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "explicabo"], ["description", "Assumenda mollitia deserunt libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.627057"], ["updated_at", "2020-05-05 18:27:26.627057"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "totam"], ["description", "Ut sunt repellat doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.629132"], ["updated_at", "2020-05-05 18:27:26.629132"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ratione"], ["description", "Libero earum dolor molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.631834"], ["updated_at", "2020-05-05 18:27:26.631834"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mandy Kohler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$uV2dqUHF0rb9oYZu8lioDeKcCx94r9Hdld4c8fWqeuiNM5pi0hSWm"], ["created_at", "2020-05-05 18:27:26.635563"], ["updated_at", "2020-05-05 18:27:26.635563"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:26 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.0ms | ActiveRecord: 0.1ms | Allocations: 2845) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quam"], ["description", "Sequi aut excepturi quisquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.653861"], ["updated_at", "2020-05-05 18:27:26.653861"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "neque"], ["description", "Mollitia provident et tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.656692"], ["updated_at", "2020-05-05 18:27:26.656692"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Quia qui eum quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.658099"], ["updated_at", "2020-05-05 18:27:26.658099"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Esse sed asperiores veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.660208"], ["updated_at", "2020-05-05 18:27:26.660208"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sapiente"], ["description", "Dolore fugiat quod alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.662353"], ["updated_at", "2020-05-05 18:27:26.662353"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "delectus"], ["description", "Eos nam amet a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.664053"], ["updated_at", "2020-05-05 18:27:26.664053"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Velit quia quia eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.665356"], ["updated_at", "2020-05-05 18:27:26.665356"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Rerum mollitia fuga quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.666769"], ["updated_at", "2020-05-05 18:27:26.666769"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "at"], ["description", "Officia vel deserunt ullam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.668058"], ["updated_at", "2020-05-05 18:27:26.668058"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Doloribus non eveniet ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.669658"], ["updated_at", "2020-05-05 18:27:26.669658"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Teisha Braun"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1yWG60zzTXwj7gBBnVZf3OtfercNDIB0AbsvnoMIeSV6YwCahEZ1S"], ["created_at", "2020-05-05 18:27:26.673934"], ["updated_at", "2020-05-05 18:27:26.673934"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:26 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.4ms) +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 15:27:26 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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: 1242) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Perspiciatis ad in asperiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.699854"], ["updated_at", "2020-05-05 18:27:26.699854"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Autem ut ipsa magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.702622"], ["updated_at", "2020-05-05 18:27:26.702622"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "In odit provident maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.704029"], ["updated_at", "2020-05-05 18:27:26.704029"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "neque"], ["description", "Ullam eius est qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.705303"], ["updated_at", "2020-05-05 18:27:26.705303"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ducimus"], ["description", "Explicabo non quisquam dignissimos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.706581"], ["updated_at", "2020-05-05 18:27:26.706581"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Quae culpa sequi dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.707945"], ["updated_at", "2020-05-05 18:27:26.707945"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Fugit dolorum sit ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.710622"], ["updated_at", "2020-05-05 18:27:26.710622"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "saepe"], ["description", "Molestias enim rerum ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.713336"], ["updated_at", "2020-05-05 18:27:26.713336"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Ex natus voluptatem est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.715556"], ["updated_at", "2020-05-05 18:27:26.715556"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Itaque neque ut est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.717729"], ["updated_at", "2020-05-05 18:27:26.717729"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jamie Klein"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$lT.DR/3ChAXVfk.xHAu9JOLUoFFQ3.bJE9QV.lHgtP9Y.JwdVTE96"], ["created_at", "2020-05-05 18:27:26.720600"], ["updated_at", "2020-05-05 18:27:26.720600"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:26 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2843) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:27:26 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.52ms) +Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.2ms | Allocations: 1240) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "reprehenderit"], ["description", "Assumenda ipsa corrupti et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.744845"], ["updated_at", "2020-05-05 18:27:26.744845"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deleniti"], ["description", "Fugiat modi deserunt ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.747775"], ["updated_at", "2020-05-05 18:27:26.747775"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Deserunt veniam qui commodi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.749340"], ["updated_at", "2020-05-05 18:27:26.749340"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Recusandae ut dolorem incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.754667"], ["updated_at", "2020-05-05 18:27:26.754667"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facere"], ["description", "Deleniti magni ut quidem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.757246"], ["updated_at", "2020-05-05 18:27:26.757246"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Eveniet eaque ea illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.759025"], ["updated_at", "2020-05-05 18:27:26.759025"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nostrum"], ["description", "Impedit culpa nihil omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.760371"], ["updated_at", "2020-05-05 18:27:26.760371"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nobis"], ["description", "Non id eveniet quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.761750"], ["updated_at", "2020-05-05 18:27:26.761750"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Et nobis reiciendis molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.763035"], ["updated_at", "2020-05-05 18:27:26.763035"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "debitis"], ["description", "Nam aspernatur et quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.764467"], ["updated_at", "2020-05-05 18:27:26.764467"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Guillermo Ernser"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$AEhNtitMMLKst5XuUgO4N.owVcI4I0wR/ksVuiw18Vm7iuWKDADdO"], ["created_at", "2020-05-05 18:27:26.767123"], ["updated_at", "2020-05-05 18:27:26.767123"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:26 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.24ms) +Completed 200 OK in 8ms (Views: 6.2ms | ActiveRecord: 0.3ms | Allocations: 2844) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:27:26 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sequi"], ["description", "Aspernatur et in itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.789750"], ["updated_at", "2020-05-05 18:27:26.789750"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "soluta"], ["description", "Beatae dolorem voluptatum porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.795050"], ["updated_at", "2020-05-05 18:27:26.795050"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Vitae dolorem aut laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.797967"], ["updated_at", "2020-05-05 18:27:26.797967"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Sapiente et saepe voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.799909"], ["updated_at", "2020-05-05 18:27:26.799909"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Quidem earum ut sequi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.801380"], ["updated_at", "2020-05-05 18:27:26.801380"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tenetur"], ["description", "Harum error magni sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.802679"], ["updated_at", "2020-05-05 18:27:26.802679"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "temporibus"], ["description", "Facilis ducimus ut hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.803952"], ["updated_at", "2020-05-05 18:27:26.803952"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "totam"], ["description", "Est quas delectus suscipit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.805684"], ["updated_at", "2020-05-05 18:27:26.805684"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Dicta tempora labore quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.807055"], ["updated_at", "2020-05-05 18:27:26.807055"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "suscipit"], ["description", "Vel cupiditate et fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.808325"], ["updated_at", "2020-05-05 18:27:26.808325"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kenya Kerluke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$cXquUzexJLh1QY6Vf236DuQSXhlH4Z9sq3gjhwDE/zfCo8m/rz7ba"], ["created_at", "2020-05-05 18:27:26.812953"], ["updated_at", "2020-05-05 18:27:26.812953"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:26 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.4ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:27:26 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "error"], ["description", "Ut autem repellendus cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.835911"], ["updated_at", "2020-05-05 18:27:26.835911"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dignissimos"], ["description", "Labore qui distinctio veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.838607"], ["updated_at", "2020-05-05 18:27:26.838607"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Quis eveniet sit esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.840058"], ["updated_at", "2020-05-05 18:27:26.840058"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Sit dicta velit ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.841438"], ["updated_at", "2020-05-05 18:27:26.841438"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Ut expedita incidunt fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.842868"], ["updated_at", "2020-05-05 18:27:26.842868"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Est veniam modi aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.844946"], ["updated_at", "2020-05-05 18:27:26.844946"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Deserunt odit doloremque dicta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.846360"], ["updated_at", "2020-05-05 18:27:26.846360"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Quidem minima harum aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.847666"], ["updated_at", "2020-05-05 18:27:26.847666"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "architecto"], ["description", "Voluptas ex laborum dolore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.848935"], ["updated_at", "2020-05-05 18:27:26.848935"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nam"], ["description", "Quisquam adipisci earum est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.850584"], ["updated_at", "2020-05-05 18:27:26.850584"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Luana Leuschke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dAJDKdsHA0oyG6R0jvlu/eSFMbCO0bvsX.a16Jc/sbKcbqI5xDDZ."], ["created_at", "2020-05-05 18:27:26.854540"], ["updated_at", "2020-05-05 18:27:26.854540"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:26 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.63ms) +Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:27:26 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:27:26.881556"], ["updated_at", "2020-05-05 18:27:26.881556"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.59ms) +Completed 201 Created in 23ms (Views: 1.0ms | ActiveRecord: 1.1ms | Allocations: 6220) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Rerum ullam delectus officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.901074"], ["updated_at", "2020-05-05 18:27:26.901074"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Nesciunt nemo quas qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.903751"], ["updated_at", "2020-05-05 18:27:26.903751"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempora"], ["description", "Blanditiis aut atque est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.905269"], ["updated_at", "2020-05-05 18:27:26.905269"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Sunt et expedita autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.906528"], ["updated_at", "2020-05-05 18:27:26.906528"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Autem eos vitae at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.907857"], ["updated_at", "2020-05-05 18:27:26.907857"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "at"], ["description", "Non nam in est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.909810"], ["updated_at", "2020-05-05 18:27:26.909810"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Eos excepturi repudiandae dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.912312"], ["updated_at", "2020-05-05 18:27:26.912312"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "optio"], ["description", "Voluptatibus ipsa quo omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.914379"], ["updated_at", "2020-05-05 18:27:26.914379"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusamus"], ["description", "Est cum recusandae in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.916605"], ["updated_at", "2020-05-05 18:27:26.916605"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repudiandae"], ["description", "Excepturi est quae laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.917972"], ["updated_at", "2020-05-05 18:27:26.917972"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gigi Abernathy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9/gJcXm9ma/Fvo7BZtcep.lTXEri6DWmOfSnIYG8QuZ2K6NJZZMgG"], ["created_at", "2020-05-05 18:27:26.920782"], ["updated_at", "2020-05-05 18:27:26.920782"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:26 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (19.1ms) +Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.1ms | Allocations: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:27:26 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:27:26.948092"], ["updated_at", "2020-05-05 18:27:26.948092"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.3ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.62ms) +Completed 201 Created in 6ms (Views: 1.2ms | ActiveRecord: 0.7ms | Allocations: 2252) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (18.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corrupti"], ["description", "Expedita omnis ut numquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.975186"], ["updated_at", "2020-05-05 18:27:26.975186"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Magnam omnis esse dicta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.978659"], ["updated_at", "2020-05-05 18:27:26.978659"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quasi"], ["description", "Consequatur dicta dolorem tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.980173"], ["updated_at", "2020-05-05 18:27:26.980173"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corporis"], ["description", "Molestiae cum rem est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.981537"], ["updated_at", "2020-05-05 18:27:26.981537"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nam"], ["description", "Illo non sit harum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.982974"], ["updated_at", "2020-05-05 18:27:26.982974"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Neque earum est enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.984339"], ["updated_at", "2020-05-05 18:27:26.984339"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "error"], ["description", "Perferendis ducimus ratione quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.985646"], ["updated_at", "2020-05-05 18:27:26.985646"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Eos tempora officiis accusantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.986941"], ["updated_at", "2020-05-05 18:27:26.986941"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Veritatis sed est similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.988233"], ["updated_at", "2020-05-05 18:27:26.988233"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestias"], ["description", "Laborum libero mollitia iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:26.989512"], ["updated_at", "2020-05-05 18:27:26.989512"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bernadine Huel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$iH97quwMaoKgyIT7Gw44UO0eZGn4rXIv5lQfOuF7zFCrOuVXSbFtu"], ["created_at", "2020-05-05 18:27:26.993301"], ["updated_at", "2020-05-05 18:27:26.993301"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:26 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.45ms) +Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:27:27 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms) +Completed 422 Unprocessable Entity in 6ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 4006) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "asperiores"], ["description", "Et velit quod aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.019875"], ["updated_at", "2020-05-05 18:27:27.019875"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "debitis"], ["description", "Ducimus cupiditate reprehenderit aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.023145"], ["updated_at", "2020-05-05 18:27:27.023145"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellendus"], ["description", "Modi minima excepturi inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.025272"], ["updated_at", "2020-05-05 18:27:27.025272"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magnam"], ["description", "Sit unde aut ipsum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.027984"], ["updated_at", "2020-05-05 18:27:27.027984"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Eum voluptatem explicabo quidem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.029334"], ["updated_at", "2020-05-05 18:27:27.029334"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Et architecto eum minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.030731"], ["updated_at", "2020-05-05 18:27:27.030731"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "culpa"], ["description", "Quam voluptates provident voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.033404"], ["updated_at", "2020-05-05 18:27:27.033404"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Rerum corrupti enim distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.035733"], ["updated_at", "2020-05-05 18:27:27.035733"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Omnis non consequatur ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.037507"], ["updated_at", "2020-05-05 18:27:27.037507"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ex"], ["description", "Similique in et molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.038930"], ["updated_at", "2020-05-05 18:27:27.038930"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Otha Murphy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jVdq.MdcKnq3KUccBQoDWOGHQaMqa5mHmUoinOydPcEx9I4dNe5xa"], ["created_at", "2020-05-05 18:27:27.041594"], ["updated_at", "2020-05-05 18:27:27.041594"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:27 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:27:27 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 3697) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laboriosam"], ["description", "Aut qui facere ipsa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.066136"], ["updated_at", "2020-05-05 18:27:27.066136"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "hic"], ["description", "Non voluptatum explicabo velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.069766"], ["updated_at", "2020-05-05 18:27:27.069766"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Autem eum dignissimos debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.071961"], ["updated_at", "2020-05-05 18:27:27.071961"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vitae"], ["description", "Vero sapiente molestiae odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.074079"], ["updated_at", "2020-05-05 18:27:27.074079"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "numquam"], ["description", "Exercitationem neque tenetur velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.075514"], ["updated_at", "2020-05-05 18:27:27.075514"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nam"], ["description", "Id itaque architecto quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.077781"], ["updated_at", "2020-05-05 18:27:27.077781"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Sunt odit repudiandae ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.080254"], ["updated_at", "2020-05-05 18:27:27.080254"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "recusandae"], ["description", "Nisi qui et non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.081744"], ["updated_at", "2020-05-05 18:27:27.081744"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Accusamus ducimus sunt expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.083093"], ["updated_at", "2020-05-05 18:27:27.083093"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Itaque sed eveniet qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.084434"], ["updated_at", "2020-05-05 18:27:27.084434"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dollie Spencer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$O4xFLfhcrsDdx4z24xsG9O1TD0j48ueMB0Hcm.lEJ95X9GKyxUQjy"], ["created_at", "2020-05-05 18:27:27.087036"], ["updated_at", "2020-05-05 18:27:27.087036"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:27 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.22ms) +Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:27:27 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:27:27.098745"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 1043) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odio"], ["description", "Voluptatum nobis perferendis asperiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.108668"], ["updated_at", "2020-05-05 18:27:27.108668"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laudantium"], ["description", "Explicabo sint omnis perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.113338"], ["updated_at", "2020-05-05 18:27:27.113338"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "animi"], ["description", "Quod accusantium occaecati iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.115768"], ["updated_at", "2020-05-05 18:27:27.115768"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laborum"], ["description", "Et quaerat perspiciatis qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.117163"], ["updated_at", "2020-05-05 18:27:27.117163"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Aliquid molestias perspiciatis quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.118499"], ["updated_at", "2020-05-05 18:27:27.118499"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "necessitatibus"], ["description", "Itaque ratione est enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.119732"], ["updated_at", "2020-05-05 18:27:27.119732"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quaerat"], ["description", "Accusamus non in ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.121167"], ["updated_at", "2020-05-05 18:27:27.121167"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "amet"], ["description", "Dolor quia excepturi ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.122523"], ["updated_at", "2020-05-05 18:27:27.122523"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "A quia quibusdam quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.123806"], ["updated_at", "2020-05-05 18:27:27.123806"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Voluptas magni vero consectetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.125585"], ["updated_at", "2020-05-05 18:27:27.125585"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Benjamin Stehr"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DAEDYZwxhEhpqnUyMaF.j.UDI14OtPbsYuTk0GFAcGb51NlJbtnIq"], ["created_at", "2020-05-05 18:27:27.128775"], ["updated_at", "2020-05-05 18:27:27.128775"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:27 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.5ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:27:27 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.3ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:27:27.140575"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 999) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Iusto qui aut ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.152013"], ["updated_at", "2020-05-05 18:27:27.152013"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Dolorem officia asperiores autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.155791"], ["updated_at", "2020-05-05 18:27:27.155791"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Ea repellat ut iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.157970"], ["updated_at", "2020-05-05 18:27:27.157970"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laborum"], ["description", "Sit voluptatibus aperiam excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.159353"], ["updated_at", "2020-05-05 18:27:27.159353"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Natus ab est omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.160816"], ["updated_at", "2020-05-05 18:27:27.160816"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Dolores illum omnis voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.162148"], ["updated_at", "2020-05-05 18:27:27.162148"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nostrum"], ["description", "Quis ex est aliquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.163400"], ["updated_at", "2020-05-05 18:27:27.163400"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Ratione voluptates ducimus et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.164643"], ["updated_at", "2020-05-05 18:27:27.164643"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Dolores necessitatibus accusantium quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.165887"], ["updated_at", "2020-05-05 18:27:27.165887"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Asperiores velit eius consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:27.167306"], ["updated_at", "2020-05-05 18:27:27.167306"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marion Bartoletti I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$v7lRiW/YeP.enlyfuwLdoOrX.3cvriOALL0MGZzcgmd9FXeQjirJO"], ["created_at", "2020-05-05 18:27:27.169982"], ["updated_at", "2020-05-05 18:27:27.169982"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:27 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.34ms) +Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:27:27 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1221) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (4.3ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (84.4ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (106.9ms) DELETE FROM "user_meets"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (114.4ms) DELETE FROM "user_meetings"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (1.4ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (114.0ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (96.4ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (88.9ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (89.0ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (4.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dusty Windler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$U4PXitlIN9EYbdr7Vrs9p.dHVh6xlhc5fhV9OdsLETgJHrjWcwgf."], ["created_at", "2020-05-05 18:27:56.934981"], ["updated_at", "2020-05-05 18:27:56.934981"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Minus iusto alias aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:56.955408"], ["updated_at", "2020-05-05 18:27:56.955408"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At voluptatum eligendi sunt?"], ["description", "Voluptatem consequatur id doloremque."], ["date", "2020-05-06 18:27:56.977908"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.003995"], ["updated_at", "2020-05-05 18:27:57.003995"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed et eum ut?"], ["description", "Cumque rerum sapiente fugiat."], ["date", "2020-05-06 18:27:57.005668"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.006405"], ["updated_at", "2020-05-05 18:27:57.006405"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui minus explicabo impedit?"], ["description", "Qui ea aut nobis."], ["date", "2020-05-06 18:27:57.007741"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.008904"], ["updated_at", "2020-05-05 18:27:57.008904"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia molestiae dignissimos iure?"], ["description", "Architecto autem cum illum."], ["date", "2020-05-06 18:27:57.011462"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.012471"], ["updated_at", "2020-05-05 18:27:57.012471"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum et distinctio sapiente?"], ["description", "Esse delectus libero est."], ["date", "2020-05-06 18:27:57.013781"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.014479"], ["updated_at", "2020-05-05 18:27:57.014479"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia modi sequi aperiam?"], ["description", "Sit unde et in."], ["date", "2020-05-06 18:27:57.015602"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.016275"], ["updated_at", "2020-05-05 18:27:57.016275"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui eum dignissimos odit?"], ["description", "Fugit ducimus minima corporis."], ["date", "2020-05-06 18:27:57.017392"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.018077"], ["updated_at", "2020-05-05 18:27:57.018077"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequuntur commodi adipisci eaque?"], ["description", "Praesentium placeat beatae asperiores."], ["date", "2020-05-06 18:27:57.019386"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.020157"], ["updated_at", "2020-05-05 18:27:57.020157"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore deleniti illo ut?"], ["description", "Ut ex et alias."], ["date", "2020-05-06 18:27:57.021417"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.022173"], ["updated_at", "2020-05-05 18:27:57.022173"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias sit voluptas debitis?"], ["description", "Facilis recusandae aut sit."], ["date", "2020-05-06 18:27:57.024010"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.024840"], ["updated_at", "2020-05-05 18:27:57.024840"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea omnis quis ea?"], ["description", "Sit cumque consequuntur officiis."], ["date", "2020-05-06 18:27:57.026777"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.027725"], ["updated_at", "2020-05-05 18:27:57.027725"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam labore accusamus voluptatem?"], ["description", "Sunt temporibus aut dolor."], ["date", "2020-05-06 18:27:57.029151"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.030105"], ["updated_at", "2020-05-05 18:27:57.030105"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem nihil occaecati soluta?"], ["description", "Quos accusamus error et."], ["date", "2020-05-06 18:27:57.032025"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.032927"], ["updated_at", "2020-05-05 18:27:57.032927"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam minima et quis?"], ["description", "Laboriosam et accusamus deserunt."], ["date", "2020-05-06 18:27:57.034024"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.034715"], ["updated_at", "2020-05-05 18:27:57.034715"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente ipsum voluptatem voluptatibus?"], ["description", "Voluptates dolorum voluptatem quasi."], ["date", "2020-05-06 18:27:57.035949"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.036695"], ["updated_at", "2020-05-05 18:27:57.036695"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum aut minima exercitationem?"], ["description", "Laboriosam vitae libero et."], ["date", "2020-05-06 18:27:57.037915"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.038636"], ["updated_at", "2020-05-05 18:27:57.038636"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et in maiores et?"], ["description", "Magni alias autem sint."], ["date", "2020-05-06 18:27:57.039813"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.040535"], ["updated_at", "2020-05-05 18:27:57.040535"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis eveniet vel molestiae?"], ["description", "Assumenda illum vero vel."], ["date", "2020-05-06 18:27:57.042685"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.043737"], ["updated_at", "2020-05-05 18:27:57.043737"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda fugit nobis voluptatum?"], ["description", "Ratione vero eum eos."], ["date", "2020-05-06 18:27:57.045099"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.045823"], ["updated_at", "2020-05-05 18:27:57.045823"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo laboriosam autem quas?"], ["description", "Soluta et ipsum molestias."], ["date", "2020-05-06 18:27:57.047132"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.047891"], ["updated_at", "2020-05-05 18:27:57.047891"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:27:57 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.27ms) +Completed 200 OK in 35ms (Views: 15.2ms | ActiveRecord: 0.5ms | Allocations: 8641) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Phyllis Kassulke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$40YnUM.PZG8/VUeC8cBtVetX7rJh3vEEYox1TLETm8OnJ54pyPaZq"], ["created_at", "2020-05-05 18:27:57.134858"], ["updated_at", "2020-05-05 18:27:57.134858"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Nostrum omnis suscipit ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:57.138601"], ["updated_at", "2020-05-05 18:27:57.138601"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore iste commodi aut?"], ["description", "Eos numquam est aliquid."], ["date", "2020-05-06 18:27:57.140174"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.141180"], ["updated_at", "2020-05-05 18:27:57.141180"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos laboriosam natus ut?"], ["description", "Nisi beatae neque doloribus."], ["date", "2020-05-06 18:27:57.143226"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.144734"], ["updated_at", "2020-05-05 18:27:57.144734"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla aut alias autem?"], ["description", "Voluptates voluptatibus ex omnis."], ["date", "2020-05-06 18:27:57.146181"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.146943"], ["updated_at", "2020-05-05 18:27:57.146943"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet dolorem aut velit?"], ["description", "Ut placeat autem vel."], ["date", "2020-05-06 18:27:57.148081"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.148823"], ["updated_at", "2020-05-05 18:27:57.148823"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt unde quidem est?"], ["description", "Accusamus ab sapiente ea."], ["date", "2020-05-06 18:27:57.150063"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.151349"], ["updated_at", "2020-05-05 18:27:57.151349"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam sit repudiandae eveniet?"], ["description", "Ex enim neque porro."], ["date", "2020-05-06 18:27:57.153040"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.153906"], ["updated_at", "2020-05-05 18:27:57.153906"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias dolores et iste?"], ["description", "Accusamus nemo esse rerum."], ["date", "2020-05-06 18:27:57.154955"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.155660"], ["updated_at", "2020-05-05 18:27:57.155660"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et sed eligendi eos?"], ["description", "Ab qui delectus quae."], ["date", "2020-05-06 18:27:57.156936"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.158024"], ["updated_at", "2020-05-05 18:27:57.158024"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora voluptatem recusandae sint?"], ["description", "Facere reiciendis delectus consequuntur."], ["date", "2020-05-06 18:27:57.159870"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.160852"], ["updated_at", "2020-05-05 18:27:57.160852"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non repudiandae temporibus et?"], ["description", "Tempora neque consequatur voluptas."], ["date", "2020-05-06 18:27:57.162869"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.163699"], ["updated_at", "2020-05-05 18:27:57.163699"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui porro et rem?"], ["description", "Voluptatem est velit libero."], ["date", "2020-05-06 18:27:57.164950"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.165655"], ["updated_at", "2020-05-05 18:27:57.165655"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit omnis doloremque at?"], ["description", "Dolorum similique iusto ab."], ["date", "2020-05-06 18:27:57.166802"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.167490"], ["updated_at", "2020-05-05 18:27:57.167490"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia veritatis est quia?"], ["description", "Accusantium qui ea voluptatibus."], ["date", "2020-05-06 18:27:57.168647"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.169339"], ["updated_at", "2020-05-05 18:27:57.169339"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo blanditiis voluptatum qui?"], ["description", "Provident accusamus quae reiciendis."], ["date", "2020-05-06 18:27:57.170859"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.172311"], ["updated_at", "2020-05-05 18:27:57.172311"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea odit asperiores in?"], ["description", "Consectetur et consequatur assumenda."], ["date", "2020-05-06 18:27:57.173744"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.174648"], ["updated_at", "2020-05-05 18:27:57.174648"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea reiciendis sapiente vero?"], ["description", "Ipsa eaque voluptate minima."], ["date", "2020-05-06 18:27:57.176522"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.177478"], ["updated_at", "2020-05-05 18:27:57.177478"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto sed rem sapiente?"], ["description", "Consectetur et reiciendis qui."], ["date", "2020-05-06 18:27:57.178706"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.179395"], ["updated_at", "2020-05-05 18:27:57.179395"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In sit est in?"], ["description", "Sed possimus sed ad."], ["date", "2020-05-06 18:27:57.180727"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.181440"], ["updated_at", "2020-05-05 18:27:57.181440"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro veritatis sunt sequi?"], ["description", "Et commodi molestias soluta."], ["date", "2020-05-06 18:27:57.182603"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.183297"], ["updated_at", "2020-05-05 18:27:57.183297"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut esse quaerat eius?"], ["description", "Dolores dolor est sapiente."], ["date", "2020-05-06 18:27:57.184532"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.185212"], ["updated_at", "2020-05-05 18:27:57.185212"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:27:57 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.74ms) +Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.2ms | Allocations: 5511) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Numbers Corwin V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tDZWjbaMXceHuaH8hGBEHOmQkNY5fliWWJobtoCJSLtsahz6n/ywa"], ["created_at", "2020-05-05 18:27:57.214116"], ["updated_at", "2020-05-05 18:27:57.214116"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illum"], ["description", "Maxime sint quia voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:57.217736"], ["updated_at", "2020-05-05 18:27:57.217736"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt enim consequatur labore?"], ["description", "Velit vitae corporis et."], ["date", "2020-05-06 18:27:57.219340"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.220303"], ["updated_at", "2020-05-05 18:27:57.220303"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam unde atque fugiat?"], ["description", "Qui sunt in illo."], ["date", "2020-05-06 18:27:57.221677"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.222427"], ["updated_at", "2020-05-05 18:27:57.222427"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam dolorem explicabo incidunt?"], ["description", "Sapiente unde suscipit incidunt."], ["date", "2020-05-06 18:27:57.223735"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.224443"], ["updated_at", "2020-05-05 18:27:57.224443"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est voluptas autem sit?"], ["description", "Nostrum nisi sed possimus."], ["date", "2020-05-06 18:27:57.226073"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.227159"], ["updated_at", "2020-05-05 18:27:57.227159"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque vel tenetur molestiae?"], ["description", "Dolorum tempore veniam aut."], ["date", "2020-05-06 18:27:57.228526"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.229332"], ["updated_at", "2020-05-05 18:27:57.229332"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam nisi voluptatem ipsa?"], ["description", "Ea facilis est laborum."], ["date", "2020-05-06 18:27:57.230620"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.232318"], ["updated_at", "2020-05-05 18:27:57.232318"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut ullam enim qui?"], ["description", "Qui voluptatum sunt ut."], ["date", "2020-05-06 18:27:57.234123"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.235727"], ["updated_at", "2020-05-05 18:27:57.235727"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima asperiores iste perspiciatis?"], ["description", "Dolores voluptas ipsum cum."], ["date", "2020-05-06 18:27:57.237182"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.237977"], ["updated_at", "2020-05-05 18:27:57.237977"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi incidunt voluptates autem?"], ["description", "Officiis sit minima voluptatum."], ["date", "2020-05-06 18:27:57.239091"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.239880"], ["updated_at", "2020-05-05 18:27:57.239880"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores sunt modi sint?"], ["description", "Qui harum veritatis dolore."], ["date", "2020-05-06 18:27:57.241923"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.243444"], ["updated_at", "2020-05-05 18:27:57.243444"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero placeat voluptas quae?"], ["description", "Et sint vitae nemo."], ["date", "2020-05-06 18:27:57.245110"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.246007"], ["updated_at", "2020-05-05 18:27:57.246007"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius odio sed rerum?"], ["description", "In minus tempora quasi."], ["date", "2020-05-06 18:27:57.247270"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.247961"], ["updated_at", "2020-05-05 18:27:57.247961"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est harum dolore atque?"], ["description", "Inventore sed optio nemo."], ["date", "2020-05-06 18:27:57.249129"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.249832"], ["updated_at", "2020-05-05 18:27:57.249832"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut facere aut tenetur?"], ["description", "Quae ducimus est placeat."], ["date", "2020-05-06 18:27:57.251680"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.252986"], ["updated_at", "2020-05-05 18:27:57.252986"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In et veritatis aut?"], ["description", "Blanditiis quo labore ab."], ["date", "2020-05-06 18:27:57.254520"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.274467"], ["updated_at", "2020-05-05 18:27:57.274467"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et blanditiis consequatur ea?"], ["description", "Eos exercitationem vitae et."], ["date", "2020-05-06 18:27:57.276744"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.277716"], ["updated_at", "2020-05-05 18:27:57.277716"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus dolore quos tenetur?"], ["description", "A fuga deleniti numquam."], ["date", "2020-05-06 18:27:57.279064"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.279775"], ["updated_at", "2020-05-05 18:27:57.279775"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed ut minus delectus?"], ["description", "Sunt quam reiciendis aspernatur."], ["date", "2020-05-06 18:27:57.280981"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.281703"], ["updated_at", "2020-05-05 18:27:57.281703"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur error enim et?"], ["description", "Neque debitis sint aspernatur."], ["date", "2020-05-06 18:27:57.282930"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.283646"], ["updated_at", "2020-05-05 18:27:57.283646"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos est veritatis debitis?"], ["description", "Praesentium voluptas et nobis."], ["date", "2020-05-06 18:27:57.284816"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.285502"], ["updated_at", "2020-05-05 18:27:57.285502"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:27:57 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms) +Completed 404 Not Found in 6ms (Views: 5.4ms | ActiveRecord: 0.1ms | Allocations: 866) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Malcolm Jones"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gNL6RK0TPFgMqNtkG/ofYOEP/rWxi25h4K9OzL2QVRysma9P5bN8K"], ["created_at", "2020-05-05 18:27:57.304328"], ["updated_at", "2020-05-05 18:27:57.304328"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Esse qui eligendi aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:57.307068"], ["updated_at", "2020-05-05 18:27:57.307068"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et excepturi tenetur quibusdam?"], ["description", "Id tenetur itaque officiis."], ["date", "2020-05-06 18:27:57.309186"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.310313"], ["updated_at", "2020-05-05 18:27:57.310313"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil voluptatem non illum?"], ["description", "Commodi quasi quam dolor."], ["date", "2020-05-06 18:27:57.312378"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.313648"], ["updated_at", "2020-05-05 18:27:57.313648"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos voluptas nobis asperiores?"], ["description", "Voluptatum officia sit et."], ["date", "2020-05-06 18:27:57.315325"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.316642"], ["updated_at", "2020-05-05 18:27:57.316642"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat provident architecto iure?"], ["description", "Voluptatibus autem dolorem qui."], ["date", "2020-05-06 18:27:57.317984"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.318694"], ["updated_at", "2020-05-05 18:27:57.318694"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque quae repellat molestiae?"], ["description", "Commodi nostrum aut expedita."], ["date", "2020-05-06 18:27:57.319797"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.320487"], ["updated_at", "2020-05-05 18:27:57.320487"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt autem quisquam minima?"], ["description", "Sunt necessitatibus temporibus doloremque."], ["date", "2020-05-06 18:27:57.321658"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.322362"], ["updated_at", "2020-05-05 18:27:57.322362"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores et officia qui?"], ["description", "Ipsa magni cupiditate quia."], ["date", "2020-05-06 18:27:57.323416"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.324092"], ["updated_at", "2020-05-05 18:27:57.324092"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis et dolores distinctio?"], ["description", "Dolorem voluptate error delectus."], ["date", "2020-05-06 18:27:57.325371"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.326848"], ["updated_at", "2020-05-05 18:27:57.326848"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem dolorum sed quis?"], ["description", "Illum necessitatibus ullam unde."], ["date", "2020-05-06 18:27:57.328309"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.329056"], ["updated_at", "2020-05-05 18:27:57.329056"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est illum ut quae?"], ["description", "Quis ea temporibus sunt."], ["date", "2020-05-06 18:27:57.331016"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.332194"], ["updated_at", "2020-05-05 18:27:57.332194"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quibusdam ab nobis aliquam?"], ["description", "Nemo aut voluptas voluptatem."], ["date", "2020-05-06 18:27:57.334173"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.335234"], ["updated_at", "2020-05-05 18:27:57.335234"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quis qui cumque?"], ["description", "Numquam eaque suscipit quia."], ["date", "2020-05-06 18:27:57.337226"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.338121"], ["updated_at", "2020-05-05 18:27:57.338121"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem vitae nulla quam?"], ["description", "Aperiam est laudantium non."], ["date", "2020-05-06 18:27:57.339296"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.339993"], ["updated_at", "2020-05-05 18:27:57.339993"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia repellendus maiores soluta?"], ["description", "Nisi numquam quos voluptatem."], ["date", "2020-05-06 18:27:57.341161"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.341916"], ["updated_at", "2020-05-05 18:27:57.341916"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae voluptatem similique temporibus?"], ["description", "Aut voluptatem ut dolorem."], ["date", "2020-05-06 18:27:57.344305"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.345321"], ["updated_at", "2020-05-05 18:27:57.345321"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est non aut error?"], ["description", "In sit ea ut."], ["date", "2020-05-06 18:27:57.346665"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.347360"], ["updated_at", "2020-05-05 18:27:57.347360"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus nisi vel quae?"], ["description", "Rerum omnis molestias dolor."], ["date", "2020-05-06 18:27:57.348520"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.349191"], ["updated_at", "2020-05-05 18:27:57.349191"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident accusantium deserunt totam?"], ["description", "Iste ducimus et explicabo."], ["date", "2020-05-06 18:27:57.350679"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.351791"], ["updated_at", "2020-05-05 18:27:57.351791"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad eligendi deserunt itaque?"], ["description", "Suscipit repudiandae iure unde."], ["date", "2020-05-06 18:27:57.353756"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.354697"], ["updated_at", "2020-05-05 18:27:57.354697"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores beatae possimus voluptas?"], ["description", "Quia ullam beatae et."], ["date", "2020-05-06 18:27:57.356024"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.356693"], ["updated_at", "2020-05-05 18:27:57.356693"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:27:57 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ardelia Kohler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$bWiICUDzgHQqaScPCjWUqO4Kjb0OQ51WRDEXrIDbSQWEHTORkxTWK"], ["created_at", "2020-05-05 18:27:57.375275"], ["updated_at", "2020-05-05 18:27:57.375275"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "pariatur"], ["description", "Et voluptas sunt expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:57.378342"], ["updated_at", "2020-05-05 18:27:57.378342"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse rerum eligendi ducimus?"], ["description", "Eligendi quia deserunt perspiciatis."], ["date", "2020-05-06 18:27:57.379878"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.380826"], ["updated_at", "2020-05-05 18:27:57.380826"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed cumque aut et?"], ["description", "Libero asperiores velit optio."], ["date", "2020-05-06 18:27:57.382214"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.382977"], ["updated_at", "2020-05-05 18:27:57.382977"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum incidunt sunt qui?"], ["description", "Id tempora consequatur rem."], ["date", "2020-05-06 18:27:57.384141"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.384826"], ["updated_at", "2020-05-05 18:27:57.384826"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id occaecati porro distinctio?"], ["description", "Labore incidunt vero hic."], ["date", "2020-05-06 18:27:57.385938"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.386622"], ["updated_at", "2020-05-05 18:27:57.386622"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit quibusdam saepe officia?"], ["description", "Aut odit id illo."], ["date", "2020-05-06 18:27:57.387793"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.388528"], ["updated_at", "2020-05-05 18:27:57.388528"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et exercitationem nulla et?"], ["description", "Et inventore quia ipsa."], ["date", "2020-05-06 18:27:57.389661"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.390344"], ["updated_at", "2020-05-05 18:27:57.390344"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque iure rerum velit?"], ["description", "Est soluta praesentium doloribus."], ["date", "2020-05-06 18:27:57.391816"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.395314"], ["updated_at", "2020-05-05 18:27:57.395314"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente harum quo sed?"], ["description", "Dolorem provident voluptatem aut."], ["date", "2020-05-06 18:27:57.397680"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.399357"], ["updated_at", "2020-05-05 18:27:57.399357"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et facere sint temporibus?"], ["description", "Qui est cupiditate sit."], ["date", "2020-05-06 18:27:57.401089"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.401995"], ["updated_at", "2020-05-05 18:27:57.401995"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel excepturi blanditiis commodi?"], ["description", "Illo quas deleniti eos."], ["date", "2020-05-06 18:27:57.404130"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.405005"], ["updated_at", "2020-05-05 18:27:57.405005"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi numquam deserunt similique?"], ["description", "Ullam consectetur repellendus asperiores."], ["date", "2020-05-06 18:27:57.406303"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.407011"], ["updated_at", "2020-05-05 18:27:57.407011"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur laudantium expedita consequatur?"], ["description", "Facere excepturi cum minus."], ["date", "2020-05-06 18:27:57.408476"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.409777"], ["updated_at", "2020-05-05 18:27:57.409777"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga at rerum provident?"], ["description", "Aut sequi enim blanditiis."], ["date", "2020-05-06 18:27:57.411240"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.412255"], ["updated_at", "2020-05-05 18:27:57.412255"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo ut in accusantium?"], ["description", "Voluptates id voluptas et."], ["date", "2020-05-06 18:27:57.414180"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.415135"], ["updated_at", "2020-05-05 18:27:57.415135"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque iusto consequatur expedita?"], ["description", "Voluptas porro commodi labore."], ["date", "2020-05-06 18:27:57.416431"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.417115"], ["updated_at", "2020-05-05 18:27:57.417115"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex est est qui?"], ["description", "Quo consectetur quo ea."], ["date", "2020-05-06 18:27:57.418269"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.418931"], ["updated_at", "2020-05-05 18:27:57.418931"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt sit est doloremque?"], ["description", "Consequatur adipisci unde non."], ["date", "2020-05-06 18:27:57.420167"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.420944"], ["updated_at", "2020-05-05 18:27:57.420944"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit optio est excepturi?"], ["description", "Aspernatur accusamus non sit."], ["date", "2020-05-06 18:27:57.422139"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.422829"], ["updated_at", "2020-05-05 18:27:57.422829"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae quam ducimus dignissimos?"], ["description", "Eligendi distinctio omnis modi."], ["date", "2020-05-06 18:27:57.423986"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.424744"], ["updated_at", "2020-05-05 18:27:57.424744"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis sequi non molestiae?"], ["description", "Delectus exercitationem sunt alias."], ["date", "2020-05-06 18:27:57.426789"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.427736"], ["updated_at", "2020-05-05 18:27:57.427736"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:27:57 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.9ms) +Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.3ms | Allocations: 1086) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shad Senger"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1.ifMYonIyY4IVE9hxgH8eW4fxWgYNYUnBwrV.tpXo/oj.JXW2kme"], ["created_at", "2020-05-05 18:27:57.445896"], ["updated_at", "2020-05-05 18:27:57.445896"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quidem"], ["description", "Eum et tempora similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:57.448738"], ["updated_at", "2020-05-05 18:27:57.448738"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit deserunt vero at?"], ["description", "Vero aut voluptate reiciendis."], ["date", "2020-05-06 18:27:57.450156"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.451116"], ["updated_at", "2020-05-05 18:27:57.451116"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui occaecati soluta laborum?"], ["description", "Doloribus aut debitis asperiores."], ["date", "2020-05-06 18:27:57.453415"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.454601"], ["updated_at", "2020-05-05 18:27:57.454601"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis est est impedit?"], ["description", "Earum corporis qui natus."], ["date", "2020-05-06 18:27:57.456484"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.457597"], ["updated_at", "2020-05-05 18:27:57.457597"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae recusandae aut voluptatem?"], ["description", "Ratione voluptatum et id."], ["date", "2020-05-06 18:27:57.458995"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.460346"], ["updated_at", "2020-05-05 18:27:57.460346"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum cumque reiciendis eius?"], ["description", "Earum maiores expedita aut."], ["date", "2020-05-06 18:27:57.461865"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.462660"], ["updated_at", "2020-05-05 18:27:57.462660"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione consequatur dicta quam?"], ["description", "Corporis enim nulla distinctio."], ["date", "2020-05-06 18:27:57.463818"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.464509"], ["updated_at", "2020-05-05 18:27:57.464509"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est maxime odit ex?"], ["description", "Et aliquid non quia."], ["date", "2020-05-06 18:27:57.465652"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.466306"], ["updated_at", "2020-05-05 18:27:57.466306"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero optio dolorum omnis?"], ["description", "Libero iste enim occaecati."], ["date", "2020-05-06 18:27:57.467479"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.468148"], ["updated_at", "2020-05-05 18:27:57.468148"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam tempore aliquid asperiores?"], ["description", "Et et quia non."], ["date", "2020-05-06 18:27:57.469303"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.470132"], ["updated_at", "2020-05-05 18:27:57.470132"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab omnis accusamus ad?"], ["description", "Corporis molestias quas accusantium."], ["date", "2020-05-06 18:27:57.472195"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.473760"], ["updated_at", "2020-05-05 18:27:57.473760"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui esse ut aut?"], ["description", "Enim amet voluptatibus sapiente."], ["date", "2020-05-06 18:27:57.476166"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.477690"], ["updated_at", "2020-05-05 18:27:57.477690"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est et animi illo?"], ["description", "Voluptas numquam quae ratione."], ["date", "2020-05-06 18:27:57.479160"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.479944"], ["updated_at", "2020-05-05 18:27:57.479944"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident ex eligendi ratione?"], ["description", "Reiciendis ut magnam est."], ["date", "2020-05-06 18:27:57.481267"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.482022"], ["updated_at", "2020-05-05 18:27:57.482022"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam vel quam eum?"], ["description", "At ullam saepe ut."], ["date", "2020-05-06 18:27:57.483268"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.483954"], ["updated_at", "2020-05-05 18:27:57.483954"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur temporibus eaque ut?"], ["description", "Dolores sed quos ut."], ["date", "2020-05-06 18:27:57.485126"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.485811"], ["updated_at", "2020-05-05 18:27:57.485811"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni perspiciatis adipisci ad?"], ["description", "Quisquam magnam aliquid assumenda."], ["date", "2020-05-06 18:27:57.487045"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.487748"], ["updated_at", "2020-05-05 18:27:57.487748"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum ut quas id?"], ["description", "Molestias qui cupiditate quam."], ["date", "2020-05-06 18:27:57.488895"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.489565"], ["updated_at", "2020-05-05 18:27:57.489565"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam laboriosam iure sapiente?"], ["description", "Placeat ipsum aut officia."], ["date", "2020-05-06 18:27:57.490898"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.492735"], ["updated_at", "2020-05-05 18:27:57.492735"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio dignissimos saepe eum?"], ["description", "Laborum ea quis eius."], ["date", "2020-05-06 18:27:57.495496"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.496551"], ["updated_at", "2020-05-05 18:27:57.496551"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque dolorum animi voluptatem?"], ["description", "Eveniet at occaecati nam."], ["date", "2020-05-06 18:27:57.497968"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.498882"], ["updated_at", "2020-05-05 18:27:57.498882"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:27:57 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.8ms) +Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.2ms | Allocations: 1058) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Travis Beatty"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VMobrpkcoEf.DiwrP1pCLOq5rSnZ8JDJPmdMTxQklOXOsIfoVP7UC"], ["created_at", "2020-05-05 18:27:57.560392"], ["updated_at", "2020-05-05 18:27:57.560392"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "incidunt"], ["description", "Laborum rerum omnis amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:57.564560"], ["updated_at", "2020-05-05 18:27:57.564560"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut quas dolore est?"], ["description", "Temporibus illo et accusamus."], ["date", "2020-05-06 18:27:57.566749"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.567900"], ["updated_at", "2020-05-05 18:27:57.567900"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum at dolores quibusdam?"], ["description", "Eveniet sit et non."], ["date", "2020-05-06 18:27:57.569342"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.570071"], ["updated_at", "2020-05-05 18:27:57.570071"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt perferendis sunt pariatur?"], ["description", "Qui hic excepturi suscipit."], ["date", "2020-05-06 18:27:57.571404"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.572223"], ["updated_at", "2020-05-05 18:27:57.572223"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt est aliquid minima?"], ["description", "Sit quia beatae nemo."], ["date", "2020-05-06 18:27:57.574764"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.576288"], ["updated_at", "2020-05-05 18:27:57.576288"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum voluptatem culpa sit?"], ["description", "Optio culpa enim officiis."], ["date", "2020-05-06 18:27:57.577732"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.578738"], ["updated_at", "2020-05-05 18:27:57.578738"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit ut et eos?"], ["description", "Dolores et ipsam provident."], ["date", "2020-05-06 18:27:57.580746"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.581681"], ["updated_at", "2020-05-05 18:27:57.581681"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In ducimus provident dolor?"], ["description", "Facere dignissimos eligendi eum."], ["date", "2020-05-06 18:27:57.582902"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.583601"], ["updated_at", "2020-05-05 18:27:57.583601"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim exercitationem dicta possimus?"], ["description", "Asperiores facilis a sit."], ["date", "2020-05-06 18:27:57.584735"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.585442"], ["updated_at", "2020-05-05 18:27:57.585442"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi modi aut non?"], ["description", "Velit est non reprehenderit."], ["date", "2020-05-06 18:27:57.586551"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.587223"], ["updated_at", "2020-05-05 18:27:57.587223"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora enim corrupti quibusdam?"], ["description", "Aperiam sed officia modi."], ["date", "2020-05-06 18:27:57.589024"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.589770"], ["updated_at", "2020-05-05 18:27:57.589770"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit voluptates nesciunt ea?"], ["description", "Perspiciatis delectus quasi et."], ["date", "2020-05-06 18:27:57.591047"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.592581"], ["updated_at", "2020-05-05 18:27:57.592581"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio ut neque magni?"], ["description", "Dignissimos minus voluptas perspiciatis."], ["date", "2020-05-06 18:27:57.595901"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.597071"], ["updated_at", "2020-05-05 18:27:57.597071"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat veritatis voluptates molestiae?"], ["description", "Molestiae fugiat consectetur aliquam."], ["date", "2020-05-06 18:27:57.598771"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.599815"], ["updated_at", "2020-05-05 18:27:57.599815"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur omnis ut animi?"], ["description", "Omnis deserunt eum architecto."], ["date", "2020-05-06 18:27:57.601259"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.602063"], ["updated_at", "2020-05-05 18:27:57.602063"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed nam quasi reiciendis?"], ["description", "Perferendis non earum voluptatem."], ["date", "2020-05-06 18:27:57.603398"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.604226"], ["updated_at", "2020-05-05 18:27:57.604226"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit ducimus hic aliquam?"], ["description", "Voluptas enim nostrum voluptate."], ["date", "2020-05-06 18:27:57.605626"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.606505"], ["updated_at", "2020-05-05 18:27:57.606505"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis consequatur et voluptatem?"], ["description", "Sint voluptates quasi aut."], ["date", "2020-05-06 18:27:57.607839"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.608709"], ["updated_at", "2020-05-05 18:27:57.608709"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia ut minus consequatur?"], ["description", "Porro voluptatum temporibus non."], ["date", "2020-05-06 18:27:57.610677"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.611643"], ["updated_at", "2020-05-05 18:27:57.611643"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium dolorem in animi?"], ["description", "Deleniti est aspernatur laborum."], ["date", "2020-05-06 18:27:57.613274"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.614776"], ["updated_at", "2020-05-05 18:27:57.614776"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed ad rem voluptas?"], ["description", "Sed doloremque tenetur ad."], ["date", "2020-05-06 18:27:57.616465"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.617534"], ["updated_at", "2020-05-05 18:27:57.617534"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:27:57 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 884) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Darci Wisozk"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LQXsw3/9FosloROAyBDEZuq9MyrfRFEyF6gWMGVwLXtniQ0N/VWu6"], ["created_at", "2020-05-05 18:27:57.634083"], ["updated_at", "2020-05-05 18:27:57.634083"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Ea voluptatum eum est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:57.637766"], ["updated_at", "2020-05-05 18:27:57.637766"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste voluptatem omnis quis?"], ["description", "Tenetur culpa quos odit."], ["date", "2020-05-06 18:27:57.640853"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.642956"], ["updated_at", "2020-05-05 18:27:57.642956"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo id ea omnis?"], ["description", "Possimus voluptatem dolore omnis."], ["date", "2020-05-06 18:27:57.644788"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.645687"], ["updated_at", "2020-05-05 18:27:57.645687"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem maiores accusantium velit?"], ["description", "Quasi laboriosam excepturi mollitia."], ["date", "2020-05-06 18:27:57.646801"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.647506"], ["updated_at", "2020-05-05 18:27:57.647506"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et dolorum repellat et?"], ["description", "Qui sint libero quo."], ["date", "2020-05-06 18:27:57.648547"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.649208"], ["updated_at", "2020-05-05 18:27:57.649208"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus libero autem maxime?"], ["description", "Aut fugit aliquam et."], ["date", "2020-05-06 18:27:57.650362"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.651345"], ["updated_at", "2020-05-05 18:27:57.651345"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et magni totam non?"], ["description", "Et aut ut perferendis."], ["date", "2020-05-06 18:27:57.652551"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.653567"], ["updated_at", "2020-05-05 18:27:57.653567"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos similique a dolore?"], ["description", "Natus quasi laboriosam voluptatem."], ["date", "2020-05-06 18:27:57.655596"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.656708"], ["updated_at", "2020-05-05 18:27:57.656708"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et aspernatur et omnis?"], ["description", "Eius nostrum est et."], ["date", "2020-05-06 18:27:57.658368"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.661837"], ["updated_at", "2020-05-05 18:27:57.661837"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto qui itaque est?"], ["description", "Pariatur at hic sed."], ["date", "2020-05-06 18:27:57.665028"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.666157"], ["updated_at", "2020-05-05 18:27:57.666157"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque ea placeat doloribus?"], ["description", "Magni occaecati vel ipsa."], ["date", "2020-05-06 18:27:57.668869"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.670282"], ["updated_at", "2020-05-05 18:27:57.670282"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa explicabo voluptas enim?"], ["description", "Error rerum provident aperiam."], ["date", "2020-05-06 18:27:57.672164"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.674161"], ["updated_at", "2020-05-05 18:27:57.674161"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam possimus odio totam?"], ["description", "Id fugiat tempora est."], ["date", "2020-05-06 18:27:57.677497"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.678914"], ["updated_at", "2020-05-05 18:27:57.678914"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (26.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam autem pariatur non?"], ["description", "Expedita eius consequuntur nemo."], ["date", "2020-05-06 18:27:57.681000"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.682233"], ["updated_at", "2020-05-05 18:27:57.682233"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Delectus odit consequatur suscipit?"], ["description", "Cum quia ut qui."], ["date", "2020-05-06 18:27:57.710338"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.711360"], ["updated_at", "2020-05-05 18:27:57.711360"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur enim nihil dolorem?"], ["description", "Dolorum ea mollitia earum."], ["date", "2020-05-06 18:27:57.714309"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.716515"], ["updated_at", "2020-05-05 18:27:57.716515"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis dolor sit voluptas?"], ["description", "Molestias qui at magni."], ["date", "2020-05-06 18:27:57.719387"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.721094"], ["updated_at", "2020-05-05 18:27:57.721094"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea voluptatibus id praesentium?"], ["description", "Velit quia quibusdam pariatur."], ["date", "2020-05-06 18:27:57.723605"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.725234"], ["updated_at", "2020-05-05 18:27:57.725234"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non dolorum porro aliquid?"], ["description", "Occaecati voluptas unde earum."], ["date", "2020-05-06 18:27:57.728323"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.730065"], ["updated_at", "2020-05-05 18:27:57.730065"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda fugit cupiditate qui?"], ["description", "Quia doloremque minima perferendis."], ["date", "2020-05-06 18:27:57.732953"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.734949"], ["updated_at", "2020-05-05 18:27:57.734949"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque voluptatibus aliquid qui?"], ["description", "Labore sed adipisci et."], ["date", "2020-05-06 18:27:57.738396"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.740162"], ["updated_at", "2020-05-05 18:27:57.740162"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:27:57 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 404 Not Found in 3ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 867) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Milo Abernathy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.t3vlEUpnVhuOkL1QTRU2.N8cyIb2A6f93MDhq06K0MmMRbMYgYL6"], ["created_at", "2020-05-05 18:27:57.762359"], ["updated_at", "2020-05-05 18:27:57.762359"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Modi deleniti reprehenderit enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:57.766718"], ["updated_at", "2020-05-05 18:27:57.766718"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis nesciunt et aut?"], ["description", "Nihil nemo dignissimos doloremque."], ["date", "2020-05-06 18:27:57.768921"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.770114"], ["updated_at", "2020-05-05 18:27:57.770114"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi explicabo sint autem?"], ["description", "Et quis ut aut."], ["date", "2020-05-06 18:27:57.771961"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.772990"], ["updated_at", "2020-05-05 18:27:57.772990"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis animi deserunt sint?"], ["description", "Doloremque dolor necessitatibus id."], ["date", "2020-05-06 18:27:57.776245"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.778093"], ["updated_at", "2020-05-05 18:27:57.778093"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias dolores tempora libero?"], ["description", "Accusamus mollitia similique error."], ["date", "2020-05-06 18:27:57.780432"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.781630"], ["updated_at", "2020-05-05 18:27:57.781630"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia sed et sequi?"], ["description", "Fuga modi nihil nihil."], ["date", "2020-05-06 18:27:57.783335"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.784239"], ["updated_at", "2020-05-05 18:27:57.784239"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores aut praesentium est?"], ["description", "Dolores corrupti ut quo."], ["date", "2020-05-06 18:27:57.785812"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.786704"], ["updated_at", "2020-05-05 18:27:57.786704"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga aspernatur nam sint?"], ["description", "Cupiditate nobis dolorum culpa."], ["date", "2020-05-06 18:27:57.788297"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.789206"], ["updated_at", "2020-05-05 18:27:57.789206"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui maxime eos doloribus?"], ["description", "Natus ut nisi ullam."], ["date", "2020-05-06 18:27:57.790734"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.791890"], ["updated_at", "2020-05-05 18:27:57.791890"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint aspernatur quis ipsam?"], ["description", "Accusantium dolorem dolores optio."], ["date", "2020-05-06 18:27:57.794408"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.796017"], ["updated_at", "2020-05-05 18:27:57.796017"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit itaque quis illum?"], ["description", "Ratione nisi minima delectus."], ["date", "2020-05-06 18:27:57.798770"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.799920"], ["updated_at", "2020-05-05 18:27:57.799920"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est sunt quasi ratione?"], ["description", "Dolore maiores voluptatem veritatis."], ["date", "2020-05-06 18:27:57.801697"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.802481"], ["updated_at", "2020-05-05 18:27:57.802481"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut fugiat repellendus aut?"], ["description", "Nostrum id id dolor."], ["date", "2020-05-06 18:27:57.803677"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.804471"], ["updated_at", "2020-05-05 18:27:57.804471"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem necessitatibus ducimus ea?"], ["description", "Sunt aliquid voluptates qui."], ["date", "2020-05-06 18:27:57.805751"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.806446"], ["updated_at", "2020-05-05 18:27:57.806446"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores eum quas voluptate?"], ["description", "Modi corporis dolores consequuntur."], ["date", "2020-05-06 18:27:57.807673"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.808340"], ["updated_at", "2020-05-05 18:27:57.808340"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et doloribus culpa est?"], ["description", "Ut porro voluptatem qui."], ["date", "2020-05-06 18:27:57.810137"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.811211"], ["updated_at", "2020-05-05 18:27:57.811211"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore officia amet labore?"], ["description", "Recusandae voluptatem odit vel."], ["date", "2020-05-06 18:27:57.812674"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.813458"], ["updated_at", "2020-05-05 18:27:57.813458"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam nesciunt repellendus qui?"], ["description", "Laborum et vel velit."], ["date", "2020-05-06 18:27:57.815188"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.816498"], ["updated_at", "2020-05-05 18:27:57.816498"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi ea doloremque odit?"], ["description", "Occaecati nihil exercitationem pariatur."], ["date", "2020-05-06 18:27:57.818017"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.818730"], ["updated_at", "2020-05-05 18:27:57.818730"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati ut voluptas veritatis?"], ["description", "Consequatur nihil facere aut."], ["date", "2020-05-06 18:27:57.819945"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.820669"], ["updated_at", "2020-05-05 18:27:57.820669"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam veritatis dicta minima?"], ["description", "Ut quia dignissimos fugit."], ["date", "2020-05-06 18:27:57.821913"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.822616"], ["updated_at", "2020-05-05 18:27:57.822616"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:27:57 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"title"=>"Visit Narnia", "description"=>"false", "date"=>"2020-05-06 15:27:57 -0300", "link"=>"https://zoom.com/fakelink", "meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Visit Narnia"], ["description", "false"], ["date", "2020-05-06 18:27:57"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.843690"], ["updated_at", "2020-05-05 18:27:57.843690"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.52ms) +Completed 201 Created in 6ms (Views: 1.1ms | ActiveRecord: 0.7ms | Allocations: 1665) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Matthew Rogahn III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$EDoN0lKWbens9yWgtpH4Juscd1.mSmD0XfoAbMe.FiDGuyCm0P/nS"], ["created_at", "2020-05-05 18:27:57.857677"], ["updated_at", "2020-05-05 18:27:57.857677"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "excepturi"], ["description", "Ea sunt dolorem consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:57.862139"], ["updated_at", "2020-05-05 18:27:57.862139"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea est natus necessitatibus?"], ["description", "Soluta suscipit placeat in."], ["date", "2020-05-06 18:27:57.863931"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.864875"], ["updated_at", "2020-05-05 18:27:57.864875"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ducimus id praesentium voluptas?"], ["description", "Dolorum asperiores porro ut."], ["date", "2020-05-06 18:27:57.866324"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.867113"], ["updated_at", "2020-05-05 18:27:57.867113"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem sit rerum eum?"], ["description", "Ut ut minus animi."], ["date", "2020-05-06 18:27:57.868456"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.869312"], ["updated_at", "2020-05-05 18:27:57.869312"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur quia qui hic?"], ["description", "Voluptatem laborum et similique."], ["date", "2020-05-06 18:27:57.870770"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.871769"], ["updated_at", "2020-05-05 18:27:57.871769"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia fuga numquam sint?"], ["description", "Voluptate praesentium rem dicta."], ["date", "2020-05-06 18:27:57.873254"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.874384"], ["updated_at", "2020-05-05 18:27:57.874384"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam eos non quaerat?"], ["description", "Officia quisquam rem omnis."], ["date", "2020-05-06 18:27:57.878007"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.879390"], ["updated_at", "2020-05-05 18:27:57.879390"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut animi asperiores odio?"], ["description", "Enim distinctio iste nihil."], ["date", "2020-05-06 18:27:57.881944"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.883087"], ["updated_at", "2020-05-05 18:27:57.883087"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia quaerat aliquam et?"], ["description", "Ipsa dolores voluptatum perspiciatis."], ["date", "2020-05-06 18:27:57.884503"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.885633"], ["updated_at", "2020-05-05 18:27:57.885633"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius voluptate consequatur a?"], ["description", "Ut quia officia sed."], ["date", "2020-05-06 18:27:57.887299"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.888463"], ["updated_at", "2020-05-05 18:27:57.888463"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas dolorum facere quidem?"], ["description", "Sint quisquam velit quia."], ["date", "2020-05-06 18:27:57.891925"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.894119"], ["updated_at", "2020-05-05 18:27:57.894119"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores sequi sunt maiores?"], ["description", "Excepturi perferendis dolorem placeat."], ["date", "2020-05-06 18:27:57.897991"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.900278"], ["updated_at", "2020-05-05 18:27:57.900278"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et qui dolorum et?"], ["description", "Tenetur quae corporis consequatur."], ["date", "2020-05-06 18:27:57.902176"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.903165"], ["updated_at", "2020-05-05 18:27:57.903165"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim voluptatem neque nam?"], ["description", "Tempora et et nesciunt."], ["date", "2020-05-06 18:27:57.904587"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.905644"], ["updated_at", "2020-05-05 18:27:57.905644"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores qui nam totam?"], ["description", "Iusto provident neque ut."], ["date", "2020-05-06 18:27:57.907339"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.908280"], ["updated_at", "2020-05-05 18:27:57.908280"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quia omnis qui?"], ["description", "Dolores aliquam aperiam repellat."], ["date", "2020-05-06 18:27:57.909887"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.911403"], ["updated_at", "2020-05-05 18:27:57.911403"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et itaque pariatur nemo?"], ["description", "Fugiat architecto voluptatem cum."], ["date", "2020-05-06 18:27:57.912802"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.913602"], ["updated_at", "2020-05-05 18:27:57.913602"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum necessitatibus autem qui?"], ["description", "Magni sunt deleniti esse."], ["date", "2020-05-06 18:27:57.915033"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.916565"], ["updated_at", "2020-05-05 18:27:57.916565"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates dignissimos perspiciatis expedita?"], ["description", "Exercitationem aut voluptates mollitia."], ["date", "2020-05-06 18:27:57.918098"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.918918"], ["updated_at", "2020-05-05 18:27:57.918918"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque repellendus quo maiores?"], ["description", "Aut exercitationem error rerum."], ["date", "2020-05-06 18:27:57.920020"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.920764"], ["updated_at", "2020-05-05 18:27:57.920764"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis voluptatem nihil dolor?"], ["description", "Sit voluptatum hic amet."], ["date", "2020-05-06 18:27:57.921935"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.922641"], ["updated_at", "2020-05-05 18:27:57.922641"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:27:57 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 422 Unprocessable Entity in 6ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 3010) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (2.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Stefania Pagac"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$w3wAryXOFM2PHzh3A6aYBOGMvtwUAA7hnAJ8wb/HxCx7N4IFNtDOq"], ["created_at", "2020-05-05 18:27:57.942175"], ["updated_at", "2020-05-05 18:27:57.942175"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Magnam ad eaque hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:57.948280"], ["updated_at", "2020-05-05 18:27:57.948280"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis excepturi magnam et?"], ["description", "Molestiae velit et exercitationem."], ["date", "2020-05-06 18:27:57.950296"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.951503"], ["updated_at", "2020-05-05 18:27:57.951503"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem esse ut architecto?"], ["description", "Nisi eius iure non."], ["date", "2020-05-06 18:27:57.953108"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.954080"], ["updated_at", "2020-05-05 18:27:57.954080"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut tempora velit officiis?"], ["description", "Repellendus doloremque fugiat ex."], ["date", "2020-05-06 18:27:57.955965"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.957474"], ["updated_at", "2020-05-05 18:27:57.957474"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga aperiam quisquam et?"], ["description", "Eum aperiam ipsam et."], ["date", "2020-05-06 18:27:57.959667"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.960935"], ["updated_at", "2020-05-05 18:27:57.960935"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum maiores et consequuntur?"], ["description", "Minus rerum laudantium qui."], ["date", "2020-05-06 18:27:57.962392"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.963304"], ["updated_at", "2020-05-05 18:27:57.963304"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae tempore consequatur accusantium?"], ["description", "Quia animi et optio."], ["date", "2020-05-06 18:27:57.964727"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.965583"], ["updated_at", "2020-05-05 18:27:57.965583"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti deserunt impedit ut?"], ["description", "Ullam rerum aut illum."], ["date", "2020-05-06 18:27:57.966903"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.967758"], ["updated_at", "2020-05-05 18:27:57.967758"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis quas laborum consequatur?"], ["description", "Vel provident amet quod."], ["date", "2020-05-06 18:27:57.969063"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.969900"], ["updated_at", "2020-05-05 18:27:57.969900"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam dolorem iusto eum?"], ["description", "Aliquam facere eum magnam."], ["date", "2020-05-06 18:27:57.971361"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.972300"], ["updated_at", "2020-05-05 18:27:57.972300"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed dignissimos suscipit est?"], ["description", "Quo exercitationem expedita voluptate."], ["date", "2020-05-06 18:27:57.974579"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.976861"], ["updated_at", "2020-05-05 18:27:57.976861"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim perferendis aut laudantium?"], ["description", "Delectus nobis adipisci accusamus."], ["date", "2020-05-06 18:27:57.978896"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.979858"], ["updated_at", "2020-05-05 18:27:57.979858"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae mollitia qui sint?"], ["description", "Delectus consequatur reiciendis occaecati."], ["date", "2020-05-06 18:27:57.981349"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.982264"], ["updated_at", "2020-05-05 18:27:57.982264"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident id sequi quidem?"], ["description", "Facere expedita natus explicabo."], ["date", "2020-05-06 18:27:57.983629"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.984503"], ["updated_at", "2020-05-05 18:27:57.984503"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae et aut aut?"], ["description", "Voluptates et sed nihil."], ["date", "2020-05-06 18:27:57.985945"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.986780"], ["updated_at", "2020-05-05 18:27:57.986780"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti iste molestiae omnis?"], ["description", "Ut doloremque dolores eos."], ["date", "2020-05-06 18:27:57.988277"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.989135"], ["updated_at", "2020-05-05 18:27:57.989135"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla qui nemo aut?"], ["description", "Libero et rerum id."], ["date", "2020-05-06 18:27:57.990881"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.991852"], ["updated_at", "2020-05-05 18:27:57.991852"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui debitis rerum suscipit?"], ["description", "Accusamus eos dicta consequatur."], ["date", "2020-05-06 18:27:57.994264"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.995843"], ["updated_at", "2020-05-05 18:27:57.995843"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo necessitatibus officiis et?"], ["description", "Neque iusto quaerat inventore."], ["date", "2020-05-06 18:27:57.997769"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:57.998721"], ["updated_at", "2020-05-05 18:27:57.998721"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum vel impedit rem?"], ["description", "Laborum voluptas dolorem commodi."], ["date", "2020-05-06 18:27:58.000254"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.001261"], ["updated_at", "2020-05-05 18:27:58.001261"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea distinctio debitis incidunt?"], ["description", "Dolor id porro voluptatum."], ["date", "2020-05-06 18:27:58.002790"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.003705"], ["updated_at", "2020-05-05 18:27:58.003705"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:27:58 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 2705) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Amos Harris"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fVGZfqVbt29.Ld1YWW4Ucu62DwmSUZRzr24hNXeLNJv6noiR86MJa"], ["created_at", "2020-05-05 18:27:58.023621"], ["updated_at", "2020-05-05 18:27:58.023621"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "optio"], ["description", "Cum consequatur nemo architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.028590"], ["updated_at", "2020-05-05 18:27:58.028590"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur totam ut quia?"], ["description", "Quo ducimus qui nemo."], ["date", "2020-05-06 18:27:58.030565"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.031967"], ["updated_at", "2020-05-05 18:27:58.031967"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem soluta est sed?"], ["description", "Sit assumenda illum aut."], ["date", "2020-05-06 18:27:58.051019"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.052072"], ["updated_at", "2020-05-05 18:27:58.052072"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est qui laboriosam dolore?"], ["description", "Pariatur eligendi esse necessitatibus."], ["date", "2020-05-06 18:27:58.053573"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.054475"], ["updated_at", "2020-05-05 18:27:58.054475"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe sed explicabo sed?"], ["description", "Consequuntur et molestias quos."], ["date", "2020-05-06 18:27:58.056696"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.058259"], ["updated_at", "2020-05-05 18:27:58.058259"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor facere explicabo atque?"], ["description", "Reiciendis quis dolorum tempora."], ["date", "2020-05-06 18:27:58.060431"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.061996"], ["updated_at", "2020-05-05 18:27:58.061996"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores veniam praesentium vel?"], ["description", "Aperiam enim neque doloribus."], ["date", "2020-05-06 18:27:58.063882"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.064953"], ["updated_at", "2020-05-05 18:27:58.064953"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui qui in ut?"], ["description", "Asperiores ut laudantium porro."], ["date", "2020-05-06 18:27:58.066405"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.067268"], ["updated_at", "2020-05-05 18:27:58.067268"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Delectus necessitatibus nam unde?"], ["description", "Molestias nisi nostrum non."], ["date", "2020-05-06 18:27:58.068643"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.069545"], ["updated_at", "2020-05-05 18:27:58.069545"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime assumenda quia labore?"], ["description", "Quo quidem nesciunt dolorem."], ["date", "2020-05-06 18:27:58.071023"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.071983"], ["updated_at", "2020-05-05 18:27:58.071983"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore quasi a eligendi?"], ["description", "Id ut porro et."], ["date", "2020-05-06 18:27:58.074189"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.075789"], ["updated_at", "2020-05-05 18:27:58.075789"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id itaque molestiae libero?"], ["description", "Beatae ut aut saepe."], ["date", "2020-05-06 18:27:58.078775"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.079951"], ["updated_at", "2020-05-05 18:27:58.079951"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia numquam et cupiditate?"], ["description", "Aut aliquid molestiae et."], ["date", "2020-05-06 18:27:58.081681"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.082620"], ["updated_at", "2020-05-05 18:27:58.082620"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit dolore ab sed?"], ["description", "Non eum sit aut."], ["date", "2020-05-06 18:27:58.083998"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.084860"], ["updated_at", "2020-05-05 18:27:58.084860"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequuntur et ut enim?"], ["description", "Et tenetur consequatur qui."], ["date", "2020-05-06 18:27:58.086249"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.087063"], ["updated_at", "2020-05-05 18:27:58.087063"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores voluptas quaerat corporis?"], ["description", "Veritatis voluptates optio nam."], ["date", "2020-05-06 18:27:58.088422"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.089258"], ["updated_at", "2020-05-05 18:27:58.089258"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur ducimus magni voluptas?"], ["description", "Voluptates expedita fugiat saepe."], ["date", "2020-05-06 18:27:58.090599"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.091729"], ["updated_at", "2020-05-05 18:27:58.091729"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui dolore nihil ipsa?"], ["description", "Pariatur atque officia sunt."], ["date", "2020-05-06 18:27:58.093726"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.094733"], ["updated_at", "2020-05-05 18:27:58.094733"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque dignissimos est animi?"], ["description", "Quaerat non sunt sint."], ["date", "2020-05-06 18:27:58.096724"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.098541"], ["updated_at", "2020-05-05 18:27:58.098541"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem occaecati aliquid sed?"], ["description", "Rerum esse iusto iure."], ["date", "2020-05-06 18:27:58.100140"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.101066"], ["updated_at", "2020-05-05 18:27:58.101066"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor enim ratione distinctio?"], ["description", "Consequuntur autem est eos."], ["date", "2020-05-06 18:27:58.102605"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.103557"], ["updated_at", "2020-05-05 18:27:58.103557"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:27:58 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.4ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:27:58.108198"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 4ms (ActiveRecord: 0.8ms | Allocations: 1396) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Donald Weber"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XZBpRjocP.XQ1u3WmYyR8uiQLEkQToo5Hf7rcKD6UZ3tWO/HkrhGW"], ["created_at", "2020-05-05 18:27:58.122945"], ["updated_at", "2020-05-05 18:27:58.122945"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quas"], ["description", "Asperiores maxime tenetur enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.126951"], ["updated_at", "2020-05-05 18:27:58.126951"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et cumque distinctio dolores?"], ["description", "Et nobis earum et."], ["date", "2020-05-06 18:27:58.128870"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.129956"], ["updated_at", "2020-05-05 18:27:58.129956"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim nam reiciendis ut?"], ["description", "Eos cumque in ut."], ["date", "2020-05-06 18:27:58.131737"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.132651"], ["updated_at", "2020-05-05 18:27:58.132651"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laudantium asperiores quo animi?"], ["description", "Suscipit dolores error beatae."], ["date", "2020-05-06 18:27:58.134160"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.135015"], ["updated_at", "2020-05-05 18:27:58.135015"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias tempore qui fugit?"], ["description", "Vitae quidem dolore ipsa."], ["date", "2020-05-06 18:27:58.137420"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.139075"], ["updated_at", "2020-05-05 18:27:58.139075"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum hic in sunt?"], ["description", "Omnis sint assumenda nobis."], ["date", "2020-05-06 18:27:58.140930"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.144639"], ["updated_at", "2020-05-05 18:27:58.144639"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati quia id in?"], ["description", "Eius est dicta perferendis."], ["date", "2020-05-06 18:27:58.147218"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.148289"], ["updated_at", "2020-05-05 18:27:58.148289"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum ipsum consequatur iusto?"], ["description", "Iste provident dolor laudantium."], ["date", "2020-05-06 18:27:58.149750"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.150719"], ["updated_at", "2020-05-05 18:27:58.150719"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro cum aliquam et?"], ["description", "Vel sed a nobis."], ["date", "2020-05-06 18:27:58.152043"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.152930"], ["updated_at", "2020-05-05 18:27:58.152930"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate dolores deserunt aperiam?"], ["description", "Non nihil sed officia."], ["date", "2020-05-06 18:27:58.154176"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.155018"], ["updated_at", "2020-05-05 18:27:58.155018"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel enim inventore id?"], ["description", "Amet odit aliquid quo."], ["date", "2020-05-06 18:27:58.158571"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.160081"], ["updated_at", "2020-05-05 18:27:58.160081"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam in illum sit?"], ["description", "Voluptatum error animi sapiente."], ["date", "2020-05-06 18:27:58.161807"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.162704"], ["updated_at", "2020-05-05 18:27:58.162704"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem sit ad cupiditate?"], ["description", "Earum ad temporibus laborum."], ["date", "2020-05-06 18:27:58.164002"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.164807"], ["updated_at", "2020-05-05 18:27:58.164807"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum animi assumenda magni?"], ["description", "Quaerat natus magni hic."], ["date", "2020-05-06 18:27:58.166116"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.166937"], ["updated_at", "2020-05-05 18:27:58.166937"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus nesciunt quas libero?"], ["description", "Dolore laborum et nobis."], ["date", "2020-05-06 18:27:58.168235"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.169018"], ["updated_at", "2020-05-05 18:27:58.169018"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis eligendi eum et?"], ["description", "Sint et qui placeat."], ["date", "2020-05-06 18:27:58.170394"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.171267"], ["updated_at", "2020-05-05 18:27:58.171267"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore sed ipsa dolorem?"], ["description", "Quo ab fuga dolor."], ["date", "2020-05-06 18:27:58.172600"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.173421"], ["updated_at", "2020-05-05 18:27:58.173421"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum minus ratione temporibus?"], ["description", "Blanditiis tempore nam nobis."], ["date", "2020-05-06 18:27:58.174936"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.176566"], ["updated_at", "2020-05-05 18:27:58.176566"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi non magnam dolores?"], ["description", "Sit libero voluptatem quo."], ["date", "2020-05-06 18:27:58.180383"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.181457"], ["updated_at", "2020-05-05 18:27:58.181457"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum ipsum cumque vel?"], ["description", "Nihil molestiae laudantium ut."], ["date", "2020-05-06 18:27:58.182966"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.183826"], ["updated_at", "2020-05-05 18:27:58.183826"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minus voluptatum qui sunt?"], ["description", "Voluptatum quas autem odio."], ["date", "2020-05-06 18:27:58.185237"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.186239"], ["updated_at", "2020-05-05 18:27:58.186239"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:27:58 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.2ms) SAVEPOINT active_record_2 + Meeting Update (0.4ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:27:58.192069"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 6ms (ActiveRecord: 1.0ms | Allocations: 1320) + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.6ms) ROLLBACK TO SAVEPOINT active_record_1 +  (23.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rebecka Boehm"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vdfxjsUbZD/E68m74JJIAe.JQSnj69pxBEe9omuOIq.xyZNY3Gfca"], ["created_at", "2020-05-05 18:27:58.226465"], ["updated_at", "2020-05-05 18:27:58.226465"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Omnis recusandae eum tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.230458"], ["updated_at", "2020-05-05 18:27:58.230458"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore voluptatem et necessitatibus?"], ["description", "Sit ut iste voluptatem."], ["date", "2020-05-06 18:27:58.232529"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.233850"], ["updated_at", "2020-05-05 18:27:58.233850"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia est error perspiciatis?"], ["description", "Eius in ab natus."], ["date", "2020-05-06 18:27:58.235688"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.237192"], ["updated_at", "2020-05-05 18:27:58.237192"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis laborum est consequatur?"], ["description", "Ex officia aperiam dolor."], ["date", "2020-05-06 18:27:58.240117"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.242870"], ["updated_at", "2020-05-05 18:27:58.242870"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio id quidem maxime?"], ["description", "Aut sequi neque libero."], ["date", "2020-05-06 18:27:58.246501"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.247701"], ["updated_at", "2020-05-05 18:27:58.247701"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum dolore voluptatem consequatur?"], ["description", "Corporis eius aliquid voluptatem."], ["date", "2020-05-06 18:27:58.249612"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.250758"], ["updated_at", "2020-05-05 18:27:58.250758"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et sed debitis libero?"], ["description", "Dolores exercitationem vero optio."], ["date", "2020-05-06 18:27:58.252435"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.253391"], ["updated_at", "2020-05-05 18:27:58.253391"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed sapiente esse placeat?"], ["description", "Occaecati aperiam dolorum est."], ["date", "2020-05-06 18:27:58.254775"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.255530"], ["updated_at", "2020-05-05 18:27:58.255530"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit nostrum nisi quidem?"], ["description", "Quae accusantium maiores est."], ["date", "2020-05-06 18:27:58.257119"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.258973"], ["updated_at", "2020-05-05 18:27:58.258973"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut nihil unde quia?"], ["description", "A eius cum veritatis."], ["date", "2020-05-06 18:27:58.260814"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.261746"], ["updated_at", "2020-05-05 18:27:58.261746"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure enim atque cupiditate?"], ["description", "Velit quo cupiditate est."], ["date", "2020-05-06 18:27:58.263613"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.264383"], ["updated_at", "2020-05-05 18:27:58.264383"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam ut dolore omnis?"], ["description", "Error consectetur porro omnis."], ["date", "2020-05-06 18:27:58.265668"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.266500"], ["updated_at", "2020-05-05 18:27:58.266500"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque est sit porro?"], ["description", "Mollitia tenetur voluptas quo."], ["date", "2020-05-06 18:27:58.267705"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.268460"], ["updated_at", "2020-05-05 18:27:58.268460"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et ab quaerat porro?"], ["description", "Porro nemo dolor aut."], ["date", "2020-05-06 18:27:58.269945"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.271038"], ["updated_at", "2020-05-05 18:27:58.271038"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias sint dolorem nihil?"], ["description", "Fugiat itaque quo dolorum."], ["date", "2020-05-06 18:27:58.272567"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.273694"], ["updated_at", "2020-05-05 18:27:58.273694"]] +  (0.5ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et odit ad culpa?"], ["description", "Quas deleniti illum id."], ["date", "2020-05-06 18:27:58.280634"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.281793"], ["updated_at", "2020-05-05 18:27:58.281793"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut laboriosam itaque distinctio?"], ["description", "Voluptas ea cumque et."], ["date", "2020-05-06 18:27:58.283327"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.284271"], ["updated_at", "2020-05-05 18:27:58.284271"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum possimus quidem vel?"], ["description", "Et porro voluptatibus repellat."], ["date", "2020-05-06 18:27:58.285689"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.286591"], ["updated_at", "2020-05-05 18:27:58.286591"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero qui quis autem?"], ["description", "Tempora ipsum modi cupiditate."], ["date", "2020-05-06 18:27:58.288139"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.289087"], ["updated_at", "2020-05-05 18:27:58.289087"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem voluptatem quasi vel?"], ["description", "Molestiae consequuntur doloribus inventore."], ["date", "2020-05-06 18:27:58.290481"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.291487"], ["updated_at", "2020-05-05 18:27:58.291487"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto aut porro qui?"], ["description", "Pariatur sint ullam quos."], ["date", "2020-05-06 18:27:58.293358"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.294531"], ["updated_at", "2020-05-05 18:27:58.294531"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:27:58 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 3ms (Views: 0.5ms | ActiveRecord: 0.3ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Charlene Ryan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DUq1rDCf0sBedWMZxRtLie6pwECQsbCPuiOr7g6ZRSrcizk0MOgM6"], ["created_at", "2020-05-05 18:27:58.311532"], ["updated_at", "2020-05-05 18:27:58.311532"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eligendi"], ["description", "Adipisci qui ea deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.314658"], ["updated_at", "2020-05-05 18:27:58.314658"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum earum omnis rerum?"], ["description", "Magnam sit ipsum sed."], ["date", "2020-05-06 18:27:58.316426"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.317759"], ["updated_at", "2020-05-05 18:27:58.317759"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est placeat animi aut?"], ["description", "Velit pariatur quasi veniam."], ["date", "2020-05-06 18:27:58.320316"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.322142"], ["updated_at", "2020-05-05 18:27:58.322142"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui recusandae laudantium assumenda?"], ["description", "Earum aut cupiditate natus."], ["date", "2020-05-06 18:27:58.324506"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.326518"], ["updated_at", "2020-05-05 18:27:58.326518"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi impedit sit consequuntur?"], ["description", "Dolorem vel animi est."], ["date", "2020-05-06 18:27:58.328309"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.329455"], ["updated_at", "2020-05-05 18:27:58.329455"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed et velit fugiat?"], ["description", "Repudiandae expedita quod aut."], ["date", "2020-05-06 18:27:58.330930"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.331874"], ["updated_at", "2020-05-05 18:27:58.331874"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem reiciendis et ex?"], ["description", "Delectus explicabo cum et."], ["date", "2020-05-06 18:27:58.333184"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.334008"], ["updated_at", "2020-05-05 18:27:58.334008"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima nam nostrum vel?"], ["description", "Provident nesciunt placeat architecto."], ["date", "2020-05-06 18:27:58.335288"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.336106"], ["updated_at", "2020-05-05 18:27:58.336106"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex vero ad corporis?"], ["description", "Animi expedita consequatur est."], ["date", "2020-05-06 18:27:58.337641"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.339384"], ["updated_at", "2020-05-05 18:27:58.339384"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit vero id natus?"], ["description", "Dolor quo sint autem."], ["date", "2020-05-06 18:27:58.341467"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.345454"], ["updated_at", "2020-05-05 18:27:58.345454"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel vitae libero et?"], ["description", "Et consequatur repellat neque."], ["date", "2020-05-06 18:27:58.348901"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.349901"], ["updated_at", "2020-05-05 18:27:58.349901"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae qui velit facilis?"], ["description", "Repellendus iste hic qui."], ["date", "2020-05-06 18:27:58.351503"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.352989"], ["updated_at", "2020-05-05 18:27:58.352989"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut inventore cupiditate qui?"], ["description", "Et voluptatem quae sed."], ["date", "2020-05-06 18:27:58.355498"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.356783"], ["updated_at", "2020-05-05 18:27:58.356783"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et rerum soluta modi?"], ["description", "Voluptate dolor deserunt vitae."], ["date", "2020-05-06 18:27:58.361044"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.362660"], ["updated_at", "2020-05-05 18:27:58.362660"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et alias exercitationem nobis?"], ["description", "Accusantium corrupti beatae odit."], ["date", "2020-05-06 18:27:58.365114"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.366801"], ["updated_at", "2020-05-05 18:27:58.366801"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique consequuntur dolor deserunt?"], ["description", "Nam tempore ipsum tempora."], ["date", "2020-05-06 18:27:58.369296"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.370856"], ["updated_at", "2020-05-05 18:27:58.370856"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta quo maxime voluptatibus?"], ["description", "Praesentium animi doloremque aut."], ["date", "2020-05-06 18:27:58.372788"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.373947"], ["updated_at", "2020-05-05 18:27:58.373947"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et perspiciatis atque qui?"], ["description", "Quidem tenetur commodi esse."], ["date", "2020-05-06 18:27:58.376888"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.379993"], ["updated_at", "2020-05-05 18:27:58.379993"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores quisquam recusandae qui?"], ["description", "Optio et ea eveniet."], ["date", "2020-05-06 18:27:58.382945"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.384553"], ["updated_at", "2020-05-05 18:27:58.384553"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt eos repellendus id?"], ["description", "Beatae omnis eveniet provident."], ["date", "2020-05-06 18:27:58.386813"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.388334"], ["updated_at", "2020-05-05 18:27:58.388334"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.8ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et dicta eveniet asperiores?"], ["description", "Esse quia repellendus aliquid."], ["date", "2020-05-06 18:27:58.390490"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.393692"], ["updated_at", "2020-05-05 18:27:58.393692"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:27:58 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 404 Not Found in 4ms (Views: 0.5ms | ActiveRecord: 0.4ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Marcellus Krajcik"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$K1Pb.1jsORqSr67FjEnLx.Q6ezY1cyKpBVBMGzhZSq.RowOdFhCzm"], ["created_at", "2020-05-05 18:27:58.413233"], ["updated_at", "2020-05-05 18:27:58.413233"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Dolore nesciunt quasi porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.417274"], ["updated_at", "2020-05-05 18:27:58.417274"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita dolorum eum corrupti?"], ["description", "Itaque odio eos amet."], ["date", "2020-05-06 18:27:58.420663"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.422272"], ["updated_at", "2020-05-05 18:27:58.422272"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse ut et et?"], ["description", "Voluptatum quos est aut."], ["date", "2020-05-06 18:27:58.425321"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.427630"], ["updated_at", "2020-05-05 18:27:58.427630"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem nam atque dolores?"], ["description", "Repellendus aliquam vitae eum."], ["date", "2020-05-06 18:27:58.429122"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.430239"], ["updated_at", "2020-05-05 18:27:58.430239"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui aut consequatur eos?"], ["description", "Qui repellendus maiores labore."], ["date", "2020-05-06 18:27:58.431613"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.432502"], ["updated_at", "2020-05-05 18:27:58.432502"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto praesentium non omnis?"], ["description", "Tempore inventore molestiae error."], ["date", "2020-05-06 18:27:58.433688"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.434449"], ["updated_at", "2020-05-05 18:27:58.434449"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni velit tempore iure?"], ["description", "Facere dolores ut molestiae."], ["date", "2020-05-06 18:27:58.435586"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.436342"], ["updated_at", "2020-05-05 18:27:58.436342"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum occaecati iste est?"], ["description", "Fuga qui minima in."], ["date", "2020-05-06 18:27:58.437553"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.438948"], ["updated_at", "2020-05-05 18:27:58.438948"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus tempore fuga dignissimos?"], ["description", "Aut omnis voluptas asperiores."], ["date", "2020-05-06 18:27:58.441129"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.444593"], ["updated_at", "2020-05-05 18:27:58.444593"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Possimus velit ipsam et?"], ["description", "Earum qui ad commodi."], ["date", "2020-05-06 18:27:58.447012"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.448035"], ["updated_at", "2020-05-05 18:27:58.448035"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et qui ea enim?"], ["description", "Magni molestiae dolore assumenda."], ["date", "2020-05-06 18:27:58.450206"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.451292"], ["updated_at", "2020-05-05 18:27:58.451292"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod temporibus facilis voluptatum?"], ["description", "Placeat animi consequatur dolore."], ["date", "2020-05-06 18:27:58.453018"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.454202"], ["updated_at", "2020-05-05 18:27:58.454202"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque quae pariatur inventore?"], ["description", "Nihil necessitatibus repellendus doloremque."], ["date", "2020-05-06 18:27:58.455779"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.456546"], ["updated_at", "2020-05-05 18:27:58.456546"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla asperiores dolore sunt?"], ["description", "Sequi excepturi libero ipsa."], ["date", "2020-05-06 18:27:58.457752"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.459358"], ["updated_at", "2020-05-05 18:27:58.459358"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas quia debitis ut?"], ["description", "Eaque suscipit ullam velit."], ["date", "2020-05-06 18:27:58.462326"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.463659"], ["updated_at", "2020-05-05 18:27:58.463659"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius et dignissimos optio?"], ["description", "Ex est ut vitae."], ["date", "2020-05-06 18:27:58.465356"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.466448"], ["updated_at", "2020-05-05 18:27:58.466448"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum cupiditate nihil ut?"], ["description", "Est quasi et sed."], ["date", "2020-05-06 18:27:58.467829"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.468709"], ["updated_at", "2020-05-05 18:27:58.468709"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus enim quia aut?"], ["description", "Ab nihil rerum tempore."], ["date", "2020-05-06 18:27:58.470108"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.471230"], ["updated_at", "2020-05-05 18:27:58.471230"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque illum laborum et?"], ["description", "Cum eum similique error."], ["date", "2020-05-06 18:27:58.472930"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.473969"], ["updated_at", "2020-05-05 18:27:58.473969"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem officiis hic labore?"], ["description", "A officiis quasi laborum."], ["date", "2020-05-06 18:27:58.475536"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.477128"], ["updated_at", "2020-05-05 18:27:58.477128"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit praesentium dolorem iure?"], ["description", "Sint eligendi aut aut."], ["date", "2020-05-06 18:27:58.480609"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:27:58.481841"], ["updated_at", "2020-05-05 18:27:58.481841"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:27:58 -0300 +Processing by MeetingsController#destroy as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + UserMeeting Load (0.1ms) SELECT "user_meetings".* FROM "user_meetings" WHERE "user_meetings"."meeting_id" = ? [["meeting_id", 1]] + Meeting Destroy (0.2ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 12ms (ActiveRecord: 0.9ms | Allocations: 2317) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (13.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "adipisci"], ["description", "Cumque in consequatur optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.508811"], ["updated_at", "2020-05-05 18:27:58.508811"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Reiciendis corrupti laudantium consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.526552"], ["updated_at", "2020-05-05 18:27:58.526552"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ratione"], ["description", "Quibusdam velit commodi est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.528465"], ["updated_at", "2020-05-05 18:27:58.528465"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Eum quod quam rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.530062"], ["updated_at", "2020-05-05 18:27:58.530062"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eveniet"], ["description", "At quos non cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.531820"], ["updated_at", "2020-05-05 18:27:58.531820"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quaerat"], ["description", "Non iure deserunt ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.533583"], ["updated_at", "2020-05-05 18:27:58.533583"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cumque"], ["description", "Veniam et sint omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.535007"], ["updated_at", "2020-05-05 18:27:58.535007"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempora"], ["description", "Enim sit illum soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.536403"], ["updated_at", "2020-05-05 18:27:58.536403"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Illum et sit temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.537741"], ["updated_at", "2020-05-05 18:27:58.537741"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "expedita"], ["description", "Id nobis nam voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.540239"], ["updated_at", "2020-05-05 18:27:58.540239"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Celestine Batz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fyQe0scCntS.SJ0tjFJOeOdYdZh1frW7lc4ZDW6jMLXR.wpuKBmii"], ["created_at", "2020-05-05 18:27:58.544256"], ["updated_at", "2020-05-05 18:27:58.544256"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:58 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.34ms) +Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.3ms | Allocations: 2911) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Amet quis esse voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.565836"], ["updated_at", "2020-05-05 18:27:58.565836"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perspiciatis"], ["description", "Consectetur vero repudiandae ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.568972"], ["updated_at", "2020-05-05 18:27:58.568972"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorum"], ["description", "Eaque et qui animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.570634"], ["updated_at", "2020-05-05 18:27:58.570634"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Dolorem qui veritatis consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.572111"], ["updated_at", "2020-05-05 18:27:58.572111"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repudiandae"], ["description", "Sed architecto laborum voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.573570"], ["updated_at", "2020-05-05 18:27:58.573570"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Voluptatem voluptates rerum ullam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.574998"], ["updated_at", "2020-05-05 18:27:58.574998"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Porro nisi maiores enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.577147"], ["updated_at", "2020-05-05 18:27:58.577147"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "porro"], ["description", "Asperiores minus quasi atque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.579079"], ["updated_at", "2020-05-05 18:27:58.579079"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Officia nisi temporibus quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.582479"], ["updated_at", "2020-05-05 18:27:58.582479"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corrupti"], ["description", "Nesciunt ut nihil omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.585185"], ["updated_at", "2020-05-05 18:27:58.585185"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Emerson Berge"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$47E9hqajYaoSKt5TDhD1oOw7Ze4OkgKJafqIWIP8YrlBVIHdk8o0u"], ["created_at", "2020-05-05 18:27:58.589068"], ["updated_at", "2020-05-05 18:27:58.589068"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:58 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2845) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Nihil illo ab et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.610960"], ["updated_at", "2020-05-05 18:27:58.610960"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Nulla quia suscipit et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.614567"], ["updated_at", "2020-05-05 18:27:58.614567"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dicta"], ["description", "Quia quia esse magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.616212"], ["updated_at", "2020-05-05 18:27:58.616212"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eveniet"], ["description", "Placeat beatae officiis repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.618373"], ["updated_at", "2020-05-05 18:27:58.618373"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Aut aut occaecati numquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.621613"], ["updated_at", "2020-05-05 18:27:58.621613"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.4ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusantium"], ["description", "Autem qui amet rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.624104"], ["updated_at", "2020-05-05 18:27:58.624104"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aspernatur"], ["description", "Error qui veniam culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.628867"], ["updated_at", "2020-05-05 18:27:58.628867"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellendus"], ["description", "Pariatur doloremque commodi repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.630508"], ["updated_at", "2020-05-05 18:27:58.630508"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nemo"], ["description", "Tempore cupiditate doloribus dignissimos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.632063"], ["updated_at", "2020-05-05 18:27:58.632063"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Quos tempora similique enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.633523"], ["updated_at", "2020-05-05 18:27:58.633523"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Newton Cruickshank"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DDjL3qaH35Vp/DKbnSooxO7QXCiKxddT.tPE.grw5mA5t5UVDdsXq"], ["created_at", "2020-05-05 18:27:58.636303"], ["updated_at", "2020-05-05 18:27:58.636303"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:58 -0300 +Processing by MeetsController#index as HTML + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.12ms) +Completed 200 OK in 8ms (Views: 5.8ms | ActiveRecord: 0.4ms | Allocations: 2841) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:27:58 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.34ms) +Completed 200 OK in 4ms (Views: 1.7ms | ActiveRecord: 0.4ms | Allocations: 1241) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dignissimos"], ["description", "Atque dolor voluptatem nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.664844"], ["updated_at", "2020-05-05 18:27:58.664844"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "amet"], ["description", "Nostrum ducimus id est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.667662"], ["updated_at", "2020-05-05 18:27:58.667662"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eius"], ["description", "Maxime dolorum atque consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.669225"], ["updated_at", "2020-05-05 18:27:58.669225"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Aut in provident nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.670654"], ["updated_at", "2020-05-05 18:27:58.670654"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "labore"], ["description", "Quaerat sunt veritatis expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.672092"], ["updated_at", "2020-05-05 18:27:58.672092"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquid"], ["description", "Recusandae quasi qui quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.673471"], ["updated_at", "2020-05-05 18:27:58.673471"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minus"], ["description", "Nihil quia perspiciatis aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.674745"], ["updated_at", "2020-05-05 18:27:58.674745"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quae"], ["description", "Et praesentium quia libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.676872"], ["updated_at", "2020-05-05 18:27:58.676872"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Delectus laboriosam deleniti eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.678394"], ["updated_at", "2020-05-05 18:27:58.678394"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Aut adipisci id fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.680839"], ["updated_at", "2020-05-05 18:27:58.680839"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jose Murphy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$r9yU2E6WGriATVICoopi6u5XaPQm6LE2NFbvNtG0IPgTJsdPpjuNe"], ["created_at", "2020-05-05 18:27:58.684733"], ["updated_at", "2020-05-05 18:27:58.684733"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:58 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.6ms) +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 15:27:58 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Vel voluptatem et rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.709199"], ["updated_at", "2020-05-05 18:27:58.709199"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Repudiandae tenetur voluptatibus culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.712800"], ["updated_at", "2020-05-05 18:27:58.712800"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Aut error molestias facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.714512"], ["updated_at", "2020-05-05 18:27:58.714512"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Sapiente ad maiores architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.716029"], ["updated_at", "2020-05-05 18:27:58.716029"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Vero qui aut officiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.717458"], ["updated_at", "2020-05-05 18:27:58.717458"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "delectus"], ["description", "Voluptatum quaerat mollitia veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.718845"], ["updated_at", "2020-05-05 18:27:58.718845"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Esse numquam commodi dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.721780"], ["updated_at", "2020-05-05 18:27:58.721780"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Architecto quo inventore dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.724193"], ["updated_at", "2020-05-05 18:27:58.724193"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Nobis vel rem qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.728404"], ["updated_at", "2020-05-05 18:27:58.728404"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "expedita"], ["description", "Sed quis similique voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.730529"], ["updated_at", "2020-05-05 18:27:58.730529"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Malissa Mertz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2S/GxO28Iii576Bx3DrBCOUWPSvKyABWRs2DUG1iinK3UrBDV5PR6"], ["created_at", "2020-05-05 18:27:58.733535"], ["updated_at", "2020-05-05 18:27:58.733535"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:58 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.22ms) +Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:27:58 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Ea eos facilis dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.755896"], ["updated_at", "2020-05-05 18:27:58.755896"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magni"], ["description", "Cumque distinctio ut tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.759036"], ["updated_at", "2020-05-05 18:27:58.759036"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aperiam"], ["description", "Est nisi ea ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.761944"], ["updated_at", "2020-05-05 18:27:58.761944"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "praesentium"], ["description", "Autem dignissimos voluptatem nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.765125"], ["updated_at", "2020-05-05 18:27:58.765125"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Nostrum sed est sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.767781"], ["updated_at", "2020-05-05 18:27:58.767781"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "At atque sunt earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.769667"], ["updated_at", "2020-05-05 18:27:58.769667"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusamus"], ["description", "Veniam animi modi quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.771273"], ["updated_at", "2020-05-05 18:27:58.771273"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Quia aut doloribus et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.772701"], ["updated_at", "2020-05-05 18:27:58.772701"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Et aliquam molestiae vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.774076"], ["updated_at", "2020-05-05 18:27:58.774076"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "numquam"], ["description", "Assumenda fugiat nostrum qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.776292"], ["updated_at", "2020-05-05 18:27:58.776292"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gena Stiedemann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mEe9UAe1VLoDElZBdYT3/eeUq2e7Zz86dLhlXrhCYXnNd1ugS3p.u"], ["created_at", "2020-05-05 18:27:58.779328"], ["updated_at", "2020-05-05 18:27:58.779328"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:58 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.73ms) +Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.3ms | Allocations: 2840) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:27:58 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 512) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (36.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Ab autem animi id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.834279"], ["updated_at", "2020-05-05 18:27:58.834279"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quisquam"], ["description", "Minima ea expedita ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.837140"], ["updated_at", "2020-05-05 18:27:58.837140"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Beatae qui ea aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.838518"], ["updated_at", "2020-05-05 18:27:58.838518"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facilis"], ["description", "Molestiae nesciunt eum sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.839843"], ["updated_at", "2020-05-05 18:27:58.839843"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Nemo consequatur hic expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.845089"], ["updated_at", "2020-05-05 18:27:58.845089"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Et sequi eum dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.847458"], ["updated_at", "2020-05-05 18:27:58.847458"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laudantium"], ["description", "Quia quaerat ut fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.849233"], ["updated_at", "2020-05-05 18:27:58.849233"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Architecto dolore hic minus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.850543"], ["updated_at", "2020-05-05 18:27:58.850543"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Repudiandae recusandae pariatur ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.851857"], ["updated_at", "2020-05-05 18:27:58.851857"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "animi"], ["description", "Amet id rerum sequi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.869110"], ["updated_at", "2020-05-05 18:27:58.869110"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Eladia Lakin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3sqwceq7DAiHEFpM.KtrZu6WK5pFzlXKDNggLtYfifNTdiHdYD6Ya"], ["created_at", "2020-05-05 18:27:58.872015"], ["updated_at", "2020-05-05 18:27:58.872015"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:58 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.44ms) +Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2841) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:27:58 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:27:58.898049"], ["updated_at", "2020-05-05 18:27:58.898049"], ["created_by", "1"]] +  (0.2ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.58ms) +Completed 201 Created in 23ms (Views: 1.0ms | ActiveRecord: 1.2ms | Allocations: 6207) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Aut quia cupiditate consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.916521"], ["updated_at", "2020-05-05 18:27:58.916521"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perferendis"], ["description", "Omnis ea consequatur quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.919308"], ["updated_at", "2020-05-05 18:27:58.919308"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eligendi"], ["description", "Sapiente distinctio porro corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.921085"], ["updated_at", "2020-05-05 18:27:58.921085"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Esse debitis deserunt provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.923951"], ["updated_at", "2020-05-05 18:27:58.923951"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "placeat"], ["description", "Aliquam eius magnam voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.926629"], ["updated_at", "2020-05-05 18:27:58.926629"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "reiciendis"], ["description", "Et cum optio voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.928041"], ["updated_at", "2020-05-05 18:27:58.928041"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Nulla unde beatae est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.929275"], ["updated_at", "2020-05-05 18:27:58.929275"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Id vitae perspiciatis enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.930613"], ["updated_at", "2020-05-05 18:27:58.930613"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Nam maiores incidunt illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.931921"], ["updated_at", "2020-05-05 18:27:58.931921"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iure"], ["description", "Debitis magnam earum reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.933198"], ["updated_at", "2020-05-05 18:27:58.933198"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Daryl Reilly"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ACUxYn1MQSJ/OyPMfuy.3uiXBtLLShFLQ.NASaxhk77WxxJVsZm.u"], ["created_at", "2020-05-05 18:27:58.935800"], ["updated_at", "2020-05-05 18:27:58.935800"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:58 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (5.11ms) +Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.1ms | Allocations: 2845) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:27:58 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:27:58.949298"], ["updated_at", "2020-05-05 18:27:58.949298"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.5ms) +Completed 201 Created in 5ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 2251) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Et et ullam qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.963920"], ["updated_at", "2020-05-05 18:27:58.963920"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nostrum"], ["description", "Ipsa iure aspernatur magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.967387"], ["updated_at", "2020-05-05 18:27:58.967387"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Cumque qui non qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.969289"], ["updated_at", "2020-05-05 18:27:58.969289"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maiores"], ["description", "Et eum consectetur est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.970575"], ["updated_at", "2020-05-05 18:27:58.970575"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quae"], ["description", "Ea provident earum voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.971963"], ["updated_at", "2020-05-05 18:27:58.971963"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Autem nobis deserunt consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.973263"], ["updated_at", "2020-05-05 18:27:58.973263"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsam"], ["description", "Velit consequatur tempore possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.974526"], ["updated_at", "2020-05-05 18:27:58.974526"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nisi"], ["description", "Sed molestiae eius consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.976489"], ["updated_at", "2020-05-05 18:27:58.976489"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "earum"], ["description", "At nam ab expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.978069"], ["updated_at", "2020-05-05 18:27:58.978069"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Amet aperiam maxime sapiente."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:58.979426"], ["updated_at", "2020-05-05 18:27:58.979426"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Owen Pfeffer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LfpMMwuKZfrxfAd2d3GbbOk72euKlsn8k7XP30VVHYh4SAwWpgyV2"], ["created_at", "2020-05-05 18:27:58.982477"], ["updated_at", "2020-05-05 18:27:58.982477"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:58 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.1ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:27:58 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 4006) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Accusantium necessitatibus neque voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.010159"], ["updated_at", "2020-05-05 18:27:59.010159"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsa"], ["description", "Delectus totam odit nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.013888"], ["updated_at", "2020-05-05 18:27:59.013888"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magnam"], ["description", "Non sequi velit voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.015632"], ["updated_at", "2020-05-05 18:27:59.015632"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Veniam sed eos similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.016891"], ["updated_at", "2020-05-05 18:27:59.016891"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Enim est est qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.018226"], ["updated_at", "2020-05-05 18:27:59.018226"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Est velit minima laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.019623"], ["updated_at", "2020-05-05 18:27:59.019623"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "distinctio"], ["description", "Consequuntur rerum ullam corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.021170"], ["updated_at", "2020-05-05 18:27:59.021170"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Tempora optio dolore occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.023420"], ["updated_at", "2020-05-05 18:27:59.023420"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "Sunt eveniet dolor facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.025384"], ["updated_at", "2020-05-05 18:27:59.025384"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusantium"], ["description", "Ducimus incidunt voluptatum modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.028313"], ["updated_at", "2020-05-05 18:27:59.028313"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elroy Rau"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HiHnAUEmmxYd4uwicSNsuOMet8K5Xp4zPRe5A/jctir/g.aFUAOYm"], ["created_at", "2020-05-05 18:27:59.031015"], ["updated_at", "2020-05-05 18:27:59.031015"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.25ms) +Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms | Allocations: 2845) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:27:59 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 3697) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Totam et beatae in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.055257"], ["updated_at", "2020-05-05 18:27:59.055257"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Optio distinctio aut sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.058885"], ["updated_at", "2020-05-05 18:27:59.058885"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officiis"], ["description", "Explicabo aperiam porro aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.061479"], ["updated_at", "2020-05-05 18:27:59.061479"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugit"], ["description", "Aspernatur laborum necessitatibus odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.063940"], ["updated_at", "2020-05-05 18:27:59.063940"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "similique"], ["description", "Cum doloremque magnam eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.065515"], ["updated_at", "2020-05-05 18:27:59.065515"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempore"], ["description", "Nihil illo quia ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.067085"], ["updated_at", "2020-05-05 18:27:59.067085"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Excepturi rerum voluptatibus dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.069224"], ["updated_at", "2020-05-05 18:27:59.069224"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Fugit quis quia et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.070785"], ["updated_at", "2020-05-05 18:27:59.070785"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Rerum ut omnis perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.072211"], ["updated_at", "2020-05-05 18:27:59.072211"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magnam"], ["description", "Iste est nihil architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.073548"], ["updated_at", "2020-05-05 18:27:59.073548"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hope Yundt"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Ur/ZUulwYby7nfv2FODRu.3pbnStJuyOBrCR5Us7gA/LdADPJkiti"], ["created_at", "2020-05-05 18:27:59.076465"], ["updated_at", "2020-05-05 18:27:59.076465"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | Allocations: 2843) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:27:59 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:27:59.087556"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 1043) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "debitis"], ["description", "Quo veritatis voluptates eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.098198"], ["updated_at", "2020-05-05 18:27:59.098198"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vitae"], ["description", "Vel dolorem velit aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.101994"], ["updated_at", "2020-05-05 18:27:59.101994"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laudantium"], ["description", "Blanditiis voluptatibus optio voluptatum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.104322"], ["updated_at", "2020-05-05 18:27:59.104322"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "hic"], ["description", "Laboriosam earum corporis nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.105877"], ["updated_at", "2020-05-05 18:27:59.105877"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corrupti"], ["description", "Ipsam autem repellat eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.107180"], ["updated_at", "2020-05-05 18:27:59.107180"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Vel iure consectetur in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.108593"], ["updated_at", "2020-05-05 18:27:59.108593"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Architecto possimus laudantium fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.111718"], ["updated_at", "2020-05-05 18:27:59.111718"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quam"], ["description", "Eius ratione ducimus et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.113628"], ["updated_at", "2020-05-05 18:27:59.113628"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Facilis sed quas quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.114916"], ["updated_at", "2020-05-05 18:27:59.114916"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Maiores dolorem minima ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.116187"], ["updated_at", "2020-05-05 18:27:59.116187"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lorelei Green"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Y3Xeg9g.Up80zgbYYPc55uTdESgbGvMSKBTHYOJ1kVePDyp6xSCHe"], ["created_at", "2020-05-05 18:27:59.118739"], ["updated_at", "2020-05-05 18:27:59.118739"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.36ms) +Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms | Allocations: 2846) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:27:59 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:27:59.130268"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 999) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (2.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "animi"], ["description", "Reiciendis illo repellendus aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.139984"], ["updated_at", "2020-05-05 18:27:59.139984"], ["created_by", "1"]] +  (0.4ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quos"], ["description", "Voluptas occaecati aut sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.146735"], ["updated_at", "2020-05-05 18:27:59.146735"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "neque"], ["description", "Quam esse nam error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.148489"], ["updated_at", "2020-05-05 18:27:59.148489"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Dolore qui velit non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.149850"], ["updated_at", "2020-05-05 18:27:59.149850"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Dolorem facilis ut ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.151138"], ["updated_at", "2020-05-05 18:27:59.151138"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Saepe tenetur quas accusantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.152477"], ["updated_at", "2020-05-05 18:27:59.152477"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "praesentium"], ["description", "Unde atque saepe maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.153830"], ["updated_at", "2020-05-05 18:27:59.153830"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "a"], ["description", "Quis odio quibusdam omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.155083"], ["updated_at", "2020-05-05 18:27:59.155083"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatum"], ["description", "Perferendis delectus nemo iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.156340"], ["updated_at", "2020-05-05 18:27:59.156340"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Voluptatem cupiditate qui et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:27:59.157582"], ["updated_at", "2020-05-05 18:27:59.157582"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rosina Rice"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LNK22GI0WmLgQbhQlnlWbuac6gF3wU4iWnCT1EDCEViLscyhRR5.m"], ["created_at", "2020-05-05 18:27:59.160167"], ["updated_at", "2020-05-05 18:27:59.160167"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:27:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.38ms) +Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.3ms | Allocations: 2843) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:27:59 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1205) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (4.8ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.3ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (162.8ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (1.4ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (167.1ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (150.6ms) DELETE FROM "user_meetings"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (148.5ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (292.3ms) DELETE FROM "conversations"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (194.2ms) DELETE FROM "messagems"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (185.6ms) DELETE FROM "users"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jay Pacocha"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$goKxQHUzBryhS9WnGzihWeJKlONOjuxIW/N6w2CerV06HkVT140Yu"], ["created_at", "2020-05-05 18:30:33.334603"], ["updated_at", "2020-05-05 18:30:33.334603"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Iusto at fugit consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:33.353588"], ["updated_at", "2020-05-05 18:30:33.353588"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos distinctio minima dolorum?"], ["description", "Nihil laudantium doloremque quo."], ["date", "2020-05-06 18:30:33.376808"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.418063"], ["updated_at", "2020-05-05 18:30:33.418063"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed odio autem iure?"], ["description", "Vitae libero accusantium veritatis."], ["date", "2020-05-06 18:30:33.420011"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.420943"], ["updated_at", "2020-05-05 18:30:33.420943"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt facere deserunt ipsum?"], ["description", "Est illo et tenetur."], ["date", "2020-05-06 18:30:33.422399"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.423222"], ["updated_at", "2020-05-05 18:30:33.423222"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut odit consectetur id?"], ["description", "Deserunt sit fuga sed."], ["date", "2020-05-06 18:30:33.424686"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.425556"], ["updated_at", "2020-05-05 18:30:33.425556"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor necessitatibus facere et?"], ["description", "Fugiat labore eius quia."], ["date", "2020-05-06 18:30:33.427133"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.427952"], ["updated_at", "2020-05-05 18:30:33.427952"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis delectus veniam excepturi?"], ["description", "Necessitatibus deserunt qui rerum."], ["date", "2020-05-06 18:30:33.429354"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.430188"], ["updated_at", "2020-05-05 18:30:33.430188"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia est illum est?"], ["description", "Tempore adipisci esse veritatis."], ["date", "2020-05-06 18:30:33.431641"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.432413"], ["updated_at", "2020-05-05 18:30:33.432413"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit sit aliquam corrupti?"], ["description", "Ut tempora eius ipsam."], ["date", "2020-05-06 18:30:33.433743"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.434555"], ["updated_at", "2020-05-05 18:30:33.434555"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non similique voluptatum est?"], ["description", "Quidem blanditiis laborum inventore."], ["date", "2020-05-06 18:30:33.435824"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.436600"], ["updated_at", "2020-05-05 18:30:33.436600"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam et sequi omnis?"], ["description", "Quaerat ut voluptas dicta."], ["date", "2020-05-06 18:30:33.438579"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.439441"], ["updated_at", "2020-05-05 18:30:33.439441"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem inventore eveniet omnis?"], ["description", "Beatae doloremque totam laborum."], ["date", "2020-05-06 18:30:33.440864"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.441687"], ["updated_at", "2020-05-05 18:30:33.441687"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam animi mollitia debitis?"], ["description", "Ad explicabo dolore cupiditate."], ["date", "2020-05-06 18:30:33.443131"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.443909"], ["updated_at", "2020-05-05 18:30:33.443909"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio dolores ut qui?"], ["description", "Natus possimus est quia."], ["date", "2020-05-06 18:30:33.445174"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.445938"], ["updated_at", "2020-05-05 18:30:33.445938"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id dolore aperiam quibusdam?"], ["description", "Possimus sed ratione molestias."], ["date", "2020-05-06 18:30:33.447206"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.447933"], ["updated_at", "2020-05-05 18:30:33.447933"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem rerum ad id?"], ["description", "Enim aut eveniet et."], ["date", "2020-05-06 18:30:33.449316"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.450356"], ["updated_at", "2020-05-05 18:30:33.450356"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae ut accusantium dolorem?"], ["description", "Sapiente iste culpa est."], ["date", "2020-05-06 18:30:33.451637"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.452475"], ["updated_at", "2020-05-05 18:30:33.452475"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem iure voluptatem aut?"], ["description", "Natus et nulla ullam."], ["date", "2020-05-06 18:30:33.453639"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.454381"], ["updated_at", "2020-05-05 18:30:33.454381"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur illum nihil dolorem?"], ["description", "Et omnis aut deleniti."], ["date", "2020-05-06 18:30:33.455725"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.456510"], ["updated_at", "2020-05-05 18:30:33.456510"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor ut cupiditate libero?"], ["description", "Labore non ratione autem."], ["date", "2020-05-06 18:30:33.457869"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.458739"], ["updated_at", "2020-05-05 18:30:33.458739"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi fugiat nulla et?"], ["description", "Voluptas aut modi est."], ["date", "2020-05-06 18:30:33.460123"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.460913"], ["updated_at", "2020-05-05 18:30:33.460913"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:30:33 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (7.59ms) +Completed 200 OK in 33ms (Views: 15.0ms | ActiveRecord: 0.6ms | Allocations: 8638) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hassan Reichert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LH4rJT60idsoOQ2rLxWhreMy9KKHEgdJtTlVA8NXJ2rRtJCUzOeAe"], ["created_at", "2020-05-05 18:30:33.543999"], ["updated_at", "2020-05-05 18:30:33.543999"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Libero quam cum quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:33.547318"], ["updated_at", "2020-05-05 18:30:33.547318"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore iste saepe eum?"], ["description", "Voluptas ab sed a."], ["date", "2020-05-06 18:30:33.549024"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.550191"], ["updated_at", "2020-05-05 18:30:33.550191"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas incidunt nostrum dolor?"], ["description", "Non doloribus dolores magni."], ["date", "2020-05-06 18:30:33.551711"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.552574"], ["updated_at", "2020-05-05 18:30:33.552574"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quia et aut?"], ["description", "Quo voluptas ut itaque."], ["date", "2020-05-06 18:30:33.553862"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.554735"], ["updated_at", "2020-05-05 18:30:33.554735"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id amet molestiae pariatur?"], ["description", "Voluptatibus qui voluptatem perferendis."], ["date", "2020-05-06 18:30:33.555935"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.556837"], ["updated_at", "2020-05-05 18:30:33.556837"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid molestiae ut eius?"], ["description", "Cum nostrum atque id."], ["date", "2020-05-06 18:30:33.558014"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.558780"], ["updated_at", "2020-05-05 18:30:33.558780"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum laudantium autem alias?"], ["description", "Doloremque qui molestiae quam."], ["date", "2020-05-06 18:30:33.560129"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.560958"], ["updated_at", "2020-05-05 18:30:33.560958"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et non totam animi?"], ["description", "Placeat et doloremque optio."], ["date", "2020-05-06 18:30:33.562263"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.563058"], ["updated_at", "2020-05-05 18:30:33.563058"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non qui veniam accusantium?"], ["description", "Totam dolorum autem quaerat."], ["date", "2020-05-06 18:30:33.564338"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.565114"], ["updated_at", "2020-05-05 18:30:33.565114"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor at blanditiis porro?"], ["description", "Et eius debitis eum."], ["date", "2020-05-06 18:30:33.566348"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.567105"], ["updated_at", "2020-05-05 18:30:33.567105"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi explicabo sed mollitia?"], ["description", "Exercitationem sit voluptatem ut."], ["date", "2020-05-06 18:30:33.568906"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.569749"], ["updated_at", "2020-05-05 18:30:33.569749"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus error et aut?"], ["description", "Voluptatem aut facere quia."], ["date", "2020-05-06 18:30:33.571272"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.572077"], ["updated_at", "2020-05-05 18:30:33.572077"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis dignissimos ratione eum?"], ["description", "Recusandae ut rem rerum."], ["date", "2020-05-06 18:30:33.573328"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.574094"], ["updated_at", "2020-05-05 18:30:33.574094"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste enim dolorem ad?"], ["description", "Aut eum occaecati fugiat."], ["date", "2020-05-06 18:30:33.575355"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.576102"], ["updated_at", "2020-05-05 18:30:33.576102"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est non accusamus fuga?"], ["description", "Consequuntur reprehenderit qui modi."], ["date", "2020-05-06 18:30:33.577413"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.578175"], ["updated_at", "2020-05-05 18:30:33.578175"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio voluptatibus corrupti eum?"], ["description", "Eos sint quidem velit."], ["date", "2020-05-06 18:30:33.579706"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.580556"], ["updated_at", "2020-05-05 18:30:33.580556"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis omnis architecto dolores?"], ["description", "Nulla rem veritatis molestiae."], ["date", "2020-05-06 18:30:33.581814"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.582555"], ["updated_at", "2020-05-05 18:30:33.582555"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae odio earum cupiditate?"], ["description", "Enim est eaque eligendi."], ["date", "2020-05-06 18:30:33.583758"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.584600"], ["updated_at", "2020-05-05 18:30:33.584600"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod accusamus ducimus dicta?"], ["description", "Qui ullam quo nesciunt."], ["date", "2020-05-06 18:30:33.585781"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.586559"], ["updated_at", "2020-05-05 18:30:33.586559"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed iusto sit quia?"], ["description", "Ex vero ea ullam."], ["date", "2020-05-06 18:30:33.587754"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.588487"], ["updated_at", "2020-05-05 18:30:33.588487"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore unde fugiat et?"], ["description", "Exercitationem accusantium neque voluptas."], ["date", "2020-05-06 18:30:33.589777"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.590570"], ["updated_at", "2020-05-05 18:30:33.590570"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:30:33 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (7.94ms) +Completed 200 OK in 11ms (Views: 9.8ms | ActiveRecord: 0.2ms | Allocations: 5511) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Beatrice Dooley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/SVthiaqVJq85zu1cWmbnuVuLlXrKrLdRO614/.nNolNUMTjs7wyS"], ["created_at", "2020-05-05 18:30:33.618817"], ["updated_at", "2020-05-05 18:30:33.618817"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Ullam cum officiis dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:33.622035"], ["updated_at", "2020-05-05 18:30:33.622035"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi magnam non sed?"], ["description", "Commodi tempora dolorem eos."], ["date", "2020-05-06 18:30:33.624035"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.625187"], ["updated_at", "2020-05-05 18:30:33.625187"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste repellendus vero facilis?"], ["description", "Cupiditate occaecati harum ipsum."], ["date", "2020-05-06 18:30:33.626717"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.627615"], ["updated_at", "2020-05-05 18:30:33.627615"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis optio fuga repellendus?"], ["description", "Repellat cumque cupiditate amet."], ["date", "2020-05-06 18:30:33.628991"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.629808"], ["updated_at", "2020-05-05 18:30:33.629808"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut fugit voluptas sit?"], ["description", "Tempore tenetur autem cupiditate."], ["date", "2020-05-06 18:30:33.631125"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.631959"], ["updated_at", "2020-05-05 18:30:33.631959"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui dolor eveniet sed?"], ["description", "Cupiditate soluta autem quia."], ["date", "2020-05-06 18:30:33.633256"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.634192"], ["updated_at", "2020-05-05 18:30:33.634192"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur sit sed exercitationem?"], ["description", "Qui voluptatibus id ullam."], ["date", "2020-05-06 18:30:33.635650"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.636505"], ["updated_at", "2020-05-05 18:30:33.636505"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto rem temporibus ducimus?"], ["description", "Ex impedit ut aut."], ["date", "2020-05-06 18:30:33.637706"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.638502"], ["updated_at", "2020-05-05 18:30:33.638502"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem sint eligendi deleniti?"], ["description", "Nam voluptatem molestiae veritatis."], ["date", "2020-05-06 18:30:33.639919"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.640868"], ["updated_at", "2020-05-05 18:30:33.640868"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis ut dolor et?"], ["description", "Eos omnis ab aliquam."], ["date", "2020-05-06 18:30:33.642106"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.643020"], ["updated_at", "2020-05-05 18:30:33.643020"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt iure rerum quo?"], ["description", "Tempore perspiciatis cumque rerum."], ["date", "2020-05-06 18:30:33.644783"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.645652"], ["updated_at", "2020-05-05 18:30:33.645652"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit facere est sunt?"], ["description", "Nobis voluptatem rerum in."], ["date", "2020-05-06 18:30:33.647039"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.647872"], ["updated_at", "2020-05-05 18:30:33.647872"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel excepturi qui non?"], ["description", "Blanditiis necessitatibus eos voluptatem."], ["date", "2020-05-06 18:30:33.649192"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.650080"], ["updated_at", "2020-05-05 18:30:33.650080"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita alias impedit cupiditate?"], ["description", "Magni dignissimos nemo eos."], ["date", "2020-05-06 18:30:33.651393"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.652228"], ["updated_at", "2020-05-05 18:30:33.652228"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem quidem reiciendis provident?"], ["description", "Qui consequatur nostrum asperiores."], ["date", "2020-05-06 18:30:33.653518"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.654321"], ["updated_at", "2020-05-05 18:30:33.654321"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed qui occaecati illo?"], ["description", "Tempore repellendus itaque animi."], ["date", "2020-05-06 18:30:33.655548"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.656316"], ["updated_at", "2020-05-05 18:30:33.656316"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro at in laboriosam?"], ["description", "Veniam dolorum et quae."], ["date", "2020-05-06 18:30:33.657468"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.658264"], ["updated_at", "2020-05-05 18:30:33.658264"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum aut modi exercitationem?"], ["description", "Sit in sit provident."], ["date", "2020-05-06 18:30:33.659710"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.660663"], ["updated_at", "2020-05-05 18:30:33.660663"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi est animi consequatur?"], ["description", "Et ab eum velit."], ["date", "2020-05-06 18:30:33.661949"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.662742"], ["updated_at", "2020-05-05 18:30:33.662742"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt cupiditate eos minus?"], ["description", "Animi esse quis harum."], ["date", "2020-05-06 18:30:33.663941"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.664765"], ["updated_at", "2020-05-05 18:30:33.664765"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora quia reiciendis laudantium?"], ["description", "Qui ut et quasi."], ["date", "2020-05-06 18:30:33.665938"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:33.666734"], ["updated_at", "2020-05-05 18:30:33.666734"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:30:33 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 404 Not Found in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms | Allocations: 865) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (299.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (2.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Corey Kiehn Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Zf4jSrK1L7yyZ..5nQl4EO5tUbqo2obFFgNcr3y4FK4zBCzrPsa1K"], ["created_at", "2020-05-05 18:30:33.985379"], ["updated_at", "2020-05-05 18:30:33.985379"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ex"], ["description", "Reiciendis dolorem nisi distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:33.993116"], ["updated_at", "2020-05-05 18:30:33.993116"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet molestiae porro magnam?"], ["description", "Delectus ut repudiandae pariatur."], ["date", "2020-05-06 18:30:33.997705"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.000394"], ["updated_at", "2020-05-05 18:30:34.000394"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates ut laudantium velit?"], ["description", "Et enim molestiae unde."], ["date", "2020-05-06 18:30:34.006371"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.010584"], ["updated_at", "2020-05-05 18:30:34.010584"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus tempora officia explicabo?"], ["description", "Voluptates quibusdam aperiam nam."], ["date", "2020-05-06 18:30:34.015164"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.016862"], ["updated_at", "2020-05-05 18:30:34.016862"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident quasi qui suscipit?"], ["description", "Ab cum tenetur doloremque."], ["date", "2020-05-06 18:30:34.018670"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.019694"], ["updated_at", "2020-05-05 18:30:34.019694"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga impedit dolorem aut?"], ["description", "Non nisi explicabo earum."], ["date", "2020-05-06 18:30:34.021332"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.022670"], ["updated_at", "2020-05-05 18:30:34.022670"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores dolorum qui velit?"], ["description", "Velit architecto delectus non."], ["date", "2020-05-06 18:30:34.024756"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.026048"], ["updated_at", "2020-05-05 18:30:34.026048"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus qui sit dolorem?"], ["description", "Possimus velit iste cupiditate."], ["date", "2020-05-06 18:30:34.028021"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.029085"], ["updated_at", "2020-05-05 18:30:34.029085"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab quia dignissimos quasi?"], ["description", "Reprehenderit voluptas aut delectus."], ["date", "2020-05-06 18:30:34.030582"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.031547"], ["updated_at", "2020-05-05 18:30:34.031547"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis nam vitae quae?"], ["description", "Ipsum libero quia sed."], ["date", "2020-05-06 18:30:34.032873"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.033780"], ["updated_at", "2020-05-05 18:30:34.033780"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui sunt temporibus voluptas?"], ["description", "Est quaerat repudiandae quibusdam."], ["date", "2020-05-06 18:30:34.035858"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.036829"], ["updated_at", "2020-05-05 18:30:34.036829"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem perferendis omnis veritatis?"], ["description", "Voluptas ullam natus dicta."], ["date", "2020-05-06 18:30:34.038332"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.039258"], ["updated_at", "2020-05-05 18:30:34.039258"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est aut eum quos?"], ["description", "Inventore aut optio commodi."], ["date", "2020-05-06 18:30:34.041239"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.042305"], ["updated_at", "2020-05-05 18:30:34.042305"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam inventore ut corporis?"], ["description", "Minus iste quo odit."], ["date", "2020-05-06 18:30:34.044057"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.045172"], ["updated_at", "2020-05-05 18:30:34.045172"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia eum veniam incidunt?"], ["description", "Accusamus quod adipisci voluptatibus."], ["date", "2020-05-06 18:30:34.046912"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.048253"], ["updated_at", "2020-05-05 18:30:34.048253"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis perspiciatis eaque ea?"], ["description", "Perferendis ut et magni."], ["date", "2020-05-06 18:30:34.049825"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.050735"], ["updated_at", "2020-05-05 18:30:34.050735"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In quam praesentium consequatur?"], ["description", "Ipsa et iusto saepe."], ["date", "2020-05-06 18:30:34.052076"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.053162"], ["updated_at", "2020-05-05 18:30:34.053162"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet odit sit cum?"], ["description", "Sint error eius ducimus."], ["date", "2020-05-06 18:30:34.054548"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.055428"], ["updated_at", "2020-05-05 18:30:34.055428"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis recusandae quia sint?"], ["description", "Odio delectus suscipit porro."], ["date", "2020-05-06 18:30:34.056755"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.057628"], ["updated_at", "2020-05-05 18:30:34.057628"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe qui voluptatem ea?"], ["description", "Ducimus qui molestias sit."], ["date", "2020-05-06 18:30:34.059033"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.059942"], ["updated_at", "2020-05-05 18:30:34.059942"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure ratione repellendus provident?"], ["description", "Aperiam molestiae et nihil."], ["date", "2020-05-06 18:30:34.061686"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.062961"], ["updated_at", "2020-05-05 18:30:34.062961"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:30:34 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 509) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nell Hauck DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HnRJ74AZqB86JAEg0n7j5OzyjPzAqB1jvyBfzac8f.g7v3Ff3iZBK"], ["created_at", "2020-05-05 18:30:34.083524"], ["updated_at", "2020-05-05 18:30:34.083524"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Dolores autem cupiditate magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:34.087316"], ["updated_at", "2020-05-05 18:30:34.087316"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias perspiciatis dolor minus?"], ["description", "Modi harum ratione dolor."], ["date", "2020-05-06 18:30:34.089517"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.090873"], ["updated_at", "2020-05-05 18:30:34.090873"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem qui nostrum voluptatibus?"], ["description", "Consequatur quia dignissimos aut."], ["date", "2020-05-06 18:30:34.092538"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.093536"], ["updated_at", "2020-05-05 18:30:34.093536"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto eligendi numquam et?"], ["description", "Ut maiores aspernatur dolorum."], ["date", "2020-05-06 18:30:34.094923"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.095935"], ["updated_at", "2020-05-05 18:30:34.095935"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis cumque officia assumenda?"], ["description", "Ducimus recusandae ea commodi."], ["date", "2020-05-06 18:30:34.097518"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.098502"], ["updated_at", "2020-05-05 18:30:34.098502"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni asperiores expedita animi?"], ["description", "Impedit esse tempora quaerat."], ["date", "2020-05-06 18:30:34.100198"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.101957"], ["updated_at", "2020-05-05 18:30:34.101957"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam est omnis necessitatibus?"], ["description", "Dolorem qui ea placeat."], ["date", "2020-05-06 18:30:34.104184"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.105370"], ["updated_at", "2020-05-05 18:30:34.105370"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus repellat molestiae nisi?"], ["description", "Consequuntur voluptate vel doloremque."], ["date", "2020-05-06 18:30:34.106996"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.108127"], ["updated_at", "2020-05-05 18:30:34.108127"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non in et aperiam?"], ["description", "Facilis cumque ut eos."], ["date", "2020-05-06 18:30:34.109552"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.110507"], ["updated_at", "2020-05-05 18:30:34.110507"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et et perspiciatis autem?"], ["description", "Aliquam quibusdam numquam ut."], ["date", "2020-05-06 18:30:34.111790"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.112665"], ["updated_at", "2020-05-05 18:30:34.112665"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio ullam id quia?"], ["description", "Aut qui eos rem."], ["date", "2020-05-06 18:30:34.114745"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.115707"], ["updated_at", "2020-05-05 18:30:34.115707"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius quibusdam placeat et?"], ["description", "Sunt et tempore in."], ["date", "2020-05-06 18:30:34.117176"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.118055"], ["updated_at", "2020-05-05 18:30:34.118055"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero praesentium est ut?"], ["description", "Dolorem et aut voluptas."], ["date", "2020-05-06 18:30:34.119385"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.120211"], ["updated_at", "2020-05-05 18:30:34.120211"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere est quia ab?"], ["description", "Quia reprehenderit porro consequuntur."], ["date", "2020-05-06 18:30:34.121619"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.122523"], ["updated_at", "2020-05-05 18:30:34.122523"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum et atque aliquam?"], ["description", "Libero a soluta odit."], ["date", "2020-05-06 18:30:34.124034"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.124944"], ["updated_at", "2020-05-05 18:30:34.124944"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed dolorem explicabo ab?"], ["description", "Amet molestiae alias reprehenderit."], ["date", "2020-05-06 18:30:34.126400"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.127248"], ["updated_at", "2020-05-05 18:30:34.127248"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor quos qui modi?"], ["description", "Sed exercitationem id harum."], ["date", "2020-05-06 18:30:34.128666"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.129551"], ["updated_at", "2020-05-05 18:30:34.129551"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis soluta aperiam dolorum?"], ["description", "Nihil et omnis accusamus."], ["date", "2020-05-06 18:30:34.131020"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.131863"], ["updated_at", "2020-05-05 18:30:34.131863"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati est sunt quia?"], ["description", "Delectus unde facere veniam."], ["date", "2020-05-06 18:30:34.133144"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.134009"], ["updated_at", "2020-05-05 18:30:34.134009"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste voluptate error quia?"], ["description", "Sit ducimus nihil voluptatem."], ["date", "2020-05-06 18:30:34.135332"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.136135"], ["updated_at", "2020-05-05 18:30:34.136135"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et omnis expedita voluptatum?"], ["description", "Quia sunt eligendi voluptates."], ["date", "2020-05-06 18:30:34.137391"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.138196"], ["updated_at", "2020-05-05 18:30:34.138196"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:30:34 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.71ms) +Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.3ms | Allocations: 1086) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (369.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Chang Walsh"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Hnp3CHVvmHE2PIlLudJKH.pnVpRG4Bw4STgX5Yn5Lc4MBtKmnoWMW"], ["created_at", "2020-05-05 18:30:34.519821"], ["updated_at", "2020-05-05 18:30:34.519821"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Quibusdam voluptatum voluptate deleniti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:34.523740"], ["updated_at", "2020-05-05 18:30:34.523740"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae nostrum excepturi nobis?"], ["description", "Repellat qui rerum error."], ["date", "2020-05-06 18:30:34.525884"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.527211"], ["updated_at", "2020-05-05 18:30:34.527211"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur autem ipsum amet?"], ["description", "Nulla omnis aut sit."], ["date", "2020-05-06 18:30:34.529290"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.531047"], ["updated_at", "2020-05-05 18:30:34.531047"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam eos sunt blanditiis?"], ["description", "Possimus delectus aut voluptatum."], ["date", "2020-05-06 18:30:34.532870"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.533943"], ["updated_at", "2020-05-05 18:30:34.533943"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis impedit dolorum et?"], ["description", "Qui itaque vitae explicabo."], ["date", "2020-05-06 18:30:34.535437"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.536389"], ["updated_at", "2020-05-05 18:30:34.536389"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi in ullam earum?"], ["description", "Eius laboriosam dolores cum."], ["date", "2020-05-06 18:30:34.538072"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.539026"], ["updated_at", "2020-05-05 18:30:34.539026"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Hic beatae veniam nobis?"], ["description", "Velit voluptatem officia beatae."], ["date", "2020-05-06 18:30:34.540460"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.541325"], ["updated_at", "2020-05-05 18:30:34.541325"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus eum saepe dolore?"], ["description", "Rerum velit dolorem cupiditate."], ["date", "2020-05-06 18:30:34.542663"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.543499"], ["updated_at", "2020-05-05 18:30:34.543499"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum iure voluptate distinctio?"], ["description", "Et quis est quam."], ["date", "2020-05-06 18:30:34.544839"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.545806"], ["updated_at", "2020-05-05 18:30:34.545806"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem quas dolor libero?"], ["description", "Aut sapiente rem ut."], ["date", "2020-05-06 18:30:34.547307"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.548251"], ["updated_at", "2020-05-05 18:30:34.548251"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed voluptas et libero?"], ["description", "Cum voluptate a nam."], ["date", "2020-05-06 18:30:34.550520"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.551614"], ["updated_at", "2020-05-05 18:30:34.551614"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti ut quo iusto?"], ["description", "Sit et maxime quis."], ["date", "2020-05-06 18:30:34.553439"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.554506"], ["updated_at", "2020-05-05 18:30:34.554506"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit et tempore quos?"], ["description", "Ut ullam reprehenderit nisi."], ["date", "2020-05-06 18:30:34.556084"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.557009"], ["updated_at", "2020-05-05 18:30:34.557009"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia rem pariatur dolorem?"], ["description", "Voluptas suscipit illum et."], ["date", "2020-05-06 18:30:34.558488"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.559429"], ["updated_at", "2020-05-05 18:30:34.559429"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum modi omnis officiis?"], ["description", "Dolores doloribus aperiam facilis."], ["date", "2020-05-06 18:30:34.560856"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.561779"], ["updated_at", "2020-05-05 18:30:34.561779"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores quaerat quod qui?"], ["description", "Animi eaque et tenetur."], ["date", "2020-05-06 18:30:34.563218"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.564064"], ["updated_at", "2020-05-05 18:30:34.564064"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum ut dolor repellendus?"], ["description", "Soluta autem laboriosam eligendi."], ["date", "2020-05-06 18:30:34.565680"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.566689"], ["updated_at", "2020-05-05 18:30:34.566689"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis nesciunt reiciendis ut?"], ["description", "Quis modi fuga nulla."], ["date", "2020-05-06 18:30:34.568380"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.569416"], ["updated_at", "2020-05-05 18:30:34.569416"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste id soluta tenetur?"], ["description", "Perferendis ut voluptas sit."], ["date", "2020-05-06 18:30:34.571569"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.573008"], ["updated_at", "2020-05-05 18:30:34.573008"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita tempore adipisci fugiat?"], ["description", "Et dignissimos est consequuntur."], ["date", "2020-05-06 18:30:34.574689"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.575570"], ["updated_at", "2020-05-05 18:30:34.575570"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus sunt consequatur provident?"], ["description", "Totam beatae et architecto."], ["date", "2020-05-06 18:30:34.576914"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.577735"], ["updated_at", "2020-05-05 18:30:34.577735"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:30:34 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.83ms) +Completed 200 OK in 4ms (Views: 1.4ms | ActiveRecord: 0.2ms | Allocations: 1058) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Roosevelt Rice"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BTJOxIhmBIZe9dANL/vYM.kZrqHrqqNKvhmMkgYG/.hNtrllp7wrC"], ["created_at", "2020-05-05 18:30:34.595827"], ["updated_at", "2020-05-05 18:30:34.595827"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Voluptatem a enim provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:34.598777"], ["updated_at", "2020-05-05 18:30:34.598777"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium cumque quis perferendis?"], ["description", "Facilis sit non aspernatur."], ["date", "2020-05-06 18:30:34.600478"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.601548"], ["updated_at", "2020-05-05 18:30:34.601548"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut ut ut aut?"], ["description", "Explicabo totam placeat perferendis."], ["date", "2020-05-06 18:30:34.602976"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.603818"], ["updated_at", "2020-05-05 18:30:34.603818"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur doloribus rerum recusandae?"], ["description", "Adipisci quia sint qui."], ["date", "2020-05-06 18:30:34.605180"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.606051"], ["updated_at", "2020-05-05 18:30:34.606051"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et ea quisquam molestiae?"], ["description", "Exercitationem aut similique sit."], ["date", "2020-05-06 18:30:34.607537"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.608390"], ["updated_at", "2020-05-05 18:30:34.608390"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate iste consequatur qui?"], ["description", "Mollitia vitae voluptate quia."], ["date", "2020-05-06 18:30:34.609651"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.610462"], ["updated_at", "2020-05-05 18:30:34.610462"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut quos iste ut?"], ["description", "Minima ex neque et."], ["date", "2020-05-06 18:30:34.611683"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.612473"], ["updated_at", "2020-05-05 18:30:34.612473"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas minus eaque et?"], ["description", "Commodi delectus harum et."], ["date", "2020-05-06 18:30:34.613614"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.614367"], ["updated_at", "2020-05-05 18:30:34.614367"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur natus et et?"], ["description", "Voluptatum voluptatem voluptas ut."], ["date", "2020-05-06 18:30:34.615644"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.617206"], ["updated_at", "2020-05-05 18:30:34.617206"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit voluptas voluptatem aliquam?"], ["description", "Nobis quis amet corporis."], ["date", "2020-05-06 18:30:34.618688"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.619637"], ["updated_at", "2020-05-05 18:30:34.619637"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor et et vel?"], ["description", "Explicabo incidunt vel omnis."], ["date", "2020-05-06 18:30:34.621514"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.622393"], ["updated_at", "2020-05-05 18:30:34.622393"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae beatae ipsam est?"], ["description", "Id optio adipisci quis."], ["date", "2020-05-06 18:30:34.623740"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.624594"], ["updated_at", "2020-05-05 18:30:34.624594"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint dicta dolorem asperiores?"], ["description", "Incidunt aut omnis est."], ["date", "2020-05-06 18:30:34.626047"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.627165"], ["updated_at", "2020-05-05 18:30:34.627165"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et architecto id non?"], ["description", "Ratione doloribus deserunt qui."], ["date", "2020-05-06 18:30:34.628776"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.629685"], ["updated_at", "2020-05-05 18:30:34.629685"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At saepe reiciendis praesentium?"], ["description", "Aperiam sed esse animi."], ["date", "2020-05-06 18:30:34.631043"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.631917"], ["updated_at", "2020-05-05 18:30:34.631917"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui laboriosam laborum non?"], ["description", "Doloremque illo sunt animi."], ["date", "2020-05-06 18:30:34.633181"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.633980"], ["updated_at", "2020-05-05 18:30:34.633980"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est ea et et?"], ["description", "Alias voluptas quam qui."], ["date", "2020-05-06 18:30:34.635626"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.636734"], ["updated_at", "2020-05-05 18:30:34.636734"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit error animi libero?"], ["description", "Sed sit ducimus assumenda."], ["date", "2020-05-06 18:30:34.638161"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.639298"], ["updated_at", "2020-05-05 18:30:34.639298"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem quaerat incidunt quisquam?"], ["description", "Tempora accusamus non commodi."], ["date", "2020-05-06 18:30:34.641149"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.642777"], ["updated_at", "2020-05-05 18:30:34.642777"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea voluptate voluptatem quas?"], ["description", "Blanditiis repudiandae expedita nulla."], ["date", "2020-05-06 18:30:34.644434"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.645542"], ["updated_at", "2020-05-05 18:30:34.645542"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet aut ex eos?"], ["description", "Consequatur fuga qui velit."], ["date", "2020-05-06 18:30:34.647086"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.648057"], ["updated_at", "2020-05-05 18:30:34.648057"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:30:34 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 404 Not Found in 3ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 884) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Karine Willms"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oYWKWvq9UIwM8AeYfPB.ueKja0avADE87MMuprhMDX92dHLCdp5zm"], ["created_at", "2020-05-05 18:30:34.667557"], ["updated_at", "2020-05-05 18:30:34.667557"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eaque"], ["description", "Voluptatem cupiditate facere sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:34.671609"], ["updated_at", "2020-05-05 18:30:34.671609"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi nulla optio unde?"], ["description", "Molestiae explicabo qui illum."], ["date", "2020-05-06 18:30:34.673708"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.674927"], ["updated_at", "2020-05-05 18:30:34.674927"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores sunt et labore?"], ["description", "Sapiente enim ut cum."], ["date", "2020-05-06 18:30:34.676778"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.677857"], ["updated_at", "2020-05-05 18:30:34.677857"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia atque sequi iure?"], ["description", "Tenetur suscipit repudiandae beatae."], ["date", "2020-05-06 18:30:34.679375"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.680611"], ["updated_at", "2020-05-05 18:30:34.680611"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat aperiam nesciunt quibusdam?"], ["description", "In ea reiciendis iste."], ["date", "2020-05-06 18:30:34.682116"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.683146"], ["updated_at", "2020-05-05 18:30:34.683146"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore a aut aspernatur?"], ["description", "Aliquam modi in repellendus."], ["date", "2020-05-06 18:30:34.684812"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.686038"], ["updated_at", "2020-05-05 18:30:34.686038"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique atque accusantium nemo?"], ["description", "Et consequatur provident aut."], ["date", "2020-05-06 18:30:34.687856"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.689261"], ["updated_at", "2020-05-05 18:30:34.689261"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae maiores omnis impedit?"], ["description", "Veritatis optio itaque eius."], ["date", "2020-05-06 18:30:34.691398"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.692510"], ["updated_at", "2020-05-05 18:30:34.692510"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi esse voluptatem alias?"], ["description", "Aspernatur optio tempora est."], ["date", "2020-05-06 18:30:34.694039"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.695034"], ["updated_at", "2020-05-05 18:30:34.695034"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum aut magnam aut?"], ["description", "Possimus aut architecto voluptatibus."], ["date", "2020-05-06 18:30:34.696807"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.697843"], ["updated_at", "2020-05-05 18:30:34.697843"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut aliquam eum harum?"], ["description", "Aut omnis sint ea."], ["date", "2020-05-06 18:30:34.699719"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.700618"], ["updated_at", "2020-05-05 18:30:34.700618"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio eveniet neque itaque?"], ["description", "Qui laboriosam expedita quaerat."], ["date", "2020-05-06 18:30:34.701891"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.702761"], ["updated_at", "2020-05-05 18:30:34.702761"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et necessitatibus voluptatem occaecati?"], ["description", "Tempora iste vitae et."], ["date", "2020-05-06 18:30:34.703978"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.704767"], ["updated_at", "2020-05-05 18:30:34.704767"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est minus enim quia?"], ["description", "Velit ut voluptatibus corporis."], ["date", "2020-05-06 18:30:34.706101"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.706941"], ["updated_at", "2020-05-05 18:30:34.706941"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio nesciunt dolore iste?"], ["description", "Saepe labore ratione quia."], ["date", "2020-05-06 18:30:34.708314"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.709093"], ["updated_at", "2020-05-05 18:30:34.709093"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium qui voluptatem perspiciatis?"], ["description", "Ex temporibus officia amet."], ["date", "2020-05-06 18:30:34.710491"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.711281"], ["updated_at", "2020-05-05 18:30:34.711281"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non illum cupiditate voluptatem?"], ["description", "Qui et quam provident."], ["date", "2020-05-06 18:30:34.712544"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.713277"], ["updated_at", "2020-05-05 18:30:34.713277"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim nisi quia sunt?"], ["description", "Veniam sunt et nisi."], ["date", "2020-05-06 18:30:34.714545"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.715289"], ["updated_at", "2020-05-05 18:30:34.715289"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Possimus rerum ipsum natus?"], ["description", "Qui harum animi veniam."], ["date", "2020-05-06 18:30:34.716620"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.717474"], ["updated_at", "2020-05-05 18:30:34.717474"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum consequatur id quia?"], ["description", "Velit culpa veniam nostrum."], ["date", "2020-05-06 18:30:34.718810"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.719751"], ["updated_at", "2020-05-05 18:30:34.719751"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim nesciunt qui ea?"], ["description", "Voluptas aut ea doloribus."], ["date", "2020-05-06 18:30:34.721355"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.722386"], ["updated_at", "2020-05-05 18:30:34.722386"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:30:34 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.11ms) +Completed 404 Not Found in 4ms (Views: 0.8ms | ActiveRecord: 0.3ms | Allocations: 867) +  (0.6ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Charlette Wiza"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QQe27r5VgzlsXmuJJGQY1uj.9WkAazEkQ4XmCRLJ0MpLLDDyLh7/S"], ["created_at", "2020-05-05 18:30:34.741530"], ["updated_at", "2020-05-05 18:30:34.741530"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Voluptatibus sunt excepturi deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:34.744991"], ["updated_at", "2020-05-05 18:30:34.744991"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur tempora cum eos?"], ["description", "Officia enim dolorem est."], ["date", "2020-05-06 18:30:34.747202"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.748575"], ["updated_at", "2020-05-05 18:30:34.748575"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos aut tenetur excepturi?"], ["description", "Laborum placeat velit distinctio."], ["date", "2020-05-06 18:30:34.750424"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.751396"], ["updated_at", "2020-05-05 18:30:34.751396"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem et aut in?"], ["description", "Rerum fugiat non ut."], ["date", "2020-05-06 18:30:34.752587"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.753445"], ["updated_at", "2020-05-05 18:30:34.753445"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente ipsam natus vitae?"], ["description", "Ut quaerat numquam culpa."], ["date", "2020-05-06 18:30:34.754693"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.755496"], ["updated_at", "2020-05-05 18:30:34.755496"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima ratione accusantium id?"], ["description", "Quibusdam animi est voluptatum."], ["date", "2020-05-06 18:30:34.756629"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.757399"], ["updated_at", "2020-05-05 18:30:34.757399"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit veritatis debitis sint?"], ["description", "Suscipit omnis qui minus."], ["date", "2020-05-06 18:30:34.758631"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.759400"], ["updated_at", "2020-05-05 18:30:34.759400"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut cumque at occaecati?"], ["description", "Eos sed qui ipsam."], ["date", "2020-05-06 18:30:34.760671"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.761453"], ["updated_at", "2020-05-05 18:30:34.761453"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum sapiente doloribus et?"], ["description", "Maiores corporis autem quia."], ["date", "2020-05-06 18:30:34.762694"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.763426"], ["updated_at", "2020-05-05 18:30:34.763426"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque quo enim qui?"], ["description", "Ut ea ad eos."], ["date", "2020-05-06 18:30:34.764603"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.765474"], ["updated_at", "2020-05-05 18:30:34.765474"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed ea animi voluptatem?"], ["description", "Excepturi sint facilis debitis."], ["date", "2020-05-06 18:30:34.767575"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.768536"], ["updated_at", "2020-05-05 18:30:34.768536"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis pariatur non aut?"], ["description", "Maiores qui impedit numquam."], ["date", "2020-05-06 18:30:34.770199"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.771449"], ["updated_at", "2020-05-05 18:30:34.771449"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo iure aperiam dignissimos?"], ["description", "Error ab nulla nihil."], ["date", "2020-05-06 18:30:34.772913"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.773823"], ["updated_at", "2020-05-05 18:30:34.773823"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil debitis illo iusto?"], ["description", "Iste nobis enim quisquam."], ["date", "2020-05-06 18:30:34.775302"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.776284"], ["updated_at", "2020-05-05 18:30:34.776284"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam quas quis corporis?"], ["description", "At rerum pariatur totam."], ["date", "2020-05-06 18:30:34.777829"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.778948"], ["updated_at", "2020-05-05 18:30:34.778948"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas nostrum quas amet?"], ["description", "Magnam sit quaerat nesciunt."], ["date", "2020-05-06 18:30:34.780948"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.782036"], ["updated_at", "2020-05-05 18:30:34.782036"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique ex natus autem?"], ["description", "Officia rerum voluptatem tempore."], ["date", "2020-05-06 18:30:34.783953"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.785069"], ["updated_at", "2020-05-05 18:30:34.785069"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex officia voluptatum nihil?"], ["description", "Earum nihil vel error."], ["date", "2020-05-06 18:30:34.786653"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.787789"], ["updated_at", "2020-05-05 18:30:34.787789"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem inventore cupiditate nostrum?"], ["description", "Corrupti repellat molestiae aut."], ["date", "2020-05-06 18:30:34.789482"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.790548"], ["updated_at", "2020-05-05 18:30:34.790548"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab ea omnis doloremque?"], ["description", "Ut vel tempore fuga."], ["date", "2020-05-06 18:30:34.792018"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.792851"], ["updated_at", "2020-05-05 18:30:34.792851"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur inventore eligendi sit?"], ["description", "Quam tenetur laudantium voluptas."], ["date", "2020-05-06 18:30:34.794097"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.794877"], ["updated_at", "2020-05-05 18:30:34.794877"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:30:34 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"title"=>"Visit Narnia", "description"=>"false", "date"=>"2020-05-06 15:30:34 -0300", "link"=>"https://zoom.com/fakelink", "meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Visit Narnia"], ["description", "false"], ["date", "2020-05-06 18:30:34"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:34.816244"], ["updated_at", "2020-05-05 18:30:34.816244"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.53ms) +Completed 201 Created in 5ms (Views: 1.1ms | ActiveRecord: 0.5ms | Allocations: 1699) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (166.4ms) rollback transaction +  (0.2ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (146.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Evelia Wilkinson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$AhEaf2wECIaHhDjNRTTZ4O1krWyCw.AyPz5TcZUEbc7ia.MGfaxPi"], ["created_at", "2020-05-05 18:30:34.997335"], ["updated_at", "2020-05-05 18:30:34.997335"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quibusdam"], ["description", "Enim id inventore quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.149481"], ["updated_at", "2020-05-05 18:30:35.149481"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui consequatur nam vel?"], ["description", "Accusamus nam nihil neque."], ["date", "2020-05-06 18:30:35.154699"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.157518"], ["updated_at", "2020-05-05 18:30:35.157518"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi dolores nulla quae?"], ["description", "Voluptas veritatis sapiente quod."], ["date", "2020-05-06 18:30:35.161862"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.164398"], ["updated_at", "2020-05-05 18:30:35.164398"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam in dignissimos ut?"], ["description", "Ipsum aut numquam qui."], ["date", "2020-05-06 18:30:35.193715"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.194612"], ["updated_at", "2020-05-05 18:30:35.194612"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas et pariatur distinctio?"], ["description", "Minima modi dolorem aliquid."], ["date", "2020-05-06 18:30:35.195768"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.196468"], ["updated_at", "2020-05-05 18:30:35.196468"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam a fugit necessitatibus?"], ["description", "Laudantium corrupti in enim."], ["date", "2020-05-06 18:30:35.197658"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.198382"], ["updated_at", "2020-05-05 18:30:35.198382"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab dolor eaque aut?"], ["description", "Aliquid eum quisquam et."], ["date", "2020-05-06 18:30:35.199519"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.200241"], ["updated_at", "2020-05-05 18:30:35.200241"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque ad recusandae dolores?"], ["description", "Sapiente omnis nemo repellendus."], ["date", "2020-05-06 18:30:35.201349"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.202040"], ["updated_at", "2020-05-05 18:30:35.202040"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus exercitationem repudiandae quis?"], ["description", "Hic inventore incidunt nulla."], ["date", "2020-05-06 18:30:35.203208"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.203875"], ["updated_at", "2020-05-05 18:30:35.203875"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Culpa unde ratione inventore?"], ["description", "Dicta et ut accusantium."], ["date", "2020-05-06 18:30:35.205027"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.205695"], ["updated_at", "2020-05-05 18:30:35.205695"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam culpa voluptatem saepe?"], ["description", "Magnam nisi totam consequatur."], ["date", "2020-05-06 18:30:35.207721"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.208600"], ["updated_at", "2020-05-05 18:30:35.208600"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus tenetur quasi aut?"], ["description", "Explicabo vel dolores id."], ["date", "2020-05-06 18:30:35.210298"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.211265"], ["updated_at", "2020-05-05 18:30:35.211265"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime non sit sed?"], ["description", "Natus labore repellat hic."], ["date", "2020-05-06 18:30:35.212512"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.213218"], ["updated_at", "2020-05-05 18:30:35.213218"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt unde voluptas quisquam?"], ["description", "Sunt est qui aut."], ["date", "2020-05-06 18:30:35.214396"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.215087"], ["updated_at", "2020-05-05 18:30:35.215087"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit deleniti vero possimus?"], ["description", "Vel dolorem aut adipisci."], ["date", "2020-05-06 18:30:35.216312"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.217012"], ["updated_at", "2020-05-05 18:30:35.217012"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est ex cupiditate voluptas?"], ["description", "Voluptatem quaerat corrupti ipsa."], ["date", "2020-05-06 18:30:35.218270"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.219007"], ["updated_at", "2020-05-05 18:30:35.219007"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis quam velit asperiores?"], ["description", "Et fugit velit ex."], ["date", "2020-05-06 18:30:35.220226"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.220959"], ["updated_at", "2020-05-05 18:30:35.220959"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis laboriosam molestias maiores?"], ["description", "Qui explicabo unde earum."], ["date", "2020-05-06 18:30:35.222160"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.222912"], ["updated_at", "2020-05-05 18:30:35.222912"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas voluptas quam illo?"], ["description", "Atque aut dolores voluptatem."], ["date", "2020-05-06 18:30:35.224119"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.224829"], ["updated_at", "2020-05-05 18:30:35.224829"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugiat saepe non perferendis?"], ["description", "Dolor consequatur voluptatem odio."], ["date", "2020-05-06 18:30:35.226047"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.226755"], ["updated_at", "2020-05-05 18:30:35.226755"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi quaerat sed est?"], ["description", "Aut rerum dolores voluptas."], ["date", "2020-05-06 18:30:35.227905"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.228599"], ["updated_at", "2020-05-05 18:30:35.228599"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:30:35 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 3010) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (50.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Devorah Pollich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tpYfv5Z.ro0bouuo8nKNZOk5mC..JKSKbYYIt5gdGWdnuhYcaXcW2"], ["created_at", "2020-05-05 18:30:35.245730"], ["updated_at", "2020-05-05 18:30:35.245730"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odio"], ["description", "Quasi nostrum dolore eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.299759"], ["updated_at", "2020-05-05 18:30:35.299759"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae cumque voluptatem sed?"], ["description", "Aspernatur est deleniti possimus."], ["date", "2020-05-06 18:30:35.303629"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.305664"], ["updated_at", "2020-05-05 18:30:35.305664"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia qui voluptatem veritatis?"], ["description", "Odit non unde aliquam."], ["date", "2020-05-06 18:30:35.309090"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.311525"], ["updated_at", "2020-05-05 18:30:35.311525"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus tempore non doloremque?"], ["description", "Suscipit minima officiis voluptatum."], ["date", "2020-05-06 18:30:35.314819"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.316687"], ["updated_at", "2020-05-05 18:30:35.316687"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum consequatur quo est?"], ["description", "Dolor adipisci sed provident."], ["date", "2020-05-06 18:30:35.319565"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.321410"], ["updated_at", "2020-05-05 18:30:35.321410"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam at tempora quis?"], ["description", "Vel sint id voluptas."], ["date", "2020-05-06 18:30:35.324401"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.326151"], ["updated_at", "2020-05-05 18:30:35.326151"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam blanditiis dolor error?"], ["description", "Autem eveniet ea aut."], ["date", "2020-05-06 18:30:35.329029"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.331129"], ["updated_at", "2020-05-05 18:30:35.331129"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque ut vel facere?"], ["description", "Dolores et distinctio qui."], ["date", "2020-05-06 18:30:35.332823"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.333757"], ["updated_at", "2020-05-05 18:30:35.333757"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis dolore aut maiores?"], ["description", "Iure sunt magni et."], ["date", "2020-05-06 18:30:35.335365"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.336158"], ["updated_at", "2020-05-05 18:30:35.336158"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet inventore et quasi?"], ["description", "Sed aliquam qui officia."], ["date", "2020-05-06 18:30:35.337560"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.338325"], ["updated_at", "2020-05-05 18:30:35.338325"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et rerum velit corporis?"], ["description", "Nemo voluptates sint suscipit."], ["date", "2020-05-06 18:30:35.340619"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.341725"], ["updated_at", "2020-05-05 18:30:35.341725"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae modi vel consequuntur?"], ["description", "Et in aut autem."], ["date", "2020-05-06 18:30:35.343304"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.344260"], ["updated_at", "2020-05-05 18:30:35.344260"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem consectetur esse dolore?"], ["description", "Voluptas laboriosam ipsa aperiam."], ["date", "2020-05-06 18:30:35.345650"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.346456"], ["updated_at", "2020-05-05 18:30:35.346456"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia ab harum odit?"], ["description", "Mollitia perspiciatis molestiae ducimus."], ["date", "2020-05-06 18:30:35.347688"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.348515"], ["updated_at", "2020-05-05 18:30:35.348515"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reiciendis impedit omnis quas?"], ["description", "Est id omnis non."], ["date", "2020-05-06 18:30:35.349924"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.350997"], ["updated_at", "2020-05-05 18:30:35.350997"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio enim consequatur molestiae?"], ["description", "Velit cupiditate nam facilis."], ["date", "2020-05-06 18:30:35.352454"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.353309"], ["updated_at", "2020-05-05 18:30:35.353309"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id fugiat iusto libero?"], ["description", "Minus natus incidunt aut."], ["date", "2020-05-06 18:30:35.354583"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.355387"], ["updated_at", "2020-05-05 18:30:35.355387"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam molestiae eius animi?"], ["description", "Quos quo quas ullam."], ["date", "2020-05-06 18:30:35.356660"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.357433"], ["updated_at", "2020-05-05 18:30:35.357433"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate culpa temporibus velit?"], ["description", "Ipsam dolorem non animi."], ["date", "2020-05-06 18:30:35.358749"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.359508"], ["updated_at", "2020-05-05 18:30:35.359508"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis aut voluptas ipsam?"], ["description", "Rerum vero est eligendi."], ["date", "2020-05-06 18:30:35.360804"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.361913"], ["updated_at", "2020-05-05 18:30:35.361913"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt iste necessitatibus ut?"], ["description", "Omnis optio iure aut."], ["date", "2020-05-06 18:30:35.363403"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.364261"], ["updated_at", "2020-05-05 18:30:35.364261"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:30:35 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 2705) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Phil D'Amore V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gQ4jnVNBFze5.lymSK5qk.3kc.586FkKh0fVGRrGPtWje7JjkKm1S"], ["created_at", "2020-05-05 18:30:35.383055"], ["updated_at", "2020-05-05 18:30:35.383055"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Molestiae est quia nostrum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.386402"], ["updated_at", "2020-05-05 18:30:35.386402"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias quos enim tempora?"], ["description", "Eum voluptatibus praesentium unde."], ["date", "2020-05-06 18:30:35.387974"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.388969"], ["updated_at", "2020-05-05 18:30:35.388969"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut velit repudiandae possimus?"], ["description", "Nihil dignissimos vitae et."], ["date", "2020-05-06 18:30:35.390683"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.391740"], ["updated_at", "2020-05-05 18:30:35.391740"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam minima in sed?"], ["description", "Vitae error rerum mollitia."], ["date", "2020-05-06 18:30:35.393152"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.394030"], ["updated_at", "2020-05-05 18:30:35.394030"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores non nobis nihil?"], ["description", "Et libero voluptas illo."], ["date", "2020-05-06 18:30:35.395299"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.396036"], ["updated_at", "2020-05-05 18:30:35.396036"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima et omnis facilis?"], ["description", "Nihil iure sequi sed."], ["date", "2020-05-06 18:30:35.397197"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.397914"], ["updated_at", "2020-05-05 18:30:35.397914"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Adipisci laboriosam sed totam?"], ["description", "Sed id aperiam ea."], ["date", "2020-05-06 18:30:35.399132"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.399872"], ["updated_at", "2020-05-05 18:30:35.399872"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur nobis ab minima?"], ["description", "Magnam dolor doloribus iusto."], ["date", "2020-05-06 18:30:35.401046"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.401763"], ["updated_at", "2020-05-05 18:30:35.401763"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit facere consequuntur magnam?"], ["description", "Accusamus corrupti ut sint."], ["date", "2020-05-06 18:30:35.402984"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.403716"], ["updated_at", "2020-05-05 18:30:35.403716"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim et debitis distinctio?"], ["description", "Veniam perferendis repellat non."], ["date", "2020-05-06 18:30:35.404894"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.405591"], ["updated_at", "2020-05-05 18:30:35.405591"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quasi veritatis suscipit?"], ["description", "Eius tenetur tempore suscipit."], ["date", "2020-05-06 18:30:35.407488"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.408333"], ["updated_at", "2020-05-05 18:30:35.408333"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis eligendi dicta similique?"], ["description", "Dolores non repudiandae sit."], ["date", "2020-05-06 18:30:35.409661"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.410575"], ["updated_at", "2020-05-05 18:30:35.410575"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Adipisci debitis doloremque voluptate?"], ["description", "Voluptas distinctio corrupti eum."], ["date", "2020-05-06 18:30:35.412087"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.412925"], ["updated_at", "2020-05-05 18:30:35.412925"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In mollitia quo sequi?"], ["description", "Ipsum perspiciatis numquam consequatur."], ["date", "2020-05-06 18:30:35.414148"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.414857"], ["updated_at", "2020-05-05 18:30:35.414857"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas fuga maiores enim?"], ["description", "Et exercitationem aliquid ullam."], ["date", "2020-05-06 18:30:35.416111"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.416801"], ["updated_at", "2020-05-05 18:30:35.416801"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum et corrupti et?"], ["description", "Dolor aut illo quia."], ["date", "2020-05-06 18:30:35.418092"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.418883"], ["updated_at", "2020-05-05 18:30:35.418883"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis et aut quia?"], ["description", "Aut animi et aut."], ["date", "2020-05-06 18:30:35.420214"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.420982"], ["updated_at", "2020-05-05 18:30:35.420982"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium enim beatae consequuntur?"], ["description", "Id incidunt quibusdam perferendis."], ["date", "2020-05-06 18:30:35.422186"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.422892"], ["updated_at", "2020-05-05 18:30:35.422892"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium eaque nihil vel?"], ["description", "Aspernatur laborum deserunt modi."], ["date", "2020-05-06 18:30:35.424078"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.424786"], ["updated_at", "2020-05-05 18:30:35.424786"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias modi autem aut?"], ["description", "Optio est illo dolorem."], ["date", "2020-05-06 18:30:35.425907"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.426609"], ["updated_at", "2020-05-05 18:30:35.426609"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Adipisci voluptas quisquam quia?"], ["description", "Sed aspernatur quis optio."], ["date", "2020-05-06 18:30:35.427688"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.428406"], ["updated_at", "2020-05-05 18:30:35.428406"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:30:35 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.1ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:30:35.433119"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1397) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Blair Ritchie"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rcw3uqrg6hqFL.aJQTkdb.oAfZ8QuE36oeiqnwohgSwMMplCx1NkW"], ["created_at", "2020-05-05 18:30:35.444474"], ["updated_at", "2020-05-05 18:30:35.444474"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorum"], ["description", "Pariatur nisi veritatis officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.448104"], ["updated_at", "2020-05-05 18:30:35.448104"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi enim quisquam vitae?"], ["description", "Veniam sequi vel facilis."], ["date", "2020-05-06 18:30:35.449752"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.450997"], ["updated_at", "2020-05-05 18:30:35.450997"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut ad totam autem?"], ["description", "Eum dolorem enim laudantium."], ["date", "2020-05-06 18:30:35.452666"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.453539"], ["updated_at", "2020-05-05 18:30:35.453539"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas deserunt maiores iste?"], ["description", "Unde provident fugiat quia."], ["date", "2020-05-06 18:30:35.454770"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.455543"], ["updated_at", "2020-05-05 18:30:35.455543"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo consectetur non quo?"], ["description", "Modi repellendus earum enim."], ["date", "2020-05-06 18:30:35.456687"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.457452"], ["updated_at", "2020-05-05 18:30:35.457452"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit iusto eum at?"], ["description", "Quo iusto quaerat ad."], ["date", "2020-05-06 18:30:35.458625"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.459340"], ["updated_at", "2020-05-05 18:30:35.459340"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Possimus eum ut repellat?"], ["description", "Optio quia voluptatem aut."], ["date", "2020-05-06 18:30:35.460513"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.461232"], ["updated_at", "2020-05-05 18:30:35.461232"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque error voluptatem sit?"], ["description", "Rerum sapiente veniam eum."], ["date", "2020-05-06 18:30:35.462442"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.463136"], ["updated_at", "2020-05-05 18:30:35.463136"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et eos asperiores enim?"], ["description", "Modi quos voluptatem tempora."], ["date", "2020-05-06 18:30:35.464209"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.464922"], ["updated_at", "2020-05-05 18:30:35.464922"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed et voluptas eos?"], ["description", "Numquam velit optio libero."], ["date", "2020-05-06 18:30:35.466065"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.466767"], ["updated_at", "2020-05-05 18:30:35.466767"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus alias suscipit repudiandae?"], ["description", "Vel magnam dolorem sunt."], ["date", "2020-05-06 18:30:35.468646"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.469467"], ["updated_at", "2020-05-05 18:30:35.469467"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos qui et est?"], ["description", "Voluptates dolores consectetur repudiandae."], ["date", "2020-05-06 18:30:35.471067"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.472064"], ["updated_at", "2020-05-05 18:30:35.472064"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam ut aut nam?"], ["description", "Officiis quasi ab aut."], ["date", "2020-05-06 18:30:35.473340"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.474099"], ["updated_at", "2020-05-05 18:30:35.474099"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis incidunt nihil dolor?"], ["description", "Qui eos quisquam ut."], ["date", "2020-05-06 18:30:35.475262"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.476000"], ["updated_at", "2020-05-05 18:30:35.476000"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto quasi libero ducimus?"], ["description", "Enim blanditiis odit pariatur."], ["date", "2020-05-06 18:30:35.477255"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.477983"], ["updated_at", "2020-05-05 18:30:35.477983"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor quia sapiente ipsa?"], ["description", "Incidunt doloribus explicabo sint."], ["date", "2020-05-06 18:30:35.479316"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.480141"], ["updated_at", "2020-05-05 18:30:35.480141"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis voluptates quis ut?"], ["description", "Hic alias eos rerum."], ["date", "2020-05-06 18:30:35.481476"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.482213"], ["updated_at", "2020-05-05 18:30:35.482213"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores voluptates ut iure?"], ["description", "Ipsum earum mollitia enim."], ["date", "2020-05-06 18:30:35.483413"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.484123"], ["updated_at", "2020-05-05 18:30:35.484123"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea necessitatibus iusto vitae?"], ["description", "Ex consequuntur qui earum."], ["date", "2020-05-06 18:30:35.485256"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.485945"], ["updated_at", "2020-05-05 18:30:35.485945"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit eaque ad explicabo?"], ["description", "Error vitae iure et."], ["date", "2020-05-06 18:30:35.487149"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.487854"], ["updated_at", "2020-05-05 18:30:35.487854"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod aperiam saepe qui?"], ["description", "Eum occaecati nobis cupiditate."], ["date", "2020-05-06 18:30:35.489056"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.489807"], ["updated_at", "2020-05-05 18:30:35.489807"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:30:35 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.2ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:30:35.494446"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1304) + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leeanne Marvin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OY00PbF5x5atoKThiN0YKex9U0Yfpd9NEEuOE0/XFu3ROTlzFptsC"], ["created_at", "2020-05-05 18:30:35.507418"], ["updated_at", "2020-05-05 18:30:35.507418"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Voluptatem libero rerum eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.510448"], ["updated_at", "2020-05-05 18:30:35.510448"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem tenetur quod et?"], ["description", "Quidem officiis voluptatem dolore."], ["date", "2020-05-06 18:30:35.512538"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.513772"], ["updated_at", "2020-05-05 18:30:35.513772"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam qui architecto illo?"], ["description", "Voluptatem officiis consequatur vitae."], ["date", "2020-05-06 18:30:35.515411"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.516323"], ["updated_at", "2020-05-05 18:30:35.516323"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Culpa explicabo ipsam et?"], ["description", "Quia molestiae magni quisquam."], ["date", "2020-05-06 18:30:35.517646"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.518437"], ["updated_at", "2020-05-05 18:30:35.518437"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem quia ut sequi?"], ["description", "Eaque et deleniti et."], ["date", "2020-05-06 18:30:35.520000"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.521115"], ["updated_at", "2020-05-05 18:30:35.521115"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas enim unde libero?"], ["description", "Praesentium ut rerum aperiam."], ["date", "2020-05-06 18:30:35.522773"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.523845"], ["updated_at", "2020-05-05 18:30:35.523845"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium ratione dolorum quod?"], ["description", "Aliquid ut quia quidem."], ["date", "2020-05-06 18:30:35.525213"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.526016"], ["updated_at", "2020-05-05 18:30:35.526016"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui et vel vel?"], ["description", "Labore nisi omnis maxime."], ["date", "2020-05-06 18:30:35.527199"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.527932"], ["updated_at", "2020-05-05 18:30:35.527932"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit error illo eum?"], ["description", "Velit facere officiis fugit."], ["date", "2020-05-06 18:30:35.529117"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.529946"], ["updated_at", "2020-05-05 18:30:35.529946"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed commodi quasi ullam?"], ["description", "Iste illum accusantium possimus."], ["date", "2020-05-06 18:30:35.531765"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.532870"], ["updated_at", "2020-05-05 18:30:35.532870"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae odit ipsum non?"], ["description", "Sed pariatur atque vitae."], ["date", "2020-05-06 18:30:35.535253"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.536184"], ["updated_at", "2020-05-05 18:30:35.536184"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt eos eum repellendus?"], ["description", "Voluptas provident ab ipsam."], ["date", "2020-05-06 18:30:35.537562"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.538348"], ["updated_at", "2020-05-05 18:30:35.538348"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente et quaerat et?"], ["description", "Eum enim vel occaecati."], ["date", "2020-05-06 18:30:35.539572"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.540341"], ["updated_at", "2020-05-05 18:30:35.540341"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo non amet nobis?"], ["description", "Vel eius at ut."], ["date", "2020-05-06 18:30:35.541674"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.542513"], ["updated_at", "2020-05-05 18:30:35.542513"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Unde porro quia non?"], ["description", "Atque vitae quis enim."], ["date", "2020-05-06 18:30:35.543813"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.544525"], ["updated_at", "2020-05-05 18:30:35.544525"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo quas sapiente delectus?"], ["description", "Temporibus ipsa aut hic."], ["date", "2020-05-06 18:30:35.545746"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.546459"], ["updated_at", "2020-05-05 18:30:35.546459"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et officiis dolorum maiores?"], ["description", "Harum cumque soluta excepturi."], ["date", "2020-05-06 18:30:35.547776"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.548711"], ["updated_at", "2020-05-05 18:30:35.548711"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita et magni id?"], ["description", "Ut recusandae rerum quibusdam."], ["date", "2020-05-06 18:30:35.551549"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.553215"], ["updated_at", "2020-05-05 18:30:35.553215"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut sit aspernatur facilis?"], ["description", "Et minus aut error."], ["date", "2020-05-06 18:30:35.555281"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.556625"], ["updated_at", "2020-05-05 18:30:35.556625"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit tempora qui modi?"], ["description", "Voluptatem soluta ut ex."], ["date", "2020-05-06 18:30:35.558669"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.560215"], ["updated_at", "2020-05-05 18:30:35.560215"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum est soluta ea?"], ["description", "Expedita omnis facilis velit."], ["date", "2020-05-06 18:30:35.562506"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.564192"], ["updated_at", "2020-05-05 18:30:35.564192"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:30:35 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.11ms) +Completed 404 Not Found in 5ms (Views: 0.8ms | ActiveRecord: 0.4ms | Allocations: 868) +  (0.6ms) ROLLBACK TO SAVEPOINT active_record_1 +  (45.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Brandon Zboncak"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$uOtkWqmZtL6Xkbp.Wu4hGeHL2a5JtBGDKIwsZYlOacWxAg5fy0k.e"], ["created_at", "2020-05-05 18:30:35.624215"], ["updated_at", "2020-05-05 18:30:35.624215"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minus"], ["description", "Et ad deleniti unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.629057"], ["updated_at", "2020-05-05 18:30:35.629057"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla minus quo quia?"], ["description", "Repellendus quos eaque in."], ["date", "2020-05-06 18:30:35.631079"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.632745"], ["updated_at", "2020-05-05 18:30:35.632745"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum voluptatem corrupti dolore?"], ["description", "Debitis sit laborum ratione."], ["date", "2020-05-06 18:30:35.634476"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.635409"], ["updated_at", "2020-05-05 18:30:35.635409"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui voluptates sequi voluptatum?"], ["description", "Debitis cupiditate molestiae aliquid."], ["date", "2020-05-06 18:30:35.636637"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.637471"], ["updated_at", "2020-05-05 18:30:35.637471"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus quibusdam natus rerum?"], ["description", "Molestias impedit ipsum id."], ["date", "2020-05-06 18:30:35.639209"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.640420"], ["updated_at", "2020-05-05 18:30:35.640420"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex numquam quisquam corrupti?"], ["description", "Facere quod modi omnis."], ["date", "2020-05-06 18:30:35.641991"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.642956"], ["updated_at", "2020-05-05 18:30:35.642956"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum eos pariatur voluptate?"], ["description", "Et in est omnis."], ["date", "2020-05-06 18:30:35.644277"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.645153"], ["updated_at", "2020-05-05 18:30:35.645153"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae sequi ratione veritatis?"], ["description", "Laboriosam sint non non."], ["date", "2020-05-06 18:30:35.646471"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.647282"], ["updated_at", "2020-05-05 18:30:35.647282"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia culpa vel debitis?"], ["description", "Temporibus molestias corporis aperiam."], ["date", "2020-05-06 18:30:35.648563"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.649469"], ["updated_at", "2020-05-05 18:30:35.649469"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti quidem quo similique?"], ["description", "Rerum assumenda nemo accusantium."], ["date", "2020-05-06 18:30:35.651158"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.652751"], ["updated_at", "2020-05-05 18:30:35.652751"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias in dolor enim?"], ["description", "Necessitatibus dignissimos aut autem."], ["date", "2020-05-06 18:30:35.654904"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.655845"], ["updated_at", "2020-05-05 18:30:35.655845"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt amet ab ut?"], ["description", "Odit rerum quo aut."], ["date", "2020-05-06 18:30:35.657293"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.658311"], ["updated_at", "2020-05-05 18:30:35.658311"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt sed eius ea?"], ["description", "Officiis iusto iure aliquid."], ["date", "2020-05-06 18:30:35.659915"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.660877"], ["updated_at", "2020-05-05 18:30:35.660877"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur repellat error rerum?"], ["description", "Delectus ipsa molestiae ea."], ["date", "2020-05-06 18:30:35.662284"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.663209"], ["updated_at", "2020-05-05 18:30:35.663209"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga dicta nostrum distinctio?"], ["description", "Quos id eius velit."], ["date", "2020-05-06 18:30:35.664702"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.665685"], ["updated_at", "2020-05-05 18:30:35.665685"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae recusandae non ipsa?"], ["description", "Error non quia quia."], ["date", "2020-05-06 18:30:35.667079"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.667980"], ["updated_at", "2020-05-05 18:30:35.667980"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit sunt magni blanditiis?"], ["description", "A nesciunt fuga iste."], ["date", "2020-05-06 18:30:35.669394"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.670399"], ["updated_at", "2020-05-05 18:30:35.670399"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos ex odio laudantium?"], ["description", "Asperiores accusantium ut perferendis."], ["date", "2020-05-06 18:30:35.672189"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.673334"], ["updated_at", "2020-05-05 18:30:35.673334"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni et eum aut?"], ["description", "Earum laborum molestiae ab."], ["date", "2020-05-06 18:30:35.675104"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.676172"], ["updated_at", "2020-05-05 18:30:35.676172"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis libero aperiam magni?"], ["description", "Perspiciatis modi quis cum."], ["date", "2020-05-06 18:30:35.677929"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.679106"], ["updated_at", "2020-05-05 18:30:35.679106"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et magni eos ipsam?"], ["description", "Illo est nisi nihil."], ["date", "2020-05-06 18:30:35.680763"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.681726"], ["updated_at", "2020-05-05 18:30:35.681726"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:30:35 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Dianne Haley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Klfjvv.6lMsgjx4ugfahy.qtJcTBgrj5cE4aORM4JtWvP.Mc2OBFa"], ["created_at", "2020-05-05 18:30:35.700707"], ["updated_at", "2020-05-05 18:30:35.700707"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deserunt"], ["description", "Neque ratione nam eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.703671"], ["updated_at", "2020-05-05 18:30:35.703671"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae exercitationem doloremque et?"], ["description", "Libero voluptatem deserunt excepturi."], ["date", "2020-05-06 18:30:35.705243"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.706299"], ["updated_at", "2020-05-05 18:30:35.706299"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae at hic in?"], ["description", "Totam aspernatur doloremque est."], ["date", "2020-05-06 18:30:35.707831"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.708713"], ["updated_at", "2020-05-05 18:30:35.708713"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea deserunt cum asperiores?"], ["description", "Ut ducimus aliquid tempore."], ["date", "2020-05-06 18:30:35.710149"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.711523"], ["updated_at", "2020-05-05 18:30:35.711523"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem cumque atque impedit?"], ["description", "Iure non doloribus enim."], ["date", "2020-05-06 18:30:35.714025"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.715394"], ["updated_at", "2020-05-05 18:30:35.715394"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque amet minima distinctio?"], ["description", "Ipsam ut pariatur repellat."], ["date", "2020-05-06 18:30:35.717310"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.718619"], ["updated_at", "2020-05-05 18:30:35.718619"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus aliquam qui aut?"], ["description", "Rerum non quia nesciunt."], ["date", "2020-05-06 18:30:35.721311"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.723485"], ["updated_at", "2020-05-05 18:30:35.723485"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id vel est iusto?"], ["description", "Dolorem fugiat voluptatem veniam."], ["date", "2020-05-06 18:30:35.726562"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.728456"], ["updated_at", "2020-05-05 18:30:35.728456"]] +  (0.5ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati qui illo aliquid?"], ["description", "Repellendus temporibus dolorum vitae."], ["date", "2020-05-06 18:30:35.734743"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.736697"], ["updated_at", "2020-05-05 18:30:35.736697"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem nobis incidunt in?"], ["description", "Voluptas eos ipsa iusto."], ["date", "2020-05-06 18:30:35.738900"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.741413"], ["updated_at", "2020-05-05 18:30:35.741413"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid id ea molestiae?"], ["description", "Necessitatibus aspernatur quia perferendis."], ["date", "2020-05-06 18:30:35.745679"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.747193"], ["updated_at", "2020-05-05 18:30:35.747193"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores consequuntur necessitatibus explicabo?"], ["description", "Est error voluptatibus vero."], ["date", "2020-05-06 18:30:35.749146"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.750824"], ["updated_at", "2020-05-05 18:30:35.750824"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Possimus officia doloremque qui?"], ["description", "Fugit praesentium ut voluptatibus."], ["date", "2020-05-06 18:30:35.753303"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.754899"], ["updated_at", "2020-05-05 18:30:35.754899"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam enim quia cum?"], ["description", "Ipsum deleniti officiis eaque."], ["date", "2020-05-06 18:30:35.756687"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.757852"], ["updated_at", "2020-05-05 18:30:35.757852"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione expedita quia dolorem?"], ["description", "Doloribus quia in delectus."], ["date", "2020-05-06 18:30:35.759506"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.760586"], ["updated_at", "2020-05-05 18:30:35.760586"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus voluptatem ut ut?"], ["description", "Odit libero autem illum."], ["date", "2020-05-06 18:30:35.762103"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.763197"], ["updated_at", "2020-05-05 18:30:35.763197"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt voluptatem alias atque?"], ["description", "Labore quod dolores beatae."], ["date", "2020-05-06 18:30:35.764521"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.765403"], ["updated_at", "2020-05-05 18:30:35.765403"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla dolor est sed?"], ["description", "Adipisci beatae animi ut."], ["date", "2020-05-06 18:30:35.766575"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.767384"], ["updated_at", "2020-05-05 18:30:35.767384"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia totam voluptatem maxime?"], ["description", "Aut temporibus molestias voluptatem."], ["date", "2020-05-06 18:30:35.768594"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.769434"], ["updated_at", "2020-05-05 18:30:35.769434"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe vero dolor qui?"], ["description", "Cum sed voluptatem tempora."], ["date", "2020-05-06 18:30:35.770704"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.771566"], ["updated_at", "2020-05-05 18:30:35.771566"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore tenetur assumenda praesentium?"], ["description", "Rerum quae architecto rerum."], ["date", "2020-05-06 18:30:35.773045"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:30:35.775052"], ["updated_at", "2020-05-05 18:30:35.775052"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:30:35 -0300 +Processing by MeetingsController#destroy as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + UserMeeting Load (0.1ms) SELECT "user_meetings".* FROM "user_meetings" WHERE "user_meetings"."meeting_id" = ? [["meeting_id", 1]] + Meeting Destroy (0.1ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 6ms (ActiveRecord: 0.7ms | Allocations: 2317) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cupiditate"], ["description", "Exercitationem quas debitis consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.794808"], ["updated_at", "2020-05-05 18:30:35.794808"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolore"], ["description", "Vero est dignissimos fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.797568"], ["updated_at", "2020-05-05 18:30:35.797568"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ab"], ["description", "Cum debitis maiores accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.799089"], ["updated_at", "2020-05-05 18:30:35.799089"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Necessitatibus harum omnis itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.800702"], ["updated_at", "2020-05-05 18:30:35.800702"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Sit quo aut dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.802090"], ["updated_at", "2020-05-05 18:30:35.802090"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Dolor aut aperiam et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.803411"], ["updated_at", "2020-05-05 18:30:35.803411"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Saepe dolorem ut cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.804690"], ["updated_at", "2020-05-05 18:30:35.804690"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "necessitatibus"], ["description", "Ullam magni quis cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.805962"], ["updated_at", "2020-05-05 18:30:35.805962"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "suscipit"], ["description", "Ut ab excepturi architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.807295"], ["updated_at", "2020-05-05 18:30:35.807295"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "in"], ["description", "Autem dignissimos repudiandae qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.808666"], ["updated_at", "2020-05-05 18:30:35.808666"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ricarda Farrell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$wwoOu8Ne5vc7qsuFBrTTXOaQ7lCym7VHgW19bvdCxzgM5iM2golfy"], ["created_at", "2020-05-05 18:30:35.811355"], ["updated_at", "2020-05-05 18:30:35.811355"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:30:35 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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.9ms | ActiveRecord: 0.3ms | Allocations: 2912) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "pariatur"], ["description", "Et velit id est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.836159"], ["updated_at", "2020-05-05 18:30:35.836159"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Pariatur animi libero tenetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.839400"], ["updated_at", "2020-05-05 18:30:35.839400"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dignissimos"], ["description", "Et libero voluptas aliquid."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.841051"], ["updated_at", "2020-05-05 18:30:35.841051"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Quibusdam quisquam sed odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.842461"], ["updated_at", "2020-05-05 18:30:35.842461"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsum"], ["description", "Quod earum voluptas et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.843921"], ["updated_at", "2020-05-05 18:30:35.843921"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Animi sed maiores incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.845272"], ["updated_at", "2020-05-05 18:30:35.845272"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Enim quaerat quae laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.846544"], ["updated_at", "2020-05-05 18:30:35.846544"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "inventore"], ["description", "Repellat et rem reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.847790"], ["updated_at", "2020-05-05 18:30:35.847790"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusantium"], ["description", "Et blanditiis hic consectetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.849180"], ["updated_at", "2020-05-05 18:30:35.849180"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Neque modi laborum suscipit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.850818"], ["updated_at", "2020-05-05 18:30:35.850818"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Angel Toy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9zm80Ufni8GzhK9dyKB3Euaxv727V6ge26qd1gJNpdttaP.gbUTUi"], ["created_at", "2020-05-05 18:30:35.853581"], ["updated_at", "2020-05-05 18:30:35.853581"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:30:35 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | Allocations: 2844) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (4.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Voluptatem aut quaerat odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.869863"], ["updated_at", "2020-05-05 18:30:35.869863"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequuntur"], ["description", "Debitis aspernatur veritatis iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.873441"], ["updated_at", "2020-05-05 18:30:35.873441"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Dolor adipisci quia corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.875727"], ["updated_at", "2020-05-05 18:30:35.875727"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "reprehenderit"], ["description", "Laboriosam dolor tempore in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.877341"], ["updated_at", "2020-05-05 18:30:35.877341"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Beatae reiciendis aliquid sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.878628"], ["updated_at", "2020-05-05 18:30:35.878628"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "neque"], ["description", "Quod ut laboriosam exercitationem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.879911"], ["updated_at", "2020-05-05 18:30:35.879911"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatum"], ["description", "Aut ducimus dignissimos rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.881162"], ["updated_at", "2020-05-05 18:30:35.881162"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Unde quo numquam architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.882406"], ["updated_at", "2020-05-05 18:30:35.882406"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellat"], ["description", "Explicabo ea dolorem fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.883659"], ["updated_at", "2020-05-05 18:30:35.883659"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Illo quas sit dignissimos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.884872"], ["updated_at", "2020-05-05 18:30:35.884872"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ronny Kuhn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GZUe4CuLxA17zwXNMO.wVOr/rhszJTtVahAV4zs1ZlntZ2kn8tp1m"], ["created_at", "2020-05-05 18:30:35.887375"], ["updated_at", "2020-05-05 18:30:35.887375"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:30:35 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.6ms | ActiveRecord: 0.2ms | Allocations: 2846) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:30:35 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.45ms) +Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.3ms | Allocations: 1242) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (8.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nobis"], ["description", "Repellendus maxime commodi voluptates."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.910457"], ["updated_at", "2020-05-05 18:30:35.910457"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "alias"], ["description", "Earum molestiae est rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.920993"], ["updated_at", "2020-05-05 18:30:35.920993"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Ipsum et explicabo harum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.922494"], ["updated_at", "2020-05-05 18:30:35.922494"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "culpa"], ["description", "Quibusdam illum ut nisi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.923781"], ["updated_at", "2020-05-05 18:30:35.923781"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eligendi"], ["description", "Commodi est doloribus doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.925067"], ["updated_at", "2020-05-05 18:30:35.925067"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Soluta a ut perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.926257"], ["updated_at", "2020-05-05 18:30:35.926257"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vero"], ["description", "Consequatur dolores quis excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.927483"], ["updated_at", "2020-05-05 18:30:35.927483"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nostrum"], ["description", "Velit et alias quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.928739"], ["updated_at", "2020-05-05 18:30:35.928739"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deleniti"], ["description", "Dolor sequi repellendus nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.930156"], ["updated_at", "2020-05-05 18:30:35.930156"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Libero eum facere ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.931444"], ["updated_at", "2020-05-05 18:30:35.931444"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kieth Lemke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pyfJ8y2U7S4yhM/U2xOALe6tcof3wDO7WxEkKZWHrejFHd1AclFbG"], ["created_at", "2020-05-05 18:30:35.934232"], ["updated_at", "2020-05-05 18:30:35.934232"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:30:35 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.63ms) +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 15:30:35 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.63ms) +Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.3ms | Allocations: 1240) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Quia eos et commodi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.959566"], ["updated_at", "2020-05-05 18:30:35.959566"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Maxime recusandae a aliquid."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.963170"], ["updated_at", "2020-05-05 18:30:35.963170"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Pariatur voluptatem et nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.965198"], ["updated_at", "2020-05-05 18:30:35.965198"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Velit harum facilis tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.966719"], ["updated_at", "2020-05-05 18:30:35.966719"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illo"], ["description", "Explicabo ipsam blanditiis voluptates."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.968097"], ["updated_at", "2020-05-05 18:30:35.968097"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquid"], ["description", "Quo harum omnis et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.969458"], ["updated_at", "2020-05-05 18:30:35.969458"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Quibusdam temporibus nostrum deleniti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.971102"], ["updated_at", "2020-05-05 18:30:35.971102"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Fuga rem sunt et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.972963"], ["updated_at", "2020-05-05 18:30:35.972963"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Itaque sed et debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.975545"], ["updated_at", "2020-05-05 18:30:35.975545"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fuga"], ["description", "Quisquam et veritatis repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:35.977507"], ["updated_at", "2020-05-05 18:30:35.977507"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Angelica Howell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$o1c.rj7Vy4ziIj8gHa06eO/f69LXyWaaGfM8nO4Cc6qauLGphp3R2"], ["created_at", "2020-05-05 18:30:35.980458"], ["updated_at", "2020-05-05 18:30:35.980458"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:30:35 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2842) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:30:35 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 512) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Ipsum iusto id est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:36.003736"], ["updated_at", "2020-05-05 18:30:36.003736"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusantium"], ["description", "Rerum voluptates labore eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:36.008467"], ["updated_at", "2020-05-05 18:30:36.008467"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Alias dolorum et iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:36.011425"], ["updated_at", "2020-05-05 18:30:36.011425"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloribus"], ["description", "Et voluptatem maxime est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:36.013726"], ["updated_at", "2020-05-05 18:30:36.013726"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Iste corrupti ut odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:36.016884"], ["updated_at", "2020-05-05 18:30:36.016884"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Sed sunt qui voluptatum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:36.019022"], ["updated_at", "2020-05-05 18:30:36.019022"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "neque"], ["description", "Eaque iusto sint est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:36.021339"], ["updated_at", "2020-05-05 18:30:36.021339"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "numquam"], ["description", "Totam voluptatem corrupti perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:36.022997"], ["updated_at", "2020-05-05 18:30:36.022997"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "recusandae"], ["description", "Inventore quia dolorum nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:36.024740"], ["updated_at", "2020-05-05 18:30:36.024740"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officia"], ["description", "Sint vero corporis odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:36.026857"], ["updated_at", "2020-05-05 18:30:36.026857"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Chau Smitham DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tJhDEv1v.yXm0igOJaOko.QK.9iRxhdmo6e8.6oZKvXeeB.ZkB6hO"], ["created_at", "2020-05-05 18:30:36.030455"], ["updated_at", "2020-05-05 18:30:36.030455"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:30:36 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.8ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:30:36 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (538.9ms) rollback transaction +  (0.2ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (2.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dicta"], ["description", "Voluptas dolorum modi totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:36.588614"], ["updated_at", "2020-05-05 18:30:36.588614"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quod"], ["description", "Ullam quae accusantium quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:36.594507"], ["updated_at", "2020-05-05 18:30:36.594507"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.5ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "mollitia"], ["description", "Quia esse voluptatibus in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:36.597054"], ["updated_at", "2020-05-05 18:30:36.597054"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Doloremque ut consequuntur perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:36.600011"], ["updated_at", "2020-05-05 18:30:36.600011"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Quam non deleniti dicta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:36.602627"], ["updated_at", "2020-05-05 18:30:36.602627"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Et voluptates dicta ipsa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:36.605307"], ["updated_at", "2020-05-05 18:30:36.605307"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Repellat laudantium aut velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:36.607624"], ["updated_at", "2020-05-05 18:30:36.607624"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Iste ullam et explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:36.609842"], ["updated_at", "2020-05-05 18:30:36.609842"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "hic"], ["description", "Soluta placeat ab harum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:36.612267"], ["updated_at", "2020-05-05 18:30:36.612267"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Id autem excepturi occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:36.614602"], ["updated_at", "2020-05-05 18:30:36.614602"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Albert Rogahn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8kYe.JTIwnsVy.QrNPjUZOHU2LX11ZO661fU5O8IYq2i3iBXRbnbS"], ["created_at", "2020-05-05 18:30:36.619845"], ["updated_at", "2020-05-05 18:30:36.619845"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:30:36 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | Allocations: 2846) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:30:36 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:30:36.647944"], ["updated_at", "2020-05-05 18:30:36.647944"], ["created_by", "1"]] +  (0.2ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.54ms) +Completed 201 Created in 40ms (Views: 1.0ms | ActiveRecord: 1.4ms | Allocations: 6184) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (1057.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloremque"], ["description", "Maxime qui architecto vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.733307"], ["updated_at", "2020-05-05 18:30:37.733307"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minima"], ["description", "Dolor consequatur non nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.736273"], ["updated_at", "2020-05-05 18:30:37.736273"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "placeat"], ["description", "Et esse culpa error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.738309"], ["updated_at", "2020-05-05 18:30:37.738309"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Qui at aspernatur velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.740345"], ["updated_at", "2020-05-05 18:30:37.740345"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "unde"], ["description", "Assumenda consequatur ipsam quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.742299"], ["updated_at", "2020-05-05 18:30:37.742299"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Explicabo facilis et aperiam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.744190"], ["updated_at", "2020-05-05 18:30:37.744190"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dicta"], ["description", "Ex illum sit sapiente."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.746203"], ["updated_at", "2020-05-05 18:30:37.746203"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "alias"], ["description", "Sint optio voluptas excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.748183"], ["updated_at", "2020-05-05 18:30:37.748183"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Odit qui voluptates officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.749730"], ["updated_at", "2020-05-05 18:30:37.749730"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "In nisi natus voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.754007"], ["updated_at", "2020-05-05 18:30:37.754007"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kevin Steuber IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$MtVyd1n3R0enVKc/ekYJbe6cxz/nbFTokdmAVjvl4KH.hpdyZcP2."], ["created_at", "2020-05-05 18:30:37.757677"], ["updated_at", "2020-05-05 18:30:37.757677"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:30:37 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (5.76ms) +Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:30:37 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:30:37.773427"], ["updated_at", "2020-05-05 18:30:37.773427"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.3ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.56ms) +Completed 201 Created in 7ms (Views: 1.0ms | ActiveRecord: 0.9ms | Allocations: 2217) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (3.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Modi accusantium dolorum eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.790185"], ["updated_at", "2020-05-05 18:30:37.790185"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "suscipit"], ["description", "Aliquam similique non ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.795706"], ["updated_at", "2020-05-05 18:30:37.795706"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dicta"], ["description", "Voluptatem non porro sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.797277"], ["updated_at", "2020-05-05 18:30:37.797277"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "assumenda"], ["description", "Ut praesentium delectus tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.798634"], ["updated_at", "2020-05-05 18:30:37.798634"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "esse"], ["description", "Voluptates sed quis molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.799995"], ["updated_at", "2020-05-05 18:30:37.799995"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "asperiores"], ["description", "Ea quae officiis veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.801329"], ["updated_at", "2020-05-05 18:30:37.801329"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Eius quidem illum consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.802675"], ["updated_at", "2020-05-05 18:30:37.802675"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusamus"], ["description", "Fugiat beatae earum ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.804073"], ["updated_at", "2020-05-05 18:30:37.804073"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Minus consequuntur dolor odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.805633"], ["updated_at", "2020-05-05 18:30:37.805633"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquid"], ["description", "Quibusdam consequuntur cum ipsum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.807091"], ["updated_at", "2020-05-05 18:30:37.807091"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Linwood Mohr"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tXNu2ui0o/tTpJULexqNZ.oYZU3fzmcAazhewt0QsaSgidkrjBduO"], ["created_at", "2020-05-05 18:30:37.809742"], ["updated_at", "2020-05-05 18:30:37.809742"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:30:37 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2846) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:30:37 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 422 Unprocessable Entity in 6ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 4006) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (2.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cupiditate"], ["description", "Aspernatur quaerat consequuntur ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.833553"], ["updated_at", "2020-05-05 18:30:37.833553"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Et quasi maiores molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.837364"], ["updated_at", "2020-05-05 18:30:37.837364"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequuntur"], ["description", "Iure omnis velit fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.838870"], ["updated_at", "2020-05-05 18:30:37.838870"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Mollitia voluptate beatae sequi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.840287"], ["updated_at", "2020-05-05 18:30:37.840287"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quae"], ["description", "Ut amet aliquam adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.841875"], ["updated_at", "2020-05-05 18:30:37.841875"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquam"], ["description", "Facere dignissimos aspernatur vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.843284"], ["updated_at", "2020-05-05 18:30:37.843284"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusamus"], ["description", "Ex libero et corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.844800"], ["updated_at", "2020-05-05 18:30:37.844800"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tenetur"], ["description", "Blanditiis aut pariatur expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.846316"], ["updated_at", "2020-05-05 18:30:37.846316"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusantium"], ["description", "Voluptas aut et unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.847707"], ["updated_at", "2020-05-05 18:30:37.847707"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Et voluptas repellendus et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.849152"], ["updated_at", "2020-05-05 18:30:37.849152"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ernesto Crooks"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2iJix313e.McMrn3ecmSLeQpWV6csOu975Wp7IMznJt.b0ywXN9fu"], ["created_at", "2020-05-05 18:30:37.851912"], ["updated_at", "2020-05-05 18:30:37.851912"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:30:37 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.52ms) +Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:30:37 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 3697) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Quo deleniti quis ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.875310"], ["updated_at", "2020-05-05 18:30:37.875310"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officia"], ["description", "Et id aut eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.877964"], ["updated_at", "2020-05-05 18:30:37.877964"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Quisquam laborum laudantium maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.879418"], ["updated_at", "2020-05-05 18:30:37.879418"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Ipsam totam sed quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.880737"], ["updated_at", "2020-05-05 18:30:37.880737"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Sit debitis cum qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.882066"], ["updated_at", "2020-05-05 18:30:37.882066"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quisquam"], ["description", "Nihil ut consequatur omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.883467"], ["updated_at", "2020-05-05 18:30:37.883467"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officia"], ["description", "Aut esse quasi autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.884891"], ["updated_at", "2020-05-05 18:30:37.884891"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Ratione facilis ullam numquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.886344"], ["updated_at", "2020-05-05 18:30:37.886344"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "earum"], ["description", "Quisquam officia ut voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.887707"], ["updated_at", "2020-05-05 18:30:37.887707"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Unde similique reiciendis possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.889066"], ["updated_at", "2020-05-05 18:30:37.889066"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tonisha Hahn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$T9tTEPGeTmu1w.FezgW2Z.t891r7zJlXvvWfyNuganF.cTFfupRtG"], ["created_at", "2020-05-05 18:30:37.891950"], ["updated_at", "2020-05-05 18:30:37.891950"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:30:37 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.4ms) +Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms | Allocations: 2841) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:30:37 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.2ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:30:37.903950"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 4ms (ActiveRecord: 0.5ms | Allocations: 1043) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (10.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (216.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Sunt incidunt ad iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:37.920855"], ["updated_at", "2020-05-05 18:30:37.920855"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Optio rerum pariatur ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:38.141719"], ["updated_at", "2020-05-05 18:30:38.141719"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Laboriosam exercitationem non voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:38.146483"], ["updated_at", "2020-05-05 18:30:38.146483"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maiores"], ["description", "Blanditiis animi eos eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:38.152158"], ["updated_at", "2020-05-05 18:30:38.152158"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Quae assumenda quod similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:38.159711"], ["updated_at", "2020-05-05 18:30:38.159711"], ["created_by", "1"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Quia quibusdam rerum autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:38.165033"], ["updated_at", "2020-05-05 18:30:38.165033"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "hic"], ["description", "Quis corrupti qui provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:38.169826"], ["updated_at", "2020-05-05 18:30:38.169826"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Facilis officia ipsum quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:38.174264"], ["updated_at", "2020-05-05 18:30:38.174264"], ["created_by", "1"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nam"], ["description", "Non rerum nobis quidem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:38.178855"], ["updated_at", "2020-05-05 18:30:38.178855"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Ratione ad veniam quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:38.182147"], ["updated_at", "2020-05-05 18:30:38.182147"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Billy Gulgowski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$E.Dx5iSG5ZsvNWGXg8RfmuGe.GnP.IKUzPwq2DdAvEVJ0Z3ox9pkG"], ["created_at", "2020-05-05 18:30:38.185502"], ["updated_at", "2020-05-05 18:30:38.185502"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:30:38 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.13ms) +Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.3ms | Allocations: 2843) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:30:38 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:30:38.199471"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 998) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quos"], ["description", "Consequatur suscipit totam porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:38.212298"], ["updated_at", "2020-05-05 18:30:38.212298"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Qui error vel alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:38.217279"], ["updated_at", "2020-05-05 18:30:38.217279"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quas"], ["description", "Sequi dignissimos officia et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:38.220329"], ["updated_at", "2020-05-05 18:30:38.220329"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "expedita"], ["description", "Voluptatem ipsam consectetur a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:38.222763"], ["updated_at", "2020-05-05 18:30:38.222763"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Laboriosam facilis iure debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:38.225643"], ["updated_at", "2020-05-05 18:30:38.225643"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Sed ut qui iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:38.228452"], ["updated_at", "2020-05-05 18:30:38.228452"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sapiente"], ["description", "Vel voluptate delectus fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:38.230833"], ["updated_at", "2020-05-05 18:30:38.230833"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quibusdam"], ["description", "Nemo aut id quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:38.233133"], ["updated_at", "2020-05-05 18:30:38.233133"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "hic"], ["description", "Consectetur excepturi nobis ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:38.235677"], ["updated_at", "2020-05-05 18:30:38.235677"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Qui natus et maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:30:38.238105"], ["updated_at", "2020-05-05 18:30:38.238105"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Latashia Connelly"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qcY7kJgxxhzdui.X6K8nFeXt3UavYylcqXd9cj0eOH0sBHkYnDqBC"], ["created_at", "2020-05-05 18:30:38.242083"], ["updated_at", "2020-05-05 18:30:38.242083"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:30:38 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2842) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:30:38 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1205) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (75.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jayson Konopelski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VVdq8cTG8ayvqRYd8GnY7ubyxcuV/lnDlDUOKeNhpCkmgA8sN9Q/y"], ["created_at", "2020-05-05 18:30:38.266827"], ["updated_at", "2020-05-05 18:30:38.266827"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Merissa Cummings"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1Wv1iUk0FfzxbJM9DLKhxOXlLdtszQuNIczeL/i/l7LZ7IFiVEssq"], ["created_at", "2020-05-05 18:30:38.349265"], ["updated_at", "2020-05-05 18:30:38.349265"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dannette Funk"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1CPxguTKof1J9r.WUdVCfu8mb.7REkMGbI7iug.QB8OveXGcngfGi"], ["created_at", "2020-05-05 18:30:38.357019"], ["updated_at", "2020-05-05 18:30:38.357019"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Crystal Renner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qRNIF3sHDg3oGsUP1pfSq.VVrBlrwdA8qjA1pLP8B9DTaGbPRiVEq"], ["created_at", "2020-05-05 18:30:38.363274"], ["updated_at", "2020-05-05 18:30:38.363274"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Devin Quigley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$p89YXoYivoI5kqqXiEYfBeKxnd5Vh5KioioeV99cqIVih9.lMrNGu"], ["created_at", "2020-05-05 18:30:38.367539"], ["updated_at", "2020-05-05 18:30:38.367539"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gerri Rolfson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZfQNfLUbI2hc80/Z3C08t.4WzIkv/f84qB.E6/QcWvYnL0w1zeAru"], ["created_at", "2020-05-05 18:30:38.372411"], ["updated_at", "2020-05-05 18:30:38.372411"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jess Gibson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Id7S1Z1u/77JMENC4JUNkOAty5GFsS4egQ.saXyZVZioNID28yOWe"], ["created_at", "2020-05-05 18:30:38.376883"], ["updated_at", "2020-05-05 18:30:38.376883"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Retha Nolan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$39c.84BUFEJTPV1opF9t0eJ2Zr4CPGlsgbIotj7TUfN50T9eZpQ6K"], ["created_at", "2020-05-05 18:30:38.381038"], ["updated_at", "2020-05-05 18:30:38.381038"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dewayne Adams"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ep8uggEXyPkF3.aF3.4vWO4Q9IPDval72hQkGTHejrfHX48BWls6W"], ["created_at", "2020-05-05 18:30:38.385037"], ["updated_at", "2020-05-05 18:30:38.385037"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Raymond Crona"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$u3Ed6bJGVCbSkDi1/DtuJOiacK9rUiTx/5DRAE2oUclCwDX//gd9C"], ["created_at", "2020-05-05 18:30:38.389032"], ["updated_at", "2020-05-05 18:30:38.389032"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:30:38 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.8ms) +Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms | Allocations: 2345) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (66.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Ivan Weber"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ednq6bbbnAlsxTqbToM/3.z.yr4V5Q/8OP.BVGfikuuuWNNRucE6e"], ["created_at", "2020-05-05 18:30:38.410052"], ["updated_at", "2020-05-05 18:30:38.410052"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gail Hudson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$R11VsyVUXObNDM7uYPRp8uaXzFA.hj//n.9mPJG.0Zl2WJ4JqwsCu"], ["created_at", "2020-05-05 18:30:38.480300"], ["updated_at", "2020-05-05 18:30:38.480300"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Amee Tromp"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xTUW6Xm8E1JbpVfsWEwmDuOWb9.CEnlM5GyTPL8pPiVFaZwIg8HDi"], ["created_at", "2020-05-05 18:30:38.484038"], ["updated_at", "2020-05-05 18:30:38.484038"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dian Lockman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FpsxsPjBGBUy.ULo7u3FeexdKiWJzD9/ieGFm/i26DMNoOC4sWu0m"], ["created_at", "2020-05-05 18:30:38.488105"], ["updated_at", "2020-05-05 18:30:38.488105"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Edith Lowe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$EJ8aaE18k28E9.1ROB56CO..knvBCRmDY2z2XGqLlRGDPRzMLq77G"], ["created_at", "2020-05-05 18:30:38.496350"], ["updated_at", "2020-05-05 18:30:38.496350"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cara Hamill DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$75wGhsXFlm.oVGvlnaRohuWbdPXwcuvgCydBepblGWKhXJpDf9YIq"], ["created_at", "2020-05-05 18:30:38.501168"], ["updated_at", "2020-05-05 18:30:38.501168"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marlin Stamm"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rLM4vf5bxVcBaheCN2zmQOESKCEhDLdVI2d.nq6MlRBxNtewfSWcS"], ["created_at", "2020-05-05 18:30:38.504842"], ["updated_at", "2020-05-05 18:30:38.504842"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Wilbert Auer MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KThcPJ3N/z3nIUERNpkAlOkqGkKlegPpQrvyNoFkP4lFkkj0pcD8C"], ["created_at", "2020-05-05 18:30:38.508172"], ["updated_at", "2020-05-05 18:30:38.508172"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.4ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Melvin Jenkins"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hQaBiSK1PkfOW8vgbZwbKeW5bUX4nMVyQmk2JzYXeR9e4Nq00jlme"], ["created_at", "2020-05-05 18:30:38.514755"], ["updated_at", "2020-05-05 18:30:38.514755"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Blair Satterfield"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XLVbR8dCeLlex8HkBLxtl.bgVn7sAb85rGuJ3aEsyzxqkGRrH8ZKG"], ["created_at", "2020-05-05 18:30:38.520294"], ["updated_at", "2020-05-05 18:30:38.520294"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:30:38 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.92ms) +Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms | Allocations: 2203) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (4.9ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (136.2ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (131.2ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (130.2ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (71.6ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (138.0ms) DELETE FROM "conversations"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (115.3ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (149.3ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Deeanna Kozey"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2qI52Z8MesLKBFmjCAS.UusffiOlzqdEvrv1IFHmFUT7Lsco2Z21S"], ["created_at", "2020-05-05 18:33:07.575595"], ["updated_at", "2020-05-05 18:33:07.575595"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Aut asperiores eaque omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:07.592881"], ["updated_at", "2020-05-05 18:33:07.592881"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis sint voluptas accusantium?"], ["description", "Eum tempora porro temporibus."], ["date", "2020-05-06 18:33:07.615259"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.640743"], ["updated_at", "2020-05-05 18:33:07.640743"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et sunt qui ea?"], ["description", "Dolorum eum velit ex."], ["date", "2020-05-06 18:33:07.642695"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.643572"], ["updated_at", "2020-05-05 18:33:07.643572"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit provident cumque eos?"], ["description", "Et et accusamus corrupti."], ["date", "2020-05-06 18:33:07.645162"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.646076"], ["updated_at", "2020-05-05 18:33:07.646076"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis quia dolorum dolores?"], ["description", "Possimus accusamus sit necessitatibus."], ["date", "2020-05-06 18:33:07.647569"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.648489"], ["updated_at", "2020-05-05 18:33:07.648489"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Culpa voluptatem nesciunt non?"], ["description", "Nesciunt quae dolores perferendis."], ["date", "2020-05-06 18:33:07.649899"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.650793"], ["updated_at", "2020-05-05 18:33:07.650793"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis a sequi distinctio?"], ["description", "Quidem quia temporibus quo."], ["date", "2020-05-06 18:33:07.652107"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.652849"], ["updated_at", "2020-05-05 18:33:07.652849"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt aut ut deleniti?"], ["description", "Doloremque eligendi tenetur et."], ["date", "2020-05-06 18:33:07.654193"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.654987"], ["updated_at", "2020-05-05 18:33:07.654987"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui soluta reprehenderit dicta?"], ["description", "Quo dolores aut aut."], ["date", "2020-05-06 18:33:07.656583"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.657330"], ["updated_at", "2020-05-05 18:33:07.657330"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et rerum maxime sequi?"], ["description", "Eligendi qui molestias eum."], ["date", "2020-05-06 18:33:07.658667"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.659434"], ["updated_at", "2020-05-05 18:33:07.659434"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique qui fugit ea?"], ["description", "Aut quia optio ut."], ["date", "2020-05-06 18:33:07.661302"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.662220"], ["updated_at", "2020-05-05 18:33:07.662220"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem distinctio est sint?"], ["description", "Veniam quisquam est consectetur."], ["date", "2020-05-06 18:33:07.663525"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.664264"], ["updated_at", "2020-05-05 18:33:07.664264"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos et aut commodi?"], ["description", "Possimus perspiciatis officiis ipsa."], ["date", "2020-05-06 18:33:07.665563"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.666381"], ["updated_at", "2020-05-05 18:33:07.666381"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique earum esse nihil?"], ["description", "Ut temporibus ea dolor."], ["date", "2020-05-06 18:33:07.667759"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.668730"], ["updated_at", "2020-05-05 18:33:07.668730"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt placeat commodi rerum?"], ["description", "Placeat eum ut incidunt."], ["date", "2020-05-06 18:33:07.670396"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.671427"], ["updated_at", "2020-05-05 18:33:07.671427"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem voluptatem nobis quae?"], ["description", "Voluptatum qui consequuntur vitae."], ["date", "2020-05-06 18:33:07.673031"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.674188"], ["updated_at", "2020-05-05 18:33:07.674188"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur in occaecati consequatur?"], ["description", "Architecto facere tempora animi."], ["date", "2020-05-06 18:33:07.675737"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.676596"], ["updated_at", "2020-05-05 18:33:07.676596"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et laborum et laboriosam?"], ["description", "Nulla similique voluptatem maxime."], ["date", "2020-05-06 18:33:07.678107"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.678940"], ["updated_at", "2020-05-05 18:33:07.678940"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis earum blanditiis ducimus?"], ["description", "Corporis sed consequuntur vero."], ["date", "2020-05-06 18:33:07.680363"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.681149"], ["updated_at", "2020-05-05 18:33:07.681149"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio voluptas voluptatem quia?"], ["description", "Asperiores sit repellendus ea."], ["date", "2020-05-06 18:33:07.682499"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.683297"], ["updated_at", "2020-05-05 18:33:07.683297"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At fugit aut autem?"], ["description", "Enim est iste officia."], ["date", "2020-05-06 18:33:07.684579"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.685367"], ["updated_at", "2020-05-05 18:33:07.685367"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:33:07 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.84ms) +Completed 200 OK in 35ms (Views: 16.7ms | ActiveRecord: 0.5ms | Allocations: 8641) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Chang Bartoletti"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2mG7Atf9NZdNKOh3NDmy6u7lQrOBK5dn8XcDmCDTwRPB3QeCGtcp6"], ["created_at", "2020-05-05 18:33:07.772342"], ["updated_at", "2020-05-05 18:33:07.772342"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "labore"], ["description", "Itaque eum fuga a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:07.775741"], ["updated_at", "2020-05-05 18:33:07.775741"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque rem dolor dicta?"], ["description", "Excepturi dolore voluptas nobis."], ["date", "2020-05-06 18:33:07.777436"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.778469"], ["updated_at", "2020-05-05 18:33:07.778469"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto quis dicta earum?"], ["description", "Reprehenderit est dignissimos quis."], ["date", "2020-05-06 18:33:07.779911"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.780730"], ["updated_at", "2020-05-05 18:33:07.780730"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt at ea facere?"], ["description", "Qui molestias aut consequatur."], ["date", "2020-05-06 18:33:07.782153"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.783127"], ["updated_at", "2020-05-05 18:33:07.783127"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et consequatur suscipit iusto?"], ["description", "Delectus sunt sunt alias."], ["date", "2020-05-06 18:33:07.785041"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.786022"], ["updated_at", "2020-05-05 18:33:07.786022"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio rerum expedita doloribus?"], ["description", "Voluptas nulla sunt veniam."], ["date", "2020-05-06 18:33:07.787485"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.788388"], ["updated_at", "2020-05-05 18:33:07.788388"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil reiciendis sed dignissimos?"], ["description", "Est molestiae ad impedit."], ["date", "2020-05-06 18:33:07.789813"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.790581"], ["updated_at", "2020-05-05 18:33:07.790581"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad et quo suscipit?"], ["description", "Veritatis dolor eaque sit."], ["date", "2020-05-06 18:33:07.791762"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.792442"], ["updated_at", "2020-05-05 18:33:07.792442"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit doloremque est sit?"], ["description", "Provident deserunt dolor quo."], ["date", "2020-05-06 18:33:07.793794"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.794535"], ["updated_at", "2020-05-05 18:33:07.794535"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga cupiditate debitis autem?"], ["description", "Consequatur praesentium nemo dolores."], ["date", "2020-05-06 18:33:07.795858"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.796659"], ["updated_at", "2020-05-05 18:33:07.796659"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut et voluptatem et?"], ["description", "Mollitia minima sint error."], ["date", "2020-05-06 18:33:07.798796"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.799697"], ["updated_at", "2020-05-05 18:33:07.799697"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis et qui id?"], ["description", "Porro repudiandae sed ab."], ["date", "2020-05-06 18:33:07.801133"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.801922"], ["updated_at", "2020-05-05 18:33:07.801922"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias et et amet?"], ["description", "Laboriosam quae molestiae cumque."], ["date", "2020-05-06 18:33:07.803434"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.804327"], ["updated_at", "2020-05-05 18:33:07.804327"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis est blanditiis quam?"], ["description", "Beatae exercitationem reiciendis voluptates."], ["date", "2020-05-06 18:33:07.805904"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.806991"], ["updated_at", "2020-05-05 18:33:07.806991"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque quibusdam praesentium illo?"], ["description", "Dolorem nobis animi eum."], ["date", "2020-05-06 18:33:07.808772"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.809704"], ["updated_at", "2020-05-05 18:33:07.809704"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia laborum ea animi?"], ["description", "Qui natus consequatur architecto."], ["date", "2020-05-06 18:33:07.811375"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.812234"], ["updated_at", "2020-05-05 18:33:07.812234"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident dolorem natus exercitationem?"], ["description", "Dolore odit itaque in."], ["date", "2020-05-06 18:33:07.813447"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.814129"], ["updated_at", "2020-05-05 18:33:07.814129"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis nostrum et atque?"], ["description", "Quia eum velit quos."], ["date", "2020-05-06 18:33:07.815317"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.816402"], ["updated_at", "2020-05-05 18:33:07.816402"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui at est asperiores?"], ["description", "Eius exercitationem sed aspernatur."], ["date", "2020-05-06 18:33:07.818270"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.819562"], ["updated_at", "2020-05-05 18:33:07.819562"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut quasi incidunt inventore?"], ["description", "Repellendus quae dicta error."], ["date", "2020-05-06 18:33:07.820976"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.821748"], ["updated_at", "2020-05-05 18:33:07.821748"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi enim dolor ut?"], ["description", "Dolorum nobis tenetur corrupti."], ["date", "2020-05-06 18:33:07.823025"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.823925"], ["updated_at", "2020-05-05 18:33:07.823925"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:33:07 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.31ms) +Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.3ms | Allocations: 5513) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dianna Haag PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$y5n2nfzVPR9aSEj0IUUqBOpvNtvmcuU3nZZz.hSI.f/8x6nL8723y"], ["created_at", "2020-05-05 18:33:07.853164"], ["updated_at", "2020-05-05 18:33:07.853164"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Quisquam itaque harum rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:07.856587"], ["updated_at", "2020-05-05 18:33:07.856587"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores fugiat accusantium fuga?"], ["description", "Quia voluptatem odio consequuntur."], ["date", "2020-05-06 18:33:07.859028"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.860242"], ["updated_at", "2020-05-05 18:33:07.860242"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis pariatur omnis et?"], ["description", "Quam repudiandae mollitia iure."], ["date", "2020-05-06 18:33:07.861763"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.862551"], ["updated_at", "2020-05-05 18:33:07.862551"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Culpa est molestiae ullam?"], ["description", "Rerum beatae harum quibusdam."], ["date", "2020-05-06 18:33:07.863785"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.864483"], ["updated_at", "2020-05-05 18:33:07.864483"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus corrupti incidunt suscipit?"], ["description", "Ex amet excepturi eaque."], ["date", "2020-05-06 18:33:07.865611"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.866312"], ["updated_at", "2020-05-05 18:33:07.866312"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur deleniti incidunt possimus?"], ["description", "Dolor aut neque debitis."], ["date", "2020-05-06 18:33:07.867383"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.868155"], ["updated_at", "2020-05-05 18:33:07.868155"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia dicta in impedit?"], ["description", "Optio sit est molestiae."], ["date", "2020-05-06 18:33:07.869762"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.870549"], ["updated_at", "2020-05-05 18:33:07.870549"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa id consequatur asperiores?"], ["description", "Libero aspernatur amet animi."], ["date", "2020-05-06 18:33:07.871700"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.872454"], ["updated_at", "2020-05-05 18:33:07.872454"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos quas cum praesentium?"], ["description", "Ut consectetur quos natus."], ["date", "2020-05-06 18:33:07.873619"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.874364"], ["updated_at", "2020-05-05 18:33:07.874364"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error blanditiis nihil est?"], ["description", "At officiis sit sapiente."], ["date", "2020-05-06 18:33:07.875561"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.876756"], ["updated_at", "2020-05-05 18:33:07.876756"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed a quo omnis?"], ["description", "Dicta sequi est pariatur."], ["date", "2020-05-06 18:33:07.881420"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.882842"], ["updated_at", "2020-05-05 18:33:07.882842"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut qui eos ut?"], ["description", "Nulla dolore praesentium in."], ["date", "2020-05-06 18:33:07.884398"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.885265"], ["updated_at", "2020-05-05 18:33:07.885265"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (21.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab quia quia officia?"], ["description", "Quis dolor tenetur nihil."], ["date", "2020-05-06 18:33:07.886578"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.908909"], ["updated_at", "2020-05-05 18:33:07.908909"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut aperiam distinctio eos?"], ["description", "Doloremque cum quae deserunt."], ["date", "2020-05-06 18:33:07.910571"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.911455"], ["updated_at", "2020-05-05 18:33:07.911455"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam dicta quisquam totam?"], ["description", "Recusandae natus fuga voluptatem."], ["date", "2020-05-06 18:33:07.912622"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.913340"], ["updated_at", "2020-05-05 18:33:07.913340"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi itaque ut vel?"], ["description", "Impedit quaerat quidem ipsum."], ["date", "2020-05-06 18:33:07.914496"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.915239"], ["updated_at", "2020-05-05 18:33:07.915239"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti facere corrupti corporis?"], ["description", "Dolorem aut repellendus ipsa."], ["date", "2020-05-06 18:33:07.916726"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.918261"], ["updated_at", "2020-05-05 18:33:07.918261"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Culpa nisi voluptatibus magni?"], ["description", "Illum nulla aliquid voluptatem."], ["date", "2020-05-06 18:33:07.919753"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.920699"], ["updated_at", "2020-05-05 18:33:07.920699"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis asperiores quia dolor?"], ["description", "Aut in officia sint."], ["date", "2020-05-06 18:33:07.921969"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.922698"], ["updated_at", "2020-05-05 18:33:07.922698"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem magnam quod impedit?"], ["description", "Dolores omnis debitis deserunt."], ["date", "2020-05-06 18:33:07.923832"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.924515"], ["updated_at", "2020-05-05 18:33:07.924515"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et vel neque nesciunt?"], ["description", "Et facilis eius tempora."], ["date", "2020-05-06 18:33:07.925684"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.926356"], ["updated_at", "2020-05-05 18:33:07.926356"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:33:07 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 404 Not Found in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms | Allocations: 866) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Glenna Veum"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7UN58u.jaVgYKObaC4neu.c5Fg3FTt8XZcyHhewNR3r6SQ3nkbSWG"], ["created_at", "2020-05-05 18:33:07.946791"], ["updated_at", "2020-05-05 18:33:07.946791"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Nisi porro eum et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:07.949755"], ["updated_at", "2020-05-05 18:33:07.949755"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet dolorem earum eligendi?"], ["description", "Quo quia autem libero."], ["date", "2020-05-06 18:33:07.951235"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.952126"], ["updated_at", "2020-05-05 18:33:07.952126"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque aliquam rerum rerum?"], ["description", "Eveniet ut quam minima."], ["date", "2020-05-06 18:33:07.953497"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.954197"], ["updated_at", "2020-05-05 18:33:07.954197"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id quo voluptatem incidunt?"], ["description", "Debitis nisi quia possimus."], ["date", "2020-05-06 18:33:07.955402"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.956240"], ["updated_at", "2020-05-05 18:33:07.956240"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta aliquid dolores adipisci?"], ["description", "Quod ut occaecati consequuntur."], ["date", "2020-05-06 18:33:07.958113"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.959333"], ["updated_at", "2020-05-05 18:33:07.959333"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et et perspiciatis unde?"], ["description", "Omnis ipsa dolorum eos."], ["date", "2020-05-06 18:33:07.961342"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.963044"], ["updated_at", "2020-05-05 18:33:07.963044"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae exercitationem quia et?"], ["description", "Iste dolore laudantium id."], ["date", "2020-05-06 18:33:07.964419"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.965232"], ["updated_at", "2020-05-05 18:33:07.965232"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem facilis eos sapiente?"], ["description", "Provident non a vel."], ["date", "2020-05-06 18:33:07.966274"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.966947"], ["updated_at", "2020-05-05 18:33:07.966947"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Hic mollitia culpa recusandae?"], ["description", "Asperiores sapiente qui exercitationem."], ["date", "2020-05-06 18:33:07.967988"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.968697"], ["updated_at", "2020-05-05 18:33:07.968697"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque pariatur beatae facilis?"], ["description", "Iste aut quam ab."], ["date", "2020-05-06 18:33:07.969897"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.970686"], ["updated_at", "2020-05-05 18:33:07.970686"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo ipsa molestiae tenetur?"], ["description", "Dolores est animi et."], ["date", "2020-05-06 18:33:07.972530"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.973340"], ["updated_at", "2020-05-05 18:33:07.973340"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit quae et qui?"], ["description", "Expedita molestias ipsum possimus."], ["date", "2020-05-06 18:33:07.974512"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.975188"], ["updated_at", "2020-05-05 18:33:07.975188"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis enim possimus cumque?"], ["description", "Ad eum dolorem eum."], ["date", "2020-05-06 18:33:07.976278"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.977194"], ["updated_at", "2020-05-05 18:33:07.977194"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est ea atque porro?"], ["description", "Odit eaque quis dolore."], ["date", "2020-05-06 18:33:07.979340"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.980290"], ["updated_at", "2020-05-05 18:33:07.980290"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et autem ratione voluptatem?"], ["description", "Est esse minus ipsa."], ["date", "2020-05-06 18:33:07.981588"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.982291"], ["updated_at", "2020-05-05 18:33:07.982291"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse rerum quaerat laudantium?"], ["description", "Aut quod doloremque non."], ["date", "2020-05-06 18:33:07.983512"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.984229"], ["updated_at", "2020-05-05 18:33:07.984229"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores dolorum tempora quia?"], ["description", "Est illum eaque ab."], ["date", "2020-05-06 18:33:07.985268"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.985949"], ["updated_at", "2020-05-05 18:33:07.985949"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore quae quaerat dolor?"], ["description", "Nesciunt voluptatem aut neque."], ["date", "2020-05-06 18:33:07.987032"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.987713"], ["updated_at", "2020-05-05 18:33:07.987713"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore maxime qui quis?"], ["description", "Nostrum modi fuga sunt."], ["date", "2020-05-06 18:33:07.988901"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.989617"], ["updated_at", "2020-05-05 18:33:07.989617"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut odit voluptas et?"], ["description", "Eum cupiditate doloribus accusamus."], ["date", "2020-05-06 18:33:07.990704"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.991380"], ["updated_at", "2020-05-05 18:33:07.991380"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia animi voluptatum maiores?"], ["description", "Aut fugiat quia tempore."], ["date", "2020-05-06 18:33:07.992444"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:07.993082"], ["updated_at", "2020-05-05 18:33:07.993082"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:33:07 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 509) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Arlinda Kohler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8vxWZGWredRfmxRrWYMKtOqOdNvBIzWfJhUzfgmScVEm0mPBd5dki"], ["created_at", "2020-05-05 18:33:08.011824"], ["updated_at", "2020-05-05 18:33:08.011824"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Repellendus ut accusantium perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:08.014693"], ["updated_at", "2020-05-05 18:33:08.014693"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione ipsam error reprehenderit?"], ["description", "Ullam consequatur odio excepturi."], ["date", "2020-05-06 18:33:08.016301"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.017487"], ["updated_at", "2020-05-05 18:33:08.017487"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi non minus voluptas?"], ["description", "Eius possimus quo non."], ["date", "2020-05-06 18:33:08.021542"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.023229"], ["updated_at", "2020-05-05 18:33:08.023229"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reiciendis assumenda veniam cupiditate?"], ["description", "Deserunt reprehenderit facere sed."], ["date", "2020-05-06 18:33:08.025442"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.026415"], ["updated_at", "2020-05-05 18:33:08.026415"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae ipsum eos non?"], ["description", "Ea eaque porro nam."], ["date", "2020-05-06 18:33:08.027776"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.028687"], ["updated_at", "2020-05-05 18:33:08.028687"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga quidem fugiat sapiente?"], ["description", "Molestias earum officia voluptas."], ["date", "2020-05-06 18:33:08.029915"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.030678"], ["updated_at", "2020-05-05 18:33:08.030678"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A et placeat quod?"], ["description", "Magnam consectetur ut officia."], ["date", "2020-05-06 18:33:08.031871"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.032585"], ["updated_at", "2020-05-05 18:33:08.032585"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Delectus qui natus voluptate?"], ["description", "Et aliquid sint voluptas."], ["date", "2020-05-06 18:33:08.033898"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.034682"], ["updated_at", "2020-05-05 18:33:08.034682"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium quaerat rerum nulla?"], ["description", "Qui voluptas pariatur non."], ["date", "2020-05-06 18:33:08.035923"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.036667"], ["updated_at", "2020-05-05 18:33:08.036667"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam quas enim quia?"], ["description", "Expedita iste qui perferendis."], ["date", "2020-05-06 18:33:08.038556"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.039718"], ["updated_at", "2020-05-05 18:33:08.039718"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia sapiente enim nam?"], ["description", "Tempore odio ut dolores."], ["date", "2020-05-06 18:33:08.042254"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.044061"], ["updated_at", "2020-05-05 18:33:08.044061"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut enim est ullam?"], ["description", "In fugiat aut perspiciatis."], ["date", "2020-05-06 18:33:08.046086"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.047220"], ["updated_at", "2020-05-05 18:33:08.047220"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam nobis vero sint?"], ["description", "Doloremque ipsam dignissimos quis."], ["date", "2020-05-06 18:33:08.048548"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.049439"], ["updated_at", "2020-05-05 18:33:08.049439"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta non voluptatum ipsam?"], ["description", "Dolorum iusto neque aliquam."], ["date", "2020-05-06 18:33:08.050710"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.051443"], ["updated_at", "2020-05-05 18:33:08.051443"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati vel quia quia?"], ["description", "Perspiciatis facilis iure sit."], ["date", "2020-05-06 18:33:08.052705"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.053421"], ["updated_at", "2020-05-05 18:33:08.053421"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste eos amet rerum?"], ["description", "Aut harum quos et."], ["date", "2020-05-06 18:33:08.054603"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.055309"], ["updated_at", "2020-05-05 18:33:08.055309"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis rerum quisquam consequatur?"], ["description", "Repudiandae accusamus et est."], ["date", "2020-05-06 18:33:08.056459"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.057538"], ["updated_at", "2020-05-05 18:33:08.057538"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem consequuntur odio quod?"], ["description", "Nemo quis aut et."], ["date", "2020-05-06 18:33:08.059952"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.061041"], ["updated_at", "2020-05-05 18:33:08.061041"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione aut quidem et?"], ["description", "Esse quaerat rerum ut."], ["date", "2020-05-06 18:33:08.062534"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.063307"], ["updated_at", "2020-05-05 18:33:08.063307"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat fugiat culpa laborum?"], ["description", "Deleniti minima sint tempore."], ["date", "2020-05-06 18:33:08.064498"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.065209"], ["updated_at", "2020-05-05 18:33:08.065209"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias sit ea minus?"], ["description", "Fugit suscipit nulla est."], ["date", "2020-05-06 18:33:08.066333"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.067023"], ["updated_at", "2020-05-05 18:33:08.067023"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:33:08 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.59ms) +Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.3ms | Allocations: 1086) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Maddie Swift"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fqY8C6jTK17b2eotY9/5Vu3kuafekzA0ifOff2MZStr2Q8xoZffyO"], ["created_at", "2020-05-05 18:33:08.084532"], ["updated_at", "2020-05-05 18:33:08.084532"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Aut quo aperiam omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:08.087622"], ["updated_at", "2020-05-05 18:33:08.087622"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum minus ipsum eveniet?"], ["description", "Facere laboriosam voluptas consequatur."], ["date", "2020-05-06 18:33:08.089289"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.090262"], ["updated_at", "2020-05-05 18:33:08.090262"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt dolorem qui exercitationem?"], ["description", "Neque enim ea quaerat."], ["date", "2020-05-06 18:33:08.091598"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.092388"], ["updated_at", "2020-05-05 18:33:08.092388"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum velit repudiandae maxime?"], ["description", "Magnam sapiente nobis deserunt."], ["date", "2020-05-06 18:33:08.093951"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.094860"], ["updated_at", "2020-05-05 18:33:08.094860"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas quo tenetur exercitationem?"], ["description", "Sed possimus sunt amet."], ["date", "2020-05-06 18:33:08.096149"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.096928"], ["updated_at", "2020-05-05 18:33:08.096928"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A odit perferendis aut?"], ["description", "Maxime id omnis nihil."], ["date", "2020-05-06 18:33:08.098500"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.099869"], ["updated_at", "2020-05-05 18:33:08.099869"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et at optio sequi?"], ["description", "Vero earum ut nihil."], ["date", "2020-05-06 18:33:08.101289"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.102139"], ["updated_at", "2020-05-05 18:33:08.102139"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident quaerat tenetur qui?"], ["description", "Qui adipisci unde dolore."], ["date", "2020-05-06 18:33:08.103567"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.104982"], ["updated_at", "2020-05-05 18:33:08.104982"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur pariatur quo expedita?"], ["description", "Ut quas quidem aliquid."], ["date", "2020-05-06 18:33:08.107274"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.109170"], ["updated_at", "2020-05-05 18:33:08.109170"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui fugiat porro illo?"], ["description", "Eum quos sit ad."], ["date", "2020-05-06 18:33:08.111263"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.112181"], ["updated_at", "2020-05-05 18:33:08.112181"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus consequatur ad aliquam?"], ["description", "Reiciendis cumque sint aperiam."], ["date", "2020-05-06 18:33:08.114033"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.114847"], ["updated_at", "2020-05-05 18:33:08.114847"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit consequatur quos voluptatem?"], ["description", "Aut numquam ipsa ad."], ["date", "2020-05-06 18:33:08.116127"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.116925"], ["updated_at", "2020-05-05 18:33:08.116925"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed minima repudiandae qui?"], ["description", "Sed est a officiis."], ["date", "2020-05-06 18:33:08.119665"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.120742"], ["updated_at", "2020-05-05 18:33:08.120742"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat ut quod odio?"], ["description", "Quis eos labore doloribus."], ["date", "2020-05-06 18:33:08.122239"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.123012"], ["updated_at", "2020-05-05 18:33:08.123012"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et illo accusantium sit?"], ["description", "Esse voluptas dolores est."], ["date", "2020-05-06 18:33:08.124197"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.124888"], ["updated_at", "2020-05-05 18:33:08.124888"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit soluta aut architecto?"], ["description", "Consequatur inventore ullam praesentium."], ["date", "2020-05-06 18:33:08.126132"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.126915"], ["updated_at", "2020-05-05 18:33:08.126915"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit velit unde officia?"], ["description", "Quo molestias id earum."], ["date", "2020-05-06 18:33:08.128176"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.129021"], ["updated_at", "2020-05-05 18:33:08.129021"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit accusamus ipsam porro?"], ["description", "Corrupti magnam quis quisquam."], ["date", "2020-05-06 18:33:08.130252"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.131057"], ["updated_at", "2020-05-05 18:33:08.131057"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit itaque qui neque?"], ["description", "Vitae atque labore soluta."], ["date", "2020-05-06 18:33:08.132701"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.133718"], ["updated_at", "2020-05-05 18:33:08.133718"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Possimus aut iusto odio?"], ["description", "Laborum non pariatur est."], ["date", "2020-05-06 18:33:08.135205"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.136199"], ["updated_at", "2020-05-05 18:33:08.136199"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione impedit quis tempore?"], ["description", "Rerum laboriosam qui minus."], ["date", "2020-05-06 18:33:08.138007"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.139386"], ["updated_at", "2020-05-05 18:33:08.139386"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:33:08 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (1.03ms) +Completed 200 OK in 4ms (Views: 2.0ms | ActiveRecord: 0.2ms | Allocations: 1058) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Pamela Paucek"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TdHhfGNE.5DuWNo92c5MAe7pLOFk4Mtxa1c25Bkkcc9B.S7OU2B7C"], ["created_at", "2020-05-05 18:33:08.165653"], ["updated_at", "2020-05-05 18:33:08.165653"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Suscipit qui perspiciatis eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:08.169064"], ["updated_at", "2020-05-05 18:33:08.169064"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt voluptatem in et?"], ["description", "Fuga eum repellat quam."], ["date", "2020-05-06 18:33:08.170934"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.171952"], ["updated_at", "2020-05-05 18:33:08.171952"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero magnam commodi corporis?"], ["description", "Quam qui magnam saepe."], ["date", "2020-05-06 18:33:08.208460"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.210385"], ["updated_at", "2020-05-05 18:33:08.210385"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti et distinctio totam?"], ["description", "Temporibus rerum quia velit."], ["date", "2020-05-06 18:33:08.212140"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.213089"], ["updated_at", "2020-05-05 18:33:08.213089"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim error atque voluptatem?"], ["description", "Consectetur voluptas exercitationem sunt."], ["date", "2020-05-06 18:33:08.214735"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.215774"], ["updated_at", "2020-05-05 18:33:08.215774"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti labore eaque voluptas?"], ["description", "Explicabo saepe ut cum."], ["date", "2020-05-06 18:33:08.218171"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.220705"], ["updated_at", "2020-05-05 18:33:08.220705"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum iusto aliquam provident?"], ["description", "Totam ut autem aliquid."], ["date", "2020-05-06 18:33:08.223046"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.224987"], ["updated_at", "2020-05-05 18:33:08.224987"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente adipisci illo unde?"], ["description", "Dolor eos aspernatur nobis."], ["date", "2020-05-06 18:33:08.226608"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.227944"], ["updated_at", "2020-05-05 18:33:08.227944"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut iste non omnis?"], ["description", "Aut quod soluta molestiae."], ["date", "2020-05-06 18:33:08.230219"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.231186"], ["updated_at", "2020-05-05 18:33:08.231186"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut qui sint inventore?"], ["description", "Dolor ipsam eligendi occaecati."], ["date", "2020-05-06 18:33:08.232405"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.233085"], ["updated_at", "2020-05-05 18:33:08.233085"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores neque animi ut?"], ["description", "Tenetur tempore deserunt voluptas."], ["date", "2020-05-06 18:33:08.234994"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.235759"], ["updated_at", "2020-05-05 18:33:08.235759"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit minus facilis aut?"], ["description", "Qui sed nesciunt provident."], ["date", "2020-05-06 18:33:08.237015"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.237824"], ["updated_at", "2020-05-05 18:33:08.237824"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi sunt hic nemo?"], ["description", "Nam voluptatem cum possimus."], ["date", "2020-05-06 18:33:08.239977"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.241626"], ["updated_at", "2020-05-05 18:33:08.241626"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae voluptatem ut consequatur?"], ["description", "Sit iure ullam deleniti."], ["date", "2020-05-06 18:33:08.243286"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.244312"], ["updated_at", "2020-05-05 18:33:08.244312"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Delectus vero quis et?"], ["description", "Accusamus id facilis omnis."], ["date", "2020-05-06 18:33:08.246660"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.247607"], ["updated_at", "2020-05-05 18:33:08.247607"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed qui eum libero?"], ["description", "Eum nostrum et ipsam."], ["date", "2020-05-06 18:33:08.248991"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.249741"], ["updated_at", "2020-05-05 18:33:08.249741"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum repellat nihil aliquam?"], ["description", "Dolorum hic ipsum debitis."], ["date", "2020-05-06 18:33:08.250944"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.251662"], ["updated_at", "2020-05-05 18:33:08.251662"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit molestiae aperiam tempora?"], ["description", "Eveniet maxime sunt non."], ["date", "2020-05-06 18:33:08.252774"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.253593"], ["updated_at", "2020-05-05 18:33:08.253593"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro voluptas iusto pariatur?"], ["description", "Voluptates occaecati qui eos."], ["date", "2020-05-06 18:33:08.254934"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.255753"], ["updated_at", "2020-05-05 18:33:08.255753"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam dolores rem ab?"], ["description", "Minus fugit aut voluptates."], ["date", "2020-05-06 18:33:08.257274"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.258614"], ["updated_at", "2020-05-05 18:33:08.258614"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut sed ab ipsam?"], ["description", "A tenetur aliquam et."], ["date", "2020-05-06 18:33:08.283896"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.285583"], ["updated_at", "2020-05-05 18:33:08.285583"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:33:08 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 884) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Max O'Connell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Ps4tG40W6xBAOBwkfgBlz.s489Yt0MCbrN2gALjIFB4i9xkWm1rXi"], ["created_at", "2020-05-05 18:33:08.300827"], ["updated_at", "2020-05-05 18:33:08.300827"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eligendi"], ["description", "Sit atque praesentium laboriosam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:08.305362"], ["updated_at", "2020-05-05 18:33:08.305362"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis dicta nihil sequi?"], ["description", "Qui nisi expedita molestias."], ["date", "2020-05-06 18:33:08.308167"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.309336"], ["updated_at", "2020-05-05 18:33:08.309336"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est et perspiciatis voluptatem?"], ["description", "Commodi non repudiandae aut."], ["date", "2020-05-06 18:33:08.310849"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.311577"], ["updated_at", "2020-05-05 18:33:08.311577"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est deserunt quod qui?"], ["description", "Eius modi qui perferendis."], ["date", "2020-05-06 18:33:08.312838"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.313525"], ["updated_at", "2020-05-05 18:33:08.313525"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis quia maiores commodi?"], ["description", "Accusantium id esse voluptas."], ["date", "2020-05-06 18:33:08.314669"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.315370"], ["updated_at", "2020-05-05 18:33:08.315370"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam quam labore ducimus?"], ["description", "Quas est voluptatem esse."], ["date", "2020-05-06 18:33:08.316506"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.317272"], ["updated_at", "2020-05-05 18:33:08.317272"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reiciendis distinctio deserunt ad?"], ["description", "Explicabo sint voluptas et."], ["date", "2020-05-06 18:33:08.318469"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.319779"], ["updated_at", "2020-05-05 18:33:08.319779"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minus et debitis explicabo?"], ["description", "Esse architecto nisi totam."], ["date", "2020-05-06 18:33:08.321643"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.322702"], ["updated_at", "2020-05-05 18:33:08.322702"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut amet vitae asperiores?"], ["description", "Autem autem laborum atque."], ["date", "2020-05-06 18:33:08.324130"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.324941"], ["updated_at", "2020-05-05 18:33:08.324941"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis et omnis omnis?"], ["description", "Qui est dignissimos inventore."], ["date", "2020-05-06 18:33:08.326316"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.327394"], ["updated_at", "2020-05-05 18:33:08.327394"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto sit ut eligendi?"], ["description", "Odio earum illo eligendi."], ["date", "2020-05-06 18:33:08.329907"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.331929"], ["updated_at", "2020-05-05 18:33:08.331929"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut nobis temporibus cum?"], ["description", "Accusamus consequatur non quidem."], ["date", "2020-05-06 18:33:08.333734"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.334613"], ["updated_at", "2020-05-05 18:33:08.334613"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In perspiciatis minima veniam?"], ["description", "Aut vitae sed et."], ["date", "2020-05-06 18:33:08.335785"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.336469"], ["updated_at", "2020-05-05 18:33:08.336469"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed expedita aut occaecati?"], ["description", "Praesentium modi quisquam odio."], ["date", "2020-05-06 18:33:08.337638"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.338370"], ["updated_at", "2020-05-05 18:33:08.338370"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui tenetur fugit velit?"], ["description", "Delectus vitae tempora ducimus."], ["date", "2020-05-06 18:33:08.340628"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.342238"], ["updated_at", "2020-05-05 18:33:08.342238"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate non voluptatem occaecati?"], ["description", "Illo nulla aut corrupti."], ["date", "2020-05-06 18:33:08.344196"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.345064"], ["updated_at", "2020-05-05 18:33:08.345064"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel incidunt quasi quo?"], ["description", "Exercitationem pariatur omnis aut."], ["date", "2020-05-06 18:33:08.346285"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.346987"], ["updated_at", "2020-05-05 18:33:08.346987"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit magni magnam in?"], ["description", "Aut nihil vel voluptate."], ["date", "2020-05-06 18:33:08.348234"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.348966"], ["updated_at", "2020-05-05 18:33:08.348966"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est et nulla impedit?"], ["description", "Qui aut cumque rerum."], ["date", "2020-05-06 18:33:08.350170"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.350870"], ["updated_at", "2020-05-05 18:33:08.350870"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus et ipsa eum?"], ["description", "Sit dolore harum recusandae."], ["date", "2020-05-06 18:33:08.352030"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.352734"], ["updated_at", "2020-05-05 18:33:08.352734"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique laboriosam quia et?"], ["description", "Dolores eos quia officiis."], ["date", "2020-05-06 18:33:08.353899"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.354604"], ["updated_at", "2020-05-05 18:33:08.354604"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:33:08 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 404 Not Found in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 867) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Graig Ortiz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$sTfwWXLC9hyHJWPirZQ6FeBF76iNAdDbQTP3XEk0dtJ5VO1Ron3ya"], ["created_at", "2020-05-05 18:33:08.371263"], ["updated_at", "2020-05-05 18:33:08.371263"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "error"], ["description", "Incidunt necessitatibus qui ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:08.374145"], ["updated_at", "2020-05-05 18:33:08.374145"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis rerum ut ex?"], ["description", "Quaerat at sed atque."], ["date", "2020-05-06 18:33:08.375655"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.376732"], ["updated_at", "2020-05-05 18:33:08.376732"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur ut omnis earum?"], ["description", "Maxime quia magni ipsam."], ["date", "2020-05-06 18:33:08.378230"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.379295"], ["updated_at", "2020-05-05 18:33:08.379295"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto quasi eum aut?"], ["description", "Doloribus ex quis voluptas."], ["date", "2020-05-06 18:33:08.381380"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.382402"], ["updated_at", "2020-05-05 18:33:08.382402"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas quasi ex tempora?"], ["description", "Et quia id adipisci."], ["date", "2020-05-06 18:33:08.384473"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.385709"], ["updated_at", "2020-05-05 18:33:08.385709"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti porro deserunt sapiente?"], ["description", "Velit omnis saepe in."], ["date", "2020-05-06 18:33:08.387126"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.387978"], ["updated_at", "2020-05-05 18:33:08.387978"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In eius autem ut?"], ["description", "Veritatis nemo exercitationem vel."], ["date", "2020-05-06 18:33:08.389474"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.390321"], ["updated_at", "2020-05-05 18:33:08.390321"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia et vel labore?"], ["description", "Autem aspernatur accusantium maxime."], ["date", "2020-05-06 18:33:08.391524"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.392199"], ["updated_at", "2020-05-05 18:33:08.392199"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt placeat et dignissimos?"], ["description", "Rerum sunt adipisci architecto."], ["date", "2020-05-06 18:33:08.393302"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.393970"], ["updated_at", "2020-05-05 18:33:08.393970"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem cupiditate optio rerum?"], ["description", "Ut recusandae hic in."], ["date", "2020-05-06 18:33:08.395110"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.395781"], ["updated_at", "2020-05-05 18:33:08.395781"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et sunt qui quasi?"], ["description", "Iste eveniet dicta id."], ["date", "2020-05-06 18:33:08.397556"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.398342"], ["updated_at", "2020-05-05 18:33:08.398342"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni odio quod ipsa?"], ["description", "Tempore veniam hic quae."], ["date", "2020-05-06 18:33:08.400292"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.402059"], ["updated_at", "2020-05-05 18:33:08.402059"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae id qui quia?"], ["description", "Autem rerum laudantium necessitatibus."], ["date", "2020-05-06 18:33:08.403510"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.404312"], ["updated_at", "2020-05-05 18:33:08.404312"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi cum maxime placeat?"], ["description", "Minima ea ad aperiam."], ["date", "2020-05-06 18:33:08.405506"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.406195"], ["updated_at", "2020-05-05 18:33:08.406195"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo hic facilis non?"], ["description", "Blanditiis illum velit repellendus."], ["date", "2020-05-06 18:33:08.407391"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.408076"], ["updated_at", "2020-05-05 18:33:08.408076"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam aperiam eaque ut?"], ["description", "Ea ut aliquam qui."], ["date", "2020-05-06 18:33:08.409497"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.410287"], ["updated_at", "2020-05-05 18:33:08.410287"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam quasi atque quidem?"], ["description", "Eveniet repellendus eos ea."], ["date", "2020-05-06 18:33:08.411473"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.412140"], ["updated_at", "2020-05-05 18:33:08.412140"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis expedita aspernatur maxime?"], ["description", "Cumque autem atque ex."], ["date", "2020-05-06 18:33:08.413268"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.413966"], ["updated_at", "2020-05-05 18:33:08.413966"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam quia ut soluta?"], ["description", "Autem corrupti et non."], ["date", "2020-05-06 18:33:08.415126"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.415787"], ["updated_at", "2020-05-05 18:33:08.415787"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi nam et amet?"], ["description", "Est sed officiis provident."], ["date", "2020-05-06 18:33:08.416917"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.417612"], ["updated_at", "2020-05-05 18:33:08.417612"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem omnis quis omnis?"], ["description", "Fugiat a qui qui."], ["date", "2020-05-06 18:33:08.418947"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.420153"], ["updated_at", "2020-05-05 18:33:08.420153"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:33:08 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"title"=>"Visit Narnia", "description"=>"false", "date"=>"2020-05-06 15:33:08 -0300", "link"=>"https://zoom.com/fakelink", "meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Visit Narnia"], ["description", "false"], ["date", "2020-05-06 18:33:08"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.439816"], ["updated_at", "2020-05-05 18:33:08.439816"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.58ms) +Completed 201 Created in 6ms (Views: 1.3ms | ActiveRecord: 0.5ms | Allocations: 1699) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (23.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Patrica Lockman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6De0mT9rkZy9iVnusts97ev2RHsftlKwmmqetO478sTGRcVyczdF6"], ["created_at", "2020-05-05 18:33:08.452978"], ["updated_at", "2020-05-05 18:33:08.452978"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "earum"], ["description", "Delectus sed nemo quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:08.478296"], ["updated_at", "2020-05-05 18:33:08.478296"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae sequi officia ut?"], ["description", "Alias magni sed magnam."], ["date", "2020-05-06 18:33:08.480854"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.482218"], ["updated_at", "2020-05-05 18:33:08.482218"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam autem nam sunt?"], ["description", "Suscipit dolorum eius laborum."], ["date", "2020-05-06 18:33:08.484028"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.485715"], ["updated_at", "2020-05-05 18:33:08.485715"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum asperiores enim minima?"], ["description", "Eum voluptates sit rem."], ["date", "2020-05-06 18:33:08.487388"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.488360"], ["updated_at", "2020-05-05 18:33:08.488360"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo maxime voluptas saepe?"], ["description", "Dolor dolorem fugit officia."], ["date", "2020-05-06 18:33:08.489720"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.490531"], ["updated_at", "2020-05-05 18:33:08.490531"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident expedita nesciunt dolores?"], ["description", "Fuga ut similique qui."], ["date", "2020-05-06 18:33:08.491939"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.492718"], ["updated_at", "2020-05-05 18:33:08.492718"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente itaque eos rerum?"], ["description", "Ut dolor sunt sit."], ["date", "2020-05-06 18:33:08.493887"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.494596"], ["updated_at", "2020-05-05 18:33:08.494596"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est libero nostrum ullam?"], ["description", "Nobis sapiente facere est."], ["date", "2020-05-06 18:33:08.495867"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.496627"], ["updated_at", "2020-05-05 18:33:08.496627"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe sed provident et?"], ["description", "Ut dolores dolorum quis."], ["date", "2020-05-06 18:33:08.497897"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.498705"], ["updated_at", "2020-05-05 18:33:08.498705"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui nihil voluptates harum?"], ["description", "A dolorum aut dolorem."], ["date", "2020-05-06 18:33:08.500394"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.501871"], ["updated_at", "2020-05-05 18:33:08.501871"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non et rerum officiis?"], ["description", "Atque saepe id fugit."], ["date", "2020-05-06 18:33:08.504514"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.505445"], ["updated_at", "2020-05-05 18:33:08.505445"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos in cupiditate ut?"], ["description", "Laborum maxime qui aut."], ["date", "2020-05-06 18:33:08.506802"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.507492"], ["updated_at", "2020-05-05 18:33:08.507492"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem consequatur eaque cum?"], ["description", "Illo voluptatem quasi maxime."], ["date", "2020-05-06 18:33:08.508785"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.509541"], ["updated_at", "2020-05-05 18:33:08.509541"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga deserunt ipsum qui?"], ["description", "Fuga vel beatae autem."], ["date", "2020-05-06 18:33:08.510804"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.511545"], ["updated_at", "2020-05-05 18:33:08.511545"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis et quibusdam quasi?"], ["description", "Suscipit vel ut sed."], ["date", "2020-05-06 18:33:08.512864"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.513699"], ["updated_at", "2020-05-05 18:33:08.513699"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum tempore accusamus nam?"], ["description", "Voluptatum id aut amet."], ["date", "2020-05-06 18:33:08.514928"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.515598"], ["updated_at", "2020-05-05 18:33:08.515598"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque illum sunt illo?"], ["description", "A qui aut earum."], ["date", "2020-05-06 18:33:08.516765"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.517465"], ["updated_at", "2020-05-05 18:33:08.517465"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Hic non est quo?"], ["description", "Dolor reprehenderit possimus placeat."], ["date", "2020-05-06 18:33:08.518773"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.519582"], ["updated_at", "2020-05-05 18:33:08.519582"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et itaque quo quia?"], ["description", "Recusandae nemo sit voluptatem."], ["date", "2020-05-06 18:33:08.521812"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.522777"], ["updated_at", "2020-05-05 18:33:08.522777"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut voluptas autem quo?"], ["description", "Velit illo fugiat nihil."], ["date", "2020-05-06 18:33:08.524140"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.524837"], ["updated_at", "2020-05-05 18:33:08.524837"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum voluptas cumque qui?"], ["description", "Cum quisquam nulla sint."], ["date", "2020-05-06 18:33:08.526131"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.526856"], ["updated_at", "2020-05-05 18:33:08.526856"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:33:08 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 3010) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Magan Cormier"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OihZqwqK/iqpFgNhRLb5EOKVYKm8R1SDjgqBPfxmAlBsUvTAfE/ry"], ["created_at", "2020-05-05 18:33:08.546062"], ["updated_at", "2020-05-05 18:33:08.546062"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nobis"], ["description", "Dolorem quia odit aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:08.549179"], ["updated_at", "2020-05-05 18:33:08.549179"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit et est dolore?"], ["description", "Nostrum pariatur delectus dolorum."], ["date", "2020-05-06 18:33:08.550821"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.551765"], ["updated_at", "2020-05-05 18:33:08.551765"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste molestiae ab dolores?"], ["description", "Voluptatem quasi animi vel."], ["date", "2020-05-06 18:33:08.553135"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.553849"], ["updated_at", "2020-05-05 18:33:08.553849"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus ut voluptates ex?"], ["description", "Voluptatem aut deleniti dolorem."], ["date", "2020-05-06 18:33:08.555078"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.555785"], ["updated_at", "2020-05-05 18:33:08.555785"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem nostrum aut amet?"], ["description", "Omnis et et iste."], ["date", "2020-05-06 18:33:08.556980"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.557676"], ["updated_at", "2020-05-05 18:33:08.557676"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam rem nemo ullam?"], ["description", "Sit ipsam deleniti voluptatem."], ["date", "2020-05-06 18:33:08.558860"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.559589"], ["updated_at", "2020-05-05 18:33:08.559589"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt harum facilis odit?"], ["description", "Culpa mollitia sed neque."], ["date", "2020-05-06 18:33:08.561684"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.562741"], ["updated_at", "2020-05-05 18:33:08.562741"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae aut ipsa in?"], ["description", "Expedita eos et et."], ["date", "2020-05-06 18:33:08.564304"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.565868"], ["updated_at", "2020-05-05 18:33:08.565868"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur dolores ipsa error?"], ["description", "Reprehenderit et libero qui."], ["date", "2020-05-06 18:33:08.567802"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.568747"], ["updated_at", "2020-05-05 18:33:08.568747"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et animi ipsum excepturi?"], ["description", "Est magni unde pariatur."], ["date", "2020-05-06 18:33:08.570089"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.570837"], ["updated_at", "2020-05-05 18:33:08.570837"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae odio aliquid consequuntur?"], ["description", "Dolorum est blanditiis impedit."], ["date", "2020-05-06 18:33:08.572792"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.573617"], ["updated_at", "2020-05-05 18:33:08.573617"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor voluptate occaecati quisquam?"], ["description", "Corporis esse rem aspernatur."], ["date", "2020-05-06 18:33:08.574933"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.575633"], ["updated_at", "2020-05-05 18:33:08.575633"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem dolore ullam aut?"], ["description", "Praesentium et tempore unde."], ["date", "2020-05-06 18:33:08.576805"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.577480"], ["updated_at", "2020-05-05 18:33:08.577480"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio ad et laborum?"], ["description", "Velit reiciendis occaecati nobis."], ["date", "2020-05-06 18:33:08.578666"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.579390"], ["updated_at", "2020-05-05 18:33:08.579390"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque expedita quia maiores?"], ["description", "Voluptatem eligendi ullam aut."], ["date", "2020-05-06 18:33:08.581190"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.582813"], ["updated_at", "2020-05-05 18:33:08.582813"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam totam nisi dolor?"], ["description", "Dolore aut atque perspiciatis."], ["date", "2020-05-06 18:33:08.584652"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.585544"], ["updated_at", "2020-05-05 18:33:08.585544"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui ut est vel?"], ["description", "Quisquam ut sint et."], ["date", "2020-05-06 18:33:08.586948"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.587682"], ["updated_at", "2020-05-05 18:33:08.587682"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil sunt doloribus dolorem?"], ["description", "Explicabo enim sit quis."], ["date", "2020-05-06 18:33:08.589059"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.589801"], ["updated_at", "2020-05-05 18:33:08.589801"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius quaerat corporis error?"], ["description", "Provident totam voluptatem sed."], ["date", "2020-05-06 18:33:08.591028"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.591704"], ["updated_at", "2020-05-05 18:33:08.591704"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum facilis aliquid deserunt?"], ["description", "Nihil possimus exercitationem architecto."], ["date", "2020-05-06 18:33:08.592839"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.593574"], ["updated_at", "2020-05-05 18:33:08.593574"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique perferendis atque tempore?"], ["description", "Et et cupiditate impedit."], ["date", "2020-05-06 18:33:08.594893"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.595650"], ["updated_at", "2020-05-05 18:33:08.595650"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:33:08 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 2707) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (14.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Yaeko Jacobi"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$V0dQPp7iYBROZEDTzt0JrOz6WuRBqS9jnWNZcRRQbt9xfhWIkQB0W"], ["created_at", "2020-05-05 18:33:08.636230"], ["updated_at", "2020-05-05 18:33:08.636230"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "culpa"], ["description", "Excepturi est nihil praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:08.639218"], ["updated_at", "2020-05-05 18:33:08.639218"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus non sequi fugit?"], ["description", "Est asperiores labore officia."], ["date", "2020-05-06 18:33:08.640976"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.642640"], ["updated_at", "2020-05-05 18:33:08.642640"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam quis vitae autem?"], ["description", "Aut et pariatur excepturi."], ["date", "2020-05-06 18:33:08.644258"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.645127"], ["updated_at", "2020-05-05 18:33:08.645127"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias inventore deserunt adipisci?"], ["description", "Quo nam dolore nostrum."], ["date", "2020-05-06 18:33:08.646305"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.647009"], ["updated_at", "2020-05-05 18:33:08.647009"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat a odio mollitia?"], ["description", "Iusto repellendus autem quod."], ["date", "2020-05-06 18:33:08.648250"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.649186"], ["updated_at", "2020-05-05 18:33:08.649186"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente alias voluptatem voluptatem?"], ["description", "Magni maiores non laborum."], ["date", "2020-05-06 18:33:08.650406"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.651087"], ["updated_at", "2020-05-05 18:33:08.651087"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus impedit molestiae quasi?"], ["description", "Neque ab alias maiores."], ["date", "2020-05-06 18:33:08.652152"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.652823"], ["updated_at", "2020-05-05 18:33:08.652823"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel quisquam in adipisci?"], ["description", "Labore id omnis numquam."], ["date", "2020-05-06 18:33:08.653967"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.654641"], ["updated_at", "2020-05-05 18:33:08.654641"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe totam ipsam velit?"], ["description", "Fugit dicta magni ipsa."], ["date", "2020-05-06 18:33:08.655798"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.656476"], ["updated_at", "2020-05-05 18:33:08.656476"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem molestias in et?"], ["description", "Ut cumque voluptas eum."], ["date", "2020-05-06 18:33:08.657643"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.658381"], ["updated_at", "2020-05-05 18:33:08.658381"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima voluptas molestiae qui?"], ["description", "Commodi labore doloremque voluptatem."], ["date", "2020-05-06 18:33:08.660457"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.661922"], ["updated_at", "2020-05-05 18:33:08.661922"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque soluta exercitationem et?"], ["description", "Provident animi quibusdam quaerat."], ["date", "2020-05-06 18:33:08.664004"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.664934"], ["updated_at", "2020-05-05 18:33:08.664934"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ducimus voluptatem id qui?"], ["description", "Et rem est sed."], ["date", "2020-05-06 18:33:08.666242"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.666924"], ["updated_at", "2020-05-05 18:33:08.666924"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas soluta eius dolorum?"], ["description", "Quos qui aut amet."], ["date", "2020-05-06 18:33:08.668050"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.668933"], ["updated_at", "2020-05-05 18:33:08.668933"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia ipsa minus mollitia?"], ["description", "Ipsum nesciunt eum animi."], ["date", "2020-05-06 18:33:08.670275"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.671007"], ["updated_at", "2020-05-05 18:33:08.671007"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio et illo temporibus?"], ["description", "Qui commodi blanditiis consequuntur."], ["date", "2020-05-06 18:33:08.672273"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.672995"], ["updated_at", "2020-05-05 18:33:08.672995"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi enim qui aliquam?"], ["description", "Esse illum sed vel."], ["date", "2020-05-06 18:33:08.674284"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.675036"], ["updated_at", "2020-05-05 18:33:08.675036"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui assumenda velit animi?"], ["description", "Quibusdam aut quidem non."], ["date", "2020-05-06 18:33:08.676165"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.676853"], ["updated_at", "2020-05-05 18:33:08.676853"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut magnam delectus distinctio?"], ["description", "Unde voluptas quia ut."], ["date", "2020-05-06 18:33:08.678011"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.678769"], ["updated_at", "2020-05-05 18:33:08.678769"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugiat sed quia omnis?"], ["description", "Numquam a voluptas officiis."], ["date", "2020-05-06 18:33:08.679950"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.680772"], ["updated_at", "2020-05-05 18:33:08.680772"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non temporibus consectetur soluta?"], ["description", "Eos consequatur sequi accusamus."], ["date", "2020-05-06 18:33:08.682286"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.683650"], ["updated_at", "2020-05-05 18:33:08.683650"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:33:08 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.2ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:33:08.688212"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1380) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Deloise Batz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kPgox8e8qrzNfCm8KgOQ4OD/ofwczynOx2RelF4HuItkfK9xG5WqW"], ["created_at", "2020-05-05 18:33:08.700874"], ["updated_at", "2020-05-05 18:33:08.700874"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Dolores voluptate voluptates dicta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:08.704725"], ["updated_at", "2020-05-05 18:33:08.704725"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora voluptatem ad aut?"], ["description", "Eligendi dolorem aliquid perspiciatis."], ["date", "2020-05-06 18:33:08.706819"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.708672"], ["updated_at", "2020-05-05 18:33:08.708672"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex et non ut?"], ["description", "Quaerat cumque sit autem."], ["date", "2020-05-06 18:33:08.711277"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.713205"], ["updated_at", "2020-05-05 18:33:08.713205"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat deserunt excepturi totam?"], ["description", "Atque iusto in mollitia."], ["date", "2020-05-06 18:33:08.715669"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.716705"], ["updated_at", "2020-05-05 18:33:08.716705"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore sed iusto iste?"], ["description", "Temporibus tenetur quia modi."], ["date", "2020-05-06 18:33:08.718147"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.719109"], ["updated_at", "2020-05-05 18:33:08.719109"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est eos vel rerum?"], ["description", "Ea quaerat ipsum mollitia."], ["date", "2020-05-06 18:33:08.720752"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.722103"], ["updated_at", "2020-05-05 18:33:08.722103"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id quis accusamus eveniet?"], ["description", "Voluptatem sit ipsam nihil."], ["date", "2020-05-06 18:33:08.723554"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.724636"], ["updated_at", "2020-05-05 18:33:08.724636"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam dolorem tempora et?"], ["description", "Ad quia commodi nobis."], ["date", "2020-05-06 18:33:08.726606"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.727762"], ["updated_at", "2020-05-05 18:33:08.727762"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores consequatur est voluptatibus?"], ["description", "Rerum error officia necessitatibus."], ["date", "2020-05-06 18:33:08.729246"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.730050"], ["updated_at", "2020-05-05 18:33:08.730050"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit facilis quia error?"], ["description", "Aut qui ipsa facere."], ["date", "2020-05-06 18:33:08.731288"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.731976"], ["updated_at", "2020-05-05 18:33:08.731976"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia distinctio sed dolorem?"], ["description", "Dolores et veritatis asperiores."], ["date", "2020-05-06 18:33:08.733904"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.734710"], ["updated_at", "2020-05-05 18:33:08.734710"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe autem cumque doloremque?"], ["description", "Laudantium doloremque quibusdam ea."], ["date", "2020-05-06 18:33:08.736070"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.736791"], ["updated_at", "2020-05-05 18:33:08.736791"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil dolorum aut illum?"], ["description", "Suscipit aut voluptatum ut."], ["date", "2020-05-06 18:33:08.737933"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.738640"], ["updated_at", "2020-05-05 18:33:08.738640"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo dolor cumque nulla?"], ["description", "Aliquam error cupiditate explicabo."], ["date", "2020-05-06 18:33:08.739854"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.740585"], ["updated_at", "2020-05-05 18:33:08.740585"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus eum voluptatum labore?"], ["description", "Voluptatibus iste placeat nesciunt."], ["date", "2020-05-06 18:33:08.742137"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.743064"], ["updated_at", "2020-05-05 18:33:08.743064"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea amet minima accusantium?"], ["description", "Et quia sed repellendus."], ["date", "2020-05-06 18:33:08.744472"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.745223"], ["updated_at", "2020-05-05 18:33:08.745223"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem deserunt enim unde?"], ["description", "Perspiciatis perferendis recusandae soluta."], ["date", "2020-05-06 18:33:08.746468"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.747204"], ["updated_at", "2020-05-05 18:33:08.747204"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis doloremque ut consectetur?"], ["description", "Illo vero praesentium nulla."], ["date", "2020-05-06 18:33:08.748370"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.749128"], ["updated_at", "2020-05-05 18:33:08.749128"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit cum quis laborum?"], ["description", "Hic aliquam tempore voluptas."], ["date", "2020-05-06 18:33:08.750257"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.750940"], ["updated_at", "2020-05-05 18:33:08.750940"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis magni at minima?"], ["description", "Perspiciatis sapiente ut laboriosam."], ["date", "2020-05-06 18:33:08.752045"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.752769"], ["updated_at", "2020-05-05 18:33:08.752769"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus consectetur ad voluptas?"], ["description", "Animi est harum qui."], ["date", "2020-05-06 18:33:08.753890"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.754566"], ["updated_at", "2020-05-05 18:33:08.754566"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:33:08 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.1ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:33:08.758889"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1321) + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (21.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Carley Mante I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mlTTZJJox27pubNtmlB1O.AkAdzx.046pwWIJjBmoLOxisozdBane"], ["created_at", "2020-05-05 18:33:08.786707"], ["updated_at", "2020-05-05 18:33:08.786707"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "animi"], ["description", "Est dolorem inventore optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:08.789725"], ["updated_at", "2020-05-05 18:33:08.789725"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure nisi sed qui?"], ["description", "Reprehenderit aut id dignissimos."], ["date", "2020-05-06 18:33:08.791269"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.792188"], ["updated_at", "2020-05-05 18:33:08.792188"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos ut harum est?"], ["description", "Veniam sapiente et dolores."], ["date", "2020-05-06 18:33:08.793637"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.794389"], ["updated_at", "2020-05-05 18:33:08.794389"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae voluptatum enim laudantium?"], ["description", "Molestiae blanditiis voluptatem qui."], ["date", "2020-05-06 18:33:08.795671"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.796387"], ["updated_at", "2020-05-05 18:33:08.796387"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum aut non mollitia?"], ["description", "Dolores nesciunt cupiditate et."], ["date", "2020-05-06 18:33:08.797554"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.798238"], ["updated_at", "2020-05-05 18:33:08.798238"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi cumque reiciendis sapiente?"], ["description", "Aut mollitia voluptatem temporibus."], ["date", "2020-05-06 18:33:08.799430"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.800138"], ["updated_at", "2020-05-05 18:33:08.800138"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt quasi fugiat perspiciatis?"], ["description", "Deserunt eum odio nisi."], ["date", "2020-05-06 18:33:08.801438"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.802261"], ["updated_at", "2020-05-05 18:33:08.802261"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea officiis recusandae velit?"], ["description", "Quo corrupti ducimus odit."], ["date", "2020-05-06 18:33:08.803656"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.804627"], ["updated_at", "2020-05-05 18:33:08.804627"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem ratione non praesentium?"], ["description", "Dolor eos ducimus assumenda."], ["date", "2020-05-06 18:33:08.806470"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.807639"], ["updated_at", "2020-05-05 18:33:08.807639"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam sed et et?"], ["description", "Culpa dolorem quaerat voluptatem."], ["date", "2020-05-06 18:33:08.809052"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.809869"], ["updated_at", "2020-05-05 18:33:08.809869"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis quas voluptates sunt?"], ["description", "Doloremque voluptate ducimus cum."], ["date", "2020-05-06 18:33:08.811658"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.812434"], ["updated_at", "2020-05-05 18:33:08.812434"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni distinctio commodi facere?"], ["description", "In praesentium est tempora."], ["date", "2020-05-06 18:33:08.813626"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.814319"], ["updated_at", "2020-05-05 18:33:08.814319"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem nemo adipisci est?"], ["description", "Sunt nihil aut autem."], ["date", "2020-05-06 18:33:08.815390"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.816066"], ["updated_at", "2020-05-05 18:33:08.816066"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique quis a aliquid?"], ["description", "Repudiandae error deserunt culpa."], ["date", "2020-05-06 18:33:08.817260"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.818023"], ["updated_at", "2020-05-05 18:33:08.818023"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit est magni delectus?"], ["description", "Distinctio fugit dignissimos porro."], ["date", "2020-05-06 18:33:08.819182"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.820017"], ["updated_at", "2020-05-05 18:33:08.820017"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error et deserunt quae?"], ["description", "Totam qui cumque et."], ["date", "2020-05-06 18:33:08.821363"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.822391"], ["updated_at", "2020-05-05 18:33:08.822391"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam aliquid laborum magnam?"], ["description", "Aut aut voluptatem suscipit."], ["date", "2020-05-06 18:33:08.823917"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.824828"], ["updated_at", "2020-05-05 18:33:08.824828"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae eum reiciendis harum?"], ["description", "Quo natus incidunt aut."], ["date", "2020-05-06 18:33:08.826000"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.826672"], ["updated_at", "2020-05-05 18:33:08.826672"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae saepe omnis voluptatum?"], ["description", "Cum iusto eaque quasi."], ["date", "2020-05-06 18:33:08.827854"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.828779"], ["updated_at", "2020-05-05 18:33:08.828779"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id aliquam minus nihil?"], ["description", "Modi aut minima delectus."], ["date", "2020-05-06 18:33:08.830008"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.830709"], ["updated_at", "2020-05-05 18:33:08.830709"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui magnam aut dolorem?"], ["description", "Exercitationem commodi temporibus aut."], ["date", "2020-05-06 18:33:08.831899"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.832708"], ["updated_at", "2020-05-05 18:33:08.832708"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:33:08 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Williemae Cartwright"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qCoU6XBi9beABf1Py.fhU.fRnKJRB69IbOqAe5I.OqjQ7m3rT27dq"], ["created_at", "2020-05-05 18:33:08.848757"], ["updated_at", "2020-05-05 18:33:08.848757"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Animi explicabo voluptatem porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:08.851599"], ["updated_at", "2020-05-05 18:33:08.851599"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga ut est error?"], ["description", "Officia sed libero ut."], ["date", "2020-05-06 18:33:08.852990"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.853900"], ["updated_at", "2020-05-05 18:33:08.853900"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum quae magni sequi?"], ["description", "Qui aut qui odit."], ["date", "2020-05-06 18:33:08.855453"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.856215"], ["updated_at", "2020-05-05 18:33:08.856215"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis placeat ipsa velit?"], ["description", "Et quia qui amet."], ["date", "2020-05-06 18:33:08.857390"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.858126"], ["updated_at", "2020-05-05 18:33:08.858126"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas harum ipsam incidunt?"], ["description", "Magni omnis explicabo non."], ["date", "2020-05-06 18:33:08.859228"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.860032"], ["updated_at", "2020-05-05 18:33:08.860032"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis asperiores ut repudiandae?"], ["description", "Sed vitae totam numquam."], ["date", "2020-05-06 18:33:08.861126"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.862174"], ["updated_at", "2020-05-05 18:33:08.862174"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus perferendis rerum fuga?"], ["description", "Dicta voluptatem ut sed."], ["date", "2020-05-06 18:33:08.863714"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.864733"], ["updated_at", "2020-05-05 18:33:08.864733"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam illum fuga necessitatibus?"], ["description", "Ipsam sit earum reprehenderit."], ["date", "2020-05-06 18:33:08.866716"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.867800"], ["updated_at", "2020-05-05 18:33:08.867800"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas alias aut culpa?"], ["description", "Ab a quasi natus."], ["date", "2020-05-06 18:33:08.869205"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.870000"], ["updated_at", "2020-05-05 18:33:08.870000"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur explicabo perferendis neque?"], ["description", "Dolorem alias tempore eius."], ["date", "2020-05-06 18:33:08.871143"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.871833"], ["updated_at", "2020-05-05 18:33:08.871833"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugiat aliquid soluta enim?"], ["description", "Autem dolor vitae sunt."], ["date", "2020-05-06 18:33:08.873635"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.874363"], ["updated_at", "2020-05-05 18:33:08.874363"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem molestiae inventore rem?"], ["description", "Omnis beatae vero aut."], ["date", "2020-05-06 18:33:08.875571"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.876255"], ["updated_at", "2020-05-05 18:33:08.876255"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta quasi explicabo deserunt?"], ["description", "Possimus quibusdam architecto eligendi."], ["date", "2020-05-06 18:33:08.877405"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.878078"], ["updated_at", "2020-05-05 18:33:08.878078"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit numquam vel officia?"], ["description", "Autem minima facere consequatur."], ["date", "2020-05-06 18:33:08.879230"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.880013"], ["updated_at", "2020-05-05 18:33:08.880013"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex ut quo explicabo?"], ["description", "Error deleniti sit nostrum."], ["date", "2020-05-06 18:33:08.881301"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.882555"], ["updated_at", "2020-05-05 18:33:08.882555"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum laudantium sit qui?"], ["description", "Rerum in corrupti voluptatem."], ["date", "2020-05-06 18:33:08.884141"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.885028"], ["updated_at", "2020-05-05 18:33:08.885028"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam quisquam deserunt laudantium?"], ["description", "Laborum ullam provident cupiditate."], ["date", "2020-05-06 18:33:08.886213"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.886897"], ["updated_at", "2020-05-05 18:33:08.886897"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem rerum placeat deserunt?"], ["description", "Omnis iure cupiditate qui."], ["date", "2020-05-06 18:33:08.888231"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.889027"], ["updated_at", "2020-05-05 18:33:08.889027"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam quos dolorum tempora?"], ["description", "Tempora cum sit nemo."], ["date", "2020-05-06 18:33:08.890303"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.891012"], ["updated_at", "2020-05-05 18:33:08.891012"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minus soluta suscipit commodi?"], ["description", "Qui enim temporibus quae."], ["date", "2020-05-06 18:33:08.892181"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.892866"], ["updated_at", "2020-05-05 18:33:08.892866"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel possimus ut sed?"], ["description", "Possimus voluptatem aut est."], ["date", "2020-05-06 18:33:08.893984"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.894699"], ["updated_at", "2020-05-05 18:33:08.894699"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:33:08 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Irvin Kulas IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HP31VlasH3X.n4IWdScDO.aMhAr7rT01c.XuKa7CF/1qsGmF2Fo.u"], ["created_at", "2020-05-05 18:33:08.910356"], ["updated_at", "2020-05-05 18:33:08.910356"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Adipisci ipsam quod laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:08.913490"], ["updated_at", "2020-05-05 18:33:08.913490"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum enim ratione et?"], ["description", "Reiciendis temporibus minima molestiae."], ["date", "2020-05-06 18:33:08.915026"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.915974"], ["updated_at", "2020-05-05 18:33:08.915974"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum aut rerum deserunt?"], ["description", "Architecto et suscipit tenetur."], ["date", "2020-05-06 18:33:08.917515"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.918249"], ["updated_at", "2020-05-05 18:33:08.918249"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim ut voluptatem eum?"], ["description", "Animi laboriosam et alias."], ["date", "2020-05-06 18:33:08.919519"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.920375"], ["updated_at", "2020-05-05 18:33:08.920375"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime ut optio sit?"], ["description", "Nihil quia temporibus voluptatem."], ["date", "2020-05-06 18:33:08.921544"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.922336"], ["updated_at", "2020-05-05 18:33:08.922336"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim totam aut repellat?"], ["description", "Autem nihil doloribus architecto."], ["date", "2020-05-06 18:33:08.923643"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.924550"], ["updated_at", "2020-05-05 18:33:08.924550"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus sint incidunt libero?"], ["description", "Qui commodi et molestias."], ["date", "2020-05-06 18:33:08.926157"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.927578"], ["updated_at", "2020-05-05 18:33:08.927578"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut alias perferendis officia?"], ["description", "Et et harum rerum."], ["date", "2020-05-06 18:33:08.929216"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.930094"], ["updated_at", "2020-05-05 18:33:08.930094"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae ea nihil dolorum?"], ["description", "Molestiae quos aperiam eius."], ["date", "2020-05-06 18:33:08.931189"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.932012"], ["updated_at", "2020-05-05 18:33:08.932012"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique explicabo ut iure?"], ["description", "Commodi quasi et et."], ["date", "2020-05-06 18:33:08.933240"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.933930"], ["updated_at", "2020-05-05 18:33:08.933930"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut omnis tempore dolor?"], ["description", "Et qui temporibus et."], ["date", "2020-05-06 18:33:08.935672"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.936453"], ["updated_at", "2020-05-05 18:33:08.936453"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum natus possimus similique?"], ["description", "Cumque dolores vitae temporibus."], ["date", "2020-05-06 18:33:08.937701"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.938403"], ["updated_at", "2020-05-05 18:33:08.938403"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Unde et pariatur earum?"], ["description", "Facere quas voluptas fuga."], ["date", "2020-05-06 18:33:08.939603"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.940316"], ["updated_at", "2020-05-05 18:33:08.940316"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem voluptate sequi labore?"], ["description", "Nisi blanditiis minus dolor."], ["date", "2020-05-06 18:33:08.941411"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.942146"], ["updated_at", "2020-05-05 18:33:08.942146"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam accusantium dolor illum?"], ["description", "Alias sit sed quisquam."], ["date", "2020-05-06 18:33:08.943857"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.944782"], ["updated_at", "2020-05-05 18:33:08.944782"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio a quaerat cupiditate?"], ["description", "Ratione facilis repellendus et."], ["date", "2020-05-06 18:33:08.946091"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.946792"], ["updated_at", "2020-05-05 18:33:08.946792"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut dolores est doloremque?"], ["description", "Quae quis occaecati fugit."], ["date", "2020-05-06 18:33:08.948119"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.948948"], ["updated_at", "2020-05-05 18:33:08.948948"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem non numquam error?"], ["description", "Maiores sit et minus."], ["date", "2020-05-06 18:33:08.950114"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.950812"], ["updated_at", "2020-05-05 18:33:08.950812"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut sint alias perspiciatis?"], ["description", "Eum in iste sit."], ["date", "2020-05-06 18:33:08.952023"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.952693"], ["updated_at", "2020-05-05 18:33:08.952693"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente omnis consequatur non?"], ["description", "Soluta officia voluptatem eos."], ["date", "2020-05-06 18:33:08.953841"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.954521"], ["updated_at", "2020-05-05 18:33:08.954521"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Hic omnis nobis eum?"], ["description", "Fugiat asperiores quos delectus."], ["date", "2020-05-06 18:33:08.955665"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:08.956356"], ["updated_at", "2020-05-05 18:33:08.956356"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:33:08 -0300 +Processing by MeetingsController#destroy as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + UserMeeting Load (0.1ms) SELECT "user_meetings".* FROM "user_meetings" WHERE "user_meetings"."meeting_id" = ? [["meeting_id", 1]] + Meeting Destroy (0.1ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 7ms (ActiveRecord: 0.8ms | Allocations: 2317) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Odit eveniet voluptas nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:08.975650"], ["updated_at", "2020-05-05 18:33:08.975650"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Aut atque recusandae sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:08.978451"], ["updated_at", "2020-05-05 18:33:08.978451"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsum"], ["description", "Libero impedit ipsam voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:08.979899"], ["updated_at", "2020-05-05 18:33:08.979899"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Ipsa tempora sed enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:08.981190"], ["updated_at", "2020-05-05 18:33:08.981190"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Fuga ullam necessitatibus porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:08.982595"], ["updated_at", "2020-05-05 18:33:08.982595"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Sequi similique vel dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:08.984098"], ["updated_at", "2020-05-05 18:33:08.984098"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corporis"], ["description", "Velit hic porro aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:08.985787"], ["updated_at", "2020-05-05 18:33:08.985787"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minima"], ["description", "Quia perferendis ea et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:08.988133"], ["updated_at", "2020-05-05 18:33:08.988133"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Minima sit aut et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:08.989846"], ["updated_at", "2020-05-05 18:33:08.989846"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officiis"], ["description", "Velit modi repellat aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:08.991162"], ["updated_at", "2020-05-05 18:33:08.991162"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shannon Quigley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$AXk./4..drsSx3iKP8FQFumX/RawgUMKeG7xzOx7qaTpYZDjYz/kC"], ["created_at", "2020-05-05 18:33:08.993733"], ["updated_at", "2020-05-05 18:33:08.993733"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:08 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.94ms) +Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.3ms | Allocations: 2912) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Alias ut earum qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.015667"], ["updated_at", "2020-05-05 18:33:09.015667"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Fuga eligendi iure qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.018772"], ["updated_at", "2020-05-05 18:33:09.018772"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "a"], ["description", "Accusantium minus odit exercitationem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.020507"], ["updated_at", "2020-05-05 18:33:09.020507"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Harum ut modi inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.021947"], ["updated_at", "2020-05-05 18:33:09.021947"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Fuga officiis et veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.023695"], ["updated_at", "2020-05-05 18:33:09.023695"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "exercitationem"], ["description", "Neque non accusantium rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.025495"], ["updated_at", "2020-05-05 18:33:09.025495"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Ut ab ratione sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.027657"], ["updated_at", "2020-05-05 18:33:09.027657"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quaerat"], ["description", "A aut sapiente qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.030616"], ["updated_at", "2020-05-05 18:33:09.030616"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "praesentium"], ["description", "Eos explicabo reprehenderit laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.032426"], ["updated_at", "2020-05-05 18:33:09.032426"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Voluptatem in reprehenderit delectus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.033904"], ["updated_at", "2020-05-05 18:33:09.033904"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Renato Mohr"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$S.EHxWTldyCCgPg8mG2oF.WMx5lKL/BO437CgDj7vy/eKndEFlMuy"], ["created_at", "2020-05-05 18:33:09.036692"], ["updated_at", "2020-05-05 18:33:09.036692"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.85ms) +Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms | Allocations: 2842) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (21.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quibusdam"], ["description", "Ex perspiciatis tenetur consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.055994"], ["updated_at", "2020-05-05 18:33:09.055994"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sequi"], ["description", "Sit minima officia quas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.079422"], ["updated_at", "2020-05-05 18:33:09.079422"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Voluptatem eveniet iure commodi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.081091"], ["updated_at", "2020-05-05 18:33:09.081091"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illo"], ["description", "Qui cumque quos nisi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.082586"], ["updated_at", "2020-05-05 18:33:09.082586"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Reiciendis a tempora temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.084595"], ["updated_at", "2020-05-05 18:33:09.084595"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perferendis"], ["description", "Velit ullam et possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.086687"], ["updated_at", "2020-05-05 18:33:09.086687"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "animi"], ["description", "Autem aut ipsa pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.089398"], ["updated_at", "2020-05-05 18:33:09.089398"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Esse assumenda consequatur architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.091312"], ["updated_at", "2020-05-05 18:33:09.091312"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quas"], ["description", "Quasi exercitationem eos explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.092925"], ["updated_at", "2020-05-05 18:33:09.092925"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Voluptas nihil eum et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.094597"], ["updated_at", "2020-05-05 18:33:09.094597"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Harland Kuhic"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$434Ergcm26KmIzeRCXY6Q.11v.GnqDb./hO2nwM6zl4SW.CtfAaRm"], ["created_at", "2020-05-05 18:33:09.097482"], ["updated_at", "2020-05-05 18:33:09.097482"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.77ms) +Completed 200 OK in 4ms (Views: 2.1ms | ActiveRecord: 0.2ms | Allocations: 1242) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Rerum est provident eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.121555"], ["updated_at", "2020-05-05 18:33:09.121555"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Harum aperiam distinctio a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.124792"], ["updated_at", "2020-05-05 18:33:09.124792"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloremque"], ["description", "Laborum dolores quae autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.126709"], ["updated_at", "2020-05-05 18:33:09.126709"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quibusdam"], ["description", "Et fuga cupiditate doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.129303"], ["updated_at", "2020-05-05 18:33:09.129303"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Aspernatur voluptatem consequatur nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.130883"], ["updated_at", "2020-05-05 18:33:09.130883"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Atque minus et et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.132162"], ["updated_at", "2020-05-05 18:33:09.132162"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nostrum"], ["description", "Et ad quis ipsa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.133420"], ["updated_at", "2020-05-05 18:33:09.133420"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Minus et voluptates et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.134876"], ["updated_at", "2020-05-05 18:33:09.134876"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Amet atque nihil aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.136294"], ["updated_at", "2020-05-05 18:33:09.136294"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Quis illum debitis dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.137657"], ["updated_at", "2020-05-05 18:33:09.137657"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dorsey Huels"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3q1E7nClcJSTKGPbuuUlauqf7W5Q78T25N.N2NVXpcvF/esTCy3zW"], ["created_at", "2020-05-05 18:33:09.140437"], ["updated_at", "2020-05-05 18:33:09.140437"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.25ms) +Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.47ms) +Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.2ms | Allocations: 1240) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (53.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (2.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "hic"], ["description", "Et ducimus ut eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.214429"], ["updated_at", "2020-05-05 18:33:09.214429"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Rem et corporis modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.220985"], ["updated_at", "2020-05-05 18:33:09.220985"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facere"], ["description", "Vitae perspiciatis aut minus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.226675"], ["updated_at", "2020-05-05 18:33:09.226675"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odio"], ["description", "Necessitatibus consectetur ut est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.231915"], ["updated_at", "2020-05-05 18:33:09.231915"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cupiditate"], ["description", "Vel reiciendis labore est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.235776"], ["updated_at", "2020-05-05 18:33:09.235776"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Et laborum repellat inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.238275"], ["updated_at", "2020-05-05 18:33:09.238275"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Et minus distinctio nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.241078"], ["updated_at", "2020-05-05 18:33:09.241078"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vero"], ["description", "Repellat voluptatem mollitia officiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.243979"], ["updated_at", "2020-05-05 18:33:09.243979"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Recusandae quaerat atque saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.247561"], ["updated_at", "2020-05-05 18:33:09.247561"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Veniam officiis minima est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.249928"], ["updated_at", "2020-05-05 18:33:09.249928"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Karl Blick"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$b7kHLj6hchao65B/6Fpo9euYU7qCbxkAJjQzFjHQv8tqec8Y22zBS"], ["created_at", "2020-05-05 18:33:09.254226"], ["updated_at", "2020-05-05 18:33:09.254226"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.23ms) +Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.3ms | Allocations: 2844) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Sed quae inventore excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.277646"], ["updated_at", "2020-05-05 18:33:09.277646"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Modi quo repellendus eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.280649"], ["updated_at", "2020-05-05 18:33:09.280649"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatum"], ["description", "Qui qui soluta sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.282129"], ["updated_at", "2020-05-05 18:33:09.282129"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsum"], ["description", "Autem beatae reprehenderit alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.283422"], ["updated_at", "2020-05-05 18:33:09.283422"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fuga"], ["description", "Minus est modi rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.284835"], ["updated_at", "2020-05-05 18:33:09.284835"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Ullam optio voluptas modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.286396"], ["updated_at", "2020-05-05 18:33:09.286396"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "error"], ["description", "Assumenda ipsa omnis fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.288174"], ["updated_at", "2020-05-05 18:33:09.288174"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perspiciatis"], ["description", "Et ducimus nobis molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.290648"], ["updated_at", "2020-05-05 18:33:09.290648"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Sapiente eos placeat vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.292213"], ["updated_at", "2020-05-05 18:33:09.292213"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Suscipit nesciunt consequatur sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.293564"], ["updated_at", "2020-05-05 18:33:09.293564"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Iva Schaden"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JwgnQ6hNxt7DvN6X.UFdy.0MBy1FrhLi40dwVAHKcYNjW.ZMvEc9i"], ["created_at", "2020-05-05 18:33:09.296135"], ["updated_at", "2020-05-05 18:33:09.296135"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (17.78ms) +Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.1ms | Allocations: 2846) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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.2ms | Allocations: 512) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Laudantium laboriosam possimus et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.331336"], ["updated_at", "2020-05-05 18:33:09.331336"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quaerat"], ["description", "Fuga amet magnam ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.334138"], ["updated_at", "2020-05-05 18:33:09.334138"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "numquam"], ["description", "Architecto qui sed nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.335539"], ["updated_at", "2020-05-05 18:33:09.335539"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "Et a esse veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.336922"], ["updated_at", "2020-05-05 18:33:09.336922"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "modi"], ["description", "Ut accusamus aut et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.338267"], ["updated_at", "2020-05-05 18:33:09.338267"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "similique"], ["description", "Dolorem voluptas quo veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.339626"], ["updated_at", "2020-05-05 18:33:09.339626"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aspernatur"], ["description", "Nihil molestias rerum velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.340938"], ["updated_at", "2020-05-05 18:33:09.340938"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Odio excepturi sed consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.342211"], ["updated_at", "2020-05-05 18:33:09.342211"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Animi qui dicta dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.343478"], ["updated_at", "2020-05-05 18:33:09.343478"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Earum delectus ipsum dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.344986"], ["updated_at", "2020-05-05 18:33:09.344986"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Brigid Olson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$owHwGN/zqjKejlOHigG5AeIzego7PbwisGbmDceQeG2FyE63nVq7K"], ["created_at", "2020-05-05 18:33:09.348390"], ["updated_at", "2020-05-05 18:33:09.348390"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.3ms | ActiveRecord: 0.1ms | Allocations: 2842) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:33:09 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:33:09.372812"], ["updated_at", "2020-05-05 18:33:09.372812"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.47ms) +Completed 201 Created in 21ms (Views: 0.9ms | ActiveRecord: 1.1ms | Allocations: 6207) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "harum"], ["description", "Labore reprehenderit perferendis accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.389926"], ["updated_at", "2020-05-05 18:33:09.389926"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Officiis aspernatur assumenda dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.392897"], ["updated_at", "2020-05-05 18:33:09.392897"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Harum voluptas incidunt et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.394312"], ["updated_at", "2020-05-05 18:33:09.394312"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolore"], ["description", "Dolorum facilis possimus molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.395630"], ["updated_at", "2020-05-05 18:33:09.395630"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Perferendis eaque culpa est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.396890"], ["updated_at", "2020-05-05 18:33:09.396890"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quaerat"], ["description", "Nisi dolores rerum aperiam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.398332"], ["updated_at", "2020-05-05 18:33:09.398332"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Praesentium sed voluptas architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.399728"], ["updated_at", "2020-05-05 18:33:09.399728"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magni"], ["description", "Rerum architecto iure consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.401012"], ["updated_at", "2020-05-05 18:33:09.401012"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Aperiam et tenetur cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.402282"], ["updated_at", "2020-05-05 18:33:09.402282"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officia"], ["description", "Ipsam sit quod corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.403568"], ["updated_at", "2020-05-05 18:33:09.403568"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gregory Beahan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$krQKl16YwetcQuW48Enos.0GBbRBTKnMdma.OO8..CTRy8I7riGxm"], ["created_at", "2020-05-05 18:33:09.406274"], ["updated_at", "2020-05-05 18:33:09.406274"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.14ms) +Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.2ms | Allocations: 2845) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:33:09 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:33:09.418159"], ["updated_at", "2020-05-05 18:33:09.418159"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.3ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.47ms) +Completed 201 Created in 5ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 2251) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Voluptas beatae unde aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.430734"], ["updated_at", "2020-05-05 18:33:09.430734"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Fugit quo culpa eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.433463"], ["updated_at", "2020-05-05 18:33:09.433463"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Repellendus et qui dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.434842"], ["updated_at", "2020-05-05 18:33:09.434842"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Aut cum sunt doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.436143"], ["updated_at", "2020-05-05 18:33:09.436143"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Eum et enim culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.437380"], ["updated_at", "2020-05-05 18:33:09.437380"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repudiandae"], ["description", "Dolorem aspernatur est dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.438706"], ["updated_at", "2020-05-05 18:33:09.438706"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Quam aut facere similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.440063"], ["updated_at", "2020-05-05 18:33:09.440063"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Id expedita mollitia placeat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.441473"], ["updated_at", "2020-05-05 18:33:09.441473"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "incidunt"], ["description", "Molestiae adipisci tempora itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.442781"], ["updated_at", "2020-05-05 18:33:09.442781"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Molestiae laborum ut recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.444049"], ["updated_at", "2020-05-05 18:33:09.444049"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Maria Lakin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hXNgJeUIlzMpHJMGGOv4Lema1aeXHZ1fqllvXMZjdOskXlqy2s2LO"], ["created_at", "2020-05-05 18:33:09.446777"], ["updated_at", "2020-05-05 18:33:09.446777"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 4006) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (94.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (3.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Omnis praesentium autem doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.607465"], ["updated_at", "2020-05-05 18:33:09.607465"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Quia non consequatur nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.615269"], ["updated_at", "2020-05-05 18:33:09.615269"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Qui qui occaecati qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.619471"], ["updated_at", "2020-05-05 18:33:09.619471"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laudantium"], ["description", "Consectetur doloremque veniam ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.623316"], ["updated_at", "2020-05-05 18:33:09.623316"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloremque"], ["description", "Aperiam omnis recusandae explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.627443"], ["updated_at", "2020-05-05 18:33:09.627443"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Libero error atque est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.632877"], ["updated_at", "2020-05-05 18:33:09.632877"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Libero minima beatae dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.637255"], ["updated_at", "2020-05-05 18:33:09.637255"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iusto"], ["description", "Libero sunt debitis minus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.641186"], ["updated_at", "2020-05-05 18:33:09.641186"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Ducimus inventore et qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.644854"], ["updated_at", "2020-05-05 18:33:09.644854"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Porro maiores cum aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.649242"], ["updated_at", "2020-05-05 18:33:09.649242"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Deeann Dietrich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2vNCUN2v9uWFW38qqb8JrOQ17JjNqoxXKM8wOjda/R1Ms5ibG7/Pm"], ["created_at", "2020-05-05 18:33:09.654794"], ["updated_at", "2020-05-05 18:33:09.654794"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (5.36ms) +Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 422 Unprocessable Entity in 8ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 3697) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "porro"], ["description", "Rerum deleniti aut fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.687808"], ["updated_at", "2020-05-05 18:33:09.687808"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facere"], ["description", "Quo in quidem aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.690940"], ["updated_at", "2020-05-05 18:33:09.690940"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laborum"], ["description", "Maxime doloremque id sequi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.693261"], ["updated_at", "2020-05-05 18:33:09.693261"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsum"], ["description", "Amet totam magni cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.694730"], ["updated_at", "2020-05-05 18:33:09.694730"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Placeat maiores qui et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.696023"], ["updated_at", "2020-05-05 18:33:09.696023"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vero"], ["description", "Quos ut voluptatibus libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.697279"], ["updated_at", "2020-05-05 18:33:09.697279"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptates"], ["description", "Neque doloribus molestiae nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.698758"], ["updated_at", "2020-05-05 18:33:09.698758"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quos"], ["description", "Et commodi eius ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.699999"], ["updated_at", "2020-05-05 18:33:09.699999"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Ullam rerum ratione et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.701230"], ["updated_at", "2020-05-05 18:33:09.701230"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusamus"], ["description", "Porro nostrum omnis consectetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.702431"], ["updated_at", "2020-05-05 18:33:09.702431"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ronny Ritchie Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$owFQtk.7mmkMaE/mmu44mOGLSgLwHJ6OIFKVJPk/m/qN3LgaIsrle"], ["created_at", "2020-05-05 18:33:09.705008"], ["updated_at", "2020-05-05 18:33:09.705008"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.6ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:33:09.716153"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 1044) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perferendis"], ["description", "Aut repellendus saepe id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.725764"], ["updated_at", "2020-05-05 18:33:09.725764"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Est cum iusto ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.728781"], ["updated_at", "2020-05-05 18:33:09.728781"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "praesentium"], ["description", "Quae et similique consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.730966"], ["updated_at", "2020-05-05 18:33:09.730966"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Rerum totam quia debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.732557"], ["updated_at", "2020-05-05 18:33:09.732557"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deleniti"], ["description", "Sit hic voluptatem iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.733863"], ["updated_at", "2020-05-05 18:33:09.733863"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Nemo eius rem corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.735128"], ["updated_at", "2020-05-05 18:33:09.735128"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nemo"], ["description", "Et perferendis unde quisquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.736378"], ["updated_at", "2020-05-05 18:33:09.736378"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Earum velit provident ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.737710"], ["updated_at", "2020-05-05 18:33:09.737710"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vero"], ["description", "Quisquam suscipit nostrum aliquid."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.739041"], ["updated_at", "2020-05-05 18:33:09.739041"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "mollitia"], ["description", "Pariatur dolores asperiores recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.740261"], ["updated_at", "2020-05-05 18:33:09.740261"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Velda Barrows"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ESns4oe8Pc09zZuPCTvuNetfIxuk9Ywdeu2UQ8ZxXyYDMSmK0QGUO"], ["created_at", "2020-05-05 18:33:09.742911"], ["updated_at", "2020-05-05 18:33:09.742911"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2844) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:33:09.754038"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 999) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "necessitatibus"], ["description", "Excepturi pariatur dignissimos odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.764312"], ["updated_at", "2020-05-05 18:33:09.764312"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Fugit assumenda ut est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.767241"], ["updated_at", "2020-05-05 18:33:09.767241"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quisquam"], ["description", "Ut rem adipisci amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.769096"], ["updated_at", "2020-05-05 18:33:09.769096"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Distinctio labore eveniet possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.771126"], ["updated_at", "2020-05-05 18:33:09.771126"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laborum"], ["description", "Odit dolore iste tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.772674"], ["updated_at", "2020-05-05 18:33:09.772674"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cumque"], ["description", "Id expedita omnis aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.773937"], ["updated_at", "2020-05-05 18:33:09.773937"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "incidunt"], ["description", "Nihil perferendis delectus aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.775215"], ["updated_at", "2020-05-05 18:33:09.775215"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellendus"], ["description", "In at praesentium eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.776492"], ["updated_at", "2020-05-05 18:33:09.776492"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quam"], ["description", "Ab aliquid praesentium dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.777768"], ["updated_at", "2020-05-05 18:33:09.777768"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "similique"], ["description", "Temporibus consequatur velit quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:09.779181"], ["updated_at", "2020-05-05 18:33:09.779181"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Florencio Wisozk Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Aw0IVWUy82hTa83/pLVOPOdFVlihPkGMHrbPF5ivY3PySvga7hWae"], ["created_at", "2020-05-05 18:33:09.781818"], ["updated_at", "2020-05-05 18:33:09.781818"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.77ms) +Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.1ms | Allocations: 2842) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1205) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Peter Upton"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Kvf3q2yuEAsxUYN2.S3aceS827nQnOxdyp3KP/.zRPlYR7fdztRGe"], ["created_at", "2020-05-05 18:33:09.805307"], ["updated_at", "2020-05-05 18:33:09.805307"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lakesha Bailey"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LXv1BD/2uDS2Fn.O3P6m3erVRLHzRFuqkWqgbKl0/SH3Z2qLs4Q/q"], ["created_at", "2020-05-05 18:33:09.809559"], ["updated_at", "2020-05-05 18:33:09.809559"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alexander Turner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8kMKJfGdaWYT4soXIelipe5rkzCYCZ7KYplsjOShnqu.b.U.5V3IS"], ["created_at", "2020-05-05 18:33:09.812834"], ["updated_at", "2020-05-05 18:33:09.812834"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Brooke Robel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$slkPKxVq9Vv6ymS5g/ybWeWWQ9Aib1PMSjJyihiQ4DhpaUyiG12KS"], ["created_at", "2020-05-05 18:33:09.815363"], ["updated_at", "2020-05-05 18:33:09.815363"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Jamaal Altenwerth"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FkMITuaXf72E6yB7RzBtze3ILNo3fJRMjvKFtb0p1/VTxu0qXey4."], ["created_at", "2020-05-05 18:33:09.817791"], ["updated_at", "2020-05-05 18:33:09.817791"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Randolph Wilderman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DkKAklOSNXAWQdXBM/Hgk.v8j4h5D5fCtxmjxJ2RHZelwHZNtC01G"], ["created_at", "2020-05-05 18:33:09.820104"], ["updated_at", "2020-05-05 18:33:09.820104"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cristobal Boehm"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6uU4N4KWSSB/TxMI7RywmuMAc.LDFhcWJ/Giml4bIqwr5oeeO5kD6"], ["created_at", "2020-05-05 18:33:09.822490"], ["updated_at", "2020-05-05 18:33:09.822490"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Raul Sawayn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$N4EtkKlxovL7paKEB06aeumFmWMmFiLVS5cApryvclRN7nsY/Q8HG"], ["created_at", "2020-05-05 18:33:09.824874"], ["updated_at", "2020-05-05 18:33:09.824874"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Wilburn Tremblay"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QbKtKpHzeQHGLo7onL3qm.uELhPnvnb.2T/oXLT4ZGFp7q8OFdUXe"], ["created_at", "2020-05-05 18:33:09.827292"], ["updated_at", "2020-05-05 18:33:09.827292"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Jesus Gutkowski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$MHdnIqgfLXIOL/xuD4l7mu41nsFs633QhcO1AcBp9L70ohkhoZnqy"], ["created_at", "2020-05-05 18:33:09.829963"], ["updated_at", "2020-05-05 18:33:09.829963"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.94ms) +Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms | Allocations: 2345) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Asuncion McClure"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kjsBA/WLNdmFjf0SDRempe0LZ.nvBIEPDl3RTnpbh5rZZNKET72hS"], ["created_at", "2020-05-05 18:33:09.849926"], ["updated_at", "2020-05-05 18:33:09.849926"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Allan Spinka"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9ruH4lBZ8E8D4GjynlXD9uF57NaadX02l..IyVyTPkfqFRHHDTZLK"], ["created_at", "2020-05-05 18:33:09.854577"], ["updated_at", "2020-05-05 18:33:09.854577"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marlana Dietrich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$67fDceGLpK96uhY8WwN.c.jJuaK8iW.4rCaF.LyIMAyeeC0W3rceO"], ["created_at", "2020-05-05 18:33:09.857248"], ["updated_at", "2020-05-05 18:33:09.857248"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rolf Goodwin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$brPlII5phQPkBTsrUAHhKuOMuJkzBdlC2JDAXQZO7ApFhIRYzBJPi"], ["created_at", "2020-05-05 18:33:09.859677"], ["updated_at", "2020-05-05 18:33:09.859677"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Norman Christiansen PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$m2abkoe3TopvRxXV.QClGuQXys6FNI8RXlc6tGqfrhsgS/n.WMOA."], ["created_at", "2020-05-05 18:33:09.862132"], ["updated_at", "2020-05-05 18:33:09.862132"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Nicol Jaskolski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NLwYna6tnLKi9ygOJf6fQOJdK2SykSNlGAC6kZ3YeokOq6jVevpKC"], ["created_at", "2020-05-05 18:33:09.864520"], ["updated_at", "2020-05-05 18:33:09.864520"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Efren Johnson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2nLGiPYBkZ3tAvayUtI4qe5Ltea3FNA7blOP.jl5y6RPz3kDgt1WK"], ["created_at", "2020-05-05 18:33:09.866972"], ["updated_at", "2020-05-05 18:33:09.866972"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Taneka Beier"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Xhy5q7MlqHzWfpE70ySjwufU1EHFd0NDiOyMmsWejUofvH3p1QhYG"], ["created_at", "2020-05-05 18:33:09.869767"], ["updated_at", "2020-05-05 18:33:09.869767"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Michiko Mayer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4Q/UwouufhNp7k6oZ8nJQ.dtTfVDIZiuiGieUz9.I0Nvs/t/OZKc2"], ["created_at", "2020-05-05 18:33:09.872871"], ["updated_at", "2020-05-05 18:33:09.872871"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elida Rice II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$sMaeu4BlYxoOsCwemD.oRumXz9SulvhoDgw9S/INxmG3gI2e81FVu"], ["created_at", "2020-05-05 18:33:09.875659"], ["updated_at", "2020-05-05 18:33:09.875659"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.73ms) +Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms | Allocations: 2203) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hollis Smith"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$iw0.5qPRH8hvg7b3D4YpyuTNNM8d3SKDOW5IWPDQPatNff6NHeeCi"], ["created_at", "2020-05-05 18:33:09.891891"], ["updated_at", "2020-05-05 18:33:09.891891"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ayanna Bahringer MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$e5GuEUXPKw7O5H9Dsq3QuuZ56U/NhqUAVmL/nS2eS3/te076jFDLG"], ["created_at", "2020-05-05 18:33:09.896411"], ["updated_at", "2020-05-05 18:33:09.896411"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Evangelina Leffler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dstpwwpuTPiK6pq6j.mQjuJTm/Ls7UfJcHQMBmPounNSsN/l6N1ya"], ["created_at", "2020-05-05 18:33:09.899695"], ["updated_at", "2020-05-05 18:33:09.899695"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Herman Kautzer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$cb1m3ZOcKZP7to7XTgjQQuUdNUsC8V4NkmYtfFjgnuA/WVK4o6uNO"], ["created_at", "2020-05-05 18:33:09.902861"], ["updated_at", "2020-05-05 18:33:09.902861"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Veda Lemke DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$PQ8D7e09hNRCYI3dsmiK1eUFr.JJ4MZKbXqDiSmbBbAFJ0DcmFu0G"], ["created_at", "2020-05-05 18:33:09.905690"], ["updated_at", "2020-05-05 18:33:09.905690"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tomika Rau"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NybPPk.FMlZ.u9XHCKbzOuG3A05vNeXqpzhroxCxC..rj1WkgWDt."], ["created_at", "2020-05-05 18:33:09.908445"], ["updated_at", "2020-05-05 18:33:09.908445"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lucius Toy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1jti/JivwlZfbpWELfTIz.a0DaPyq1Tfk/79E78oT5Tc.T8LallPS"], ["created_at", "2020-05-05 18:33:09.911798"], ["updated_at", "2020-05-05 18:33:09.911798"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lauretta Gislason"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kCjv2QF/u0Jxd2Zrb1s7OOeAo/H52m4GQaRkDIoGP0oGCTasribzW"], ["created_at", "2020-05-05 18:33:09.914746"], ["updated_at", "2020-05-05 18:33:09.914746"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lawerence Gibson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZlIY2gzAe8VqOlLz5EA4t.EvQcrxfGfeP//AaNGJsC1Vj4qg4fJ9m"], ["created_at", "2020-05-05 18:33:09.917133"], ["updated_at", "2020-05-05 18:33:09.917133"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Geraldo Ziemann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ifqYsPfo/cUESm84YIg6.ODPT3nDGua8ogdnAdFkMkhsacZNwUAfG"], ["created_at", "2020-05-05 18:33:09.919507"], ["updated_at", "2020-05-05 18:33:09.919507"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.99ms) +Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.41ms) +Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kisha Wyman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$syTNejjjrI9ujTGIBoMU7eiTBocs3vzIqkLUScb2m2PzOhPjgl60C"], ["created_at", "2020-05-05 18:33:09.942445"], ["updated_at", "2020-05-05 18:33:09.942445"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gaston Hartmann IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Nq.Mi8jeCpsosELv2fSkguXUYeGInpBQvggkNnLuqE04qGd4/pCI2"], ["created_at", "2020-05-05 18:33:09.947111"], ["updated_at", "2020-05-05 18:33:09.947111"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hilton Sipes"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OAmYxHgMF6iwkaETr3mD2ecC.DOBFeP7b2xtlOX7W9KROLuUTwdv."], ["created_at", "2020-05-05 18:33:09.950223"], ["updated_at", "2020-05-05 18:33:09.950223"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nicola VonRueden"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NFjGXc13yoWVCpdOrWF0s.8aAbT4pg2PasML2SYn1nm..18.D/YZW"], ["created_at", "2020-05-05 18:33:09.953119"], ["updated_at", "2020-05-05 18:33:09.953119"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Maxwell Ferry III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LVJPqyrwX3BW2ylw836urOZuRaeKUzB4vsM1H0m5cu2idHsrdC87."], ["created_at", "2020-05-05 18:33:09.956419"], ["updated_at", "2020-05-05 18:33:09.956419"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Daisy Stark"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BHD8b/.fVwyWGkaUGZqehuC.Ul/mzyF.5nc61CsBP8RVXRFs6aSrm"], ["created_at", "2020-05-05 18:33:09.958919"], ["updated_at", "2020-05-05 18:33:09.958919"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Soila McGlynn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hTht3827StC5I8DJoduHqeo6p8AXTkoKH09kO8d5xEJxUP7LEUfe."], ["created_at", "2020-05-05 18:33:09.961367"], ["updated_at", "2020-05-05 18:33:09.961367"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Jetta Bergstrom"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HoGLH6tBRF24yPH.6pPiGuDxvzG3fDdCijYmcTEPzBAm.7EMTauUm"], ["created_at", "2020-05-05 18:33:09.963780"], ["updated_at", "2020-05-05 18:33:09.963780"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Donna Jerde"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JELdy7WhNwvf9T2YUlWOrOR0Qb/AFduwqTlp8zDq8rcPK/d/ya69S"], ["created_at", "2020-05-05 18:33:09.966163"], ["updated_at", "2020-05-05 18:33:09.966163"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Tommie Stroman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5X4yM8jtoTLGwT0JYBFhqOlMhYTVGaOF5eWxBf/lPv4I4k1G5NBrm"], ["created_at", "2020-05-05 18:33:09.968769"], ["updated_at", "2020-05-05 18:33:09.968769"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.87ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:33:09 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.54ms) +Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (42.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (2.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Darleen Kris"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZO7dSjYQhApXa.YmUnl.4OWYLyZOT97jvwV1GN7cfVEzDcFg2LJk6"], ["created_at", "2020-05-05 18:33:10.030890"], ["updated_at", "2020-05-05 18:33:10.030890"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sylvie Veum"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$AlFZiW8RePHk9LgMJq2Wr.beeG5A/SlYsDS9/93kRL2VBxqPFHy5."], ["created_at", "2020-05-05 18:33:10.041482"], ["updated_at", "2020-05-05 18:33:10.041482"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Stephnie Crona I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6Y0ljEBxcDoUcbOPW1jH4uEeDSRK9JwIQXinFSdxiG.g3qeP8UP.W"], ["created_at", "2020-05-05 18:33:10.048979"], ["updated_at", "2020-05-05 18:33:10.048979"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tony Nitzsche DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xEo6b/RrJusPA/LVsXEZnucNfN26LeVLbQ3uhuLvoujHxPzs0VL9W"], ["created_at", "2020-05-05 18:33:10.057509"], ["updated_at", "2020-05-05 18:33:10.057509"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Stacy Torp"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$eEi6hzCWbISIDxwYyHkMoewN3qADgNHPCpnGIi4.6CgpVH.S1KWJK"], ["created_at", "2020-05-05 18:33:10.065272"], ["updated_at", "2020-05-05 18:33:10.065272"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marty Hudson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kwnm4ME6CpfrmBpiqQxlY.N.3m9eFQ5ygrF432FSId4ESF5USzhr6"], ["created_at", "2020-05-05 18:33:10.072017"], ["updated_at", "2020-05-05 18:33:10.072017"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Beau Casper"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5544vySA4NZXEFd62zpLUuik9E0v1pm9tASHk9ChECtHES34sYPAq"], ["created_at", "2020-05-05 18:33:10.076429"], ["updated_at", "2020-05-05 18:33:10.076429"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cary Stehr"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$43mxUwsPnvdVIgpQWqX6EeCtIEuvCZQoCoJU/rBbr8koqox6FweDG"], ["created_at", "2020-05-05 18:33:10.080593"], ["updated_at", "2020-05-05 18:33:10.080593"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rayford Wyman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$wH.vgB.DkzJEyC1Fd63DLOu5AoH2UBlHwUR6/jBH2BJ4aaRCUWFaC"], ["created_at", "2020-05-05 18:33:10.084800"], ["updated_at", "2020-05-05 18:33:10.084800"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Javier Ratke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RceBtnKElKQJwLMDE/64J.ekTeRVfk6cUIcqR6LYw/MI2i8uAdSPq"], ["created_at", "2020-05-05 18:33:10.089087"], ["updated_at", "2020-05-05 18:33:10.089087"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:33:10 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (5.43ms) +Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:33:10 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 404 Not Found in 2ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nikki O'Kon"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RM6LZyR/IXoG7hrLwYp3AuNZ.rKrmyJflTiZj9ZK8cRBY0QNHLAie"], ["created_at", "2020-05-05 18:33:10.118834"], ["updated_at", "2020-05-05 18:33:10.118834"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Patty Goodwin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9SMhwRMBWa6YwRvNMKcoxuq0r/jEMN7LPrRHVf0oBpd4gso5k9ye6"], ["created_at", "2020-05-05 18:33:10.125058"], ["updated_at", "2020-05-05 18:33:10.125058"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Chang Parisian"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YY0PvqQq3pmxG6lIazTvxO7683AwyxVaS4YC5oeV.wDJgw3DkBZ9C"], ["created_at", "2020-05-05 18:33:10.129564"], ["updated_at", "2020-05-05 18:33:10.129564"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Bryanna Bergstrom"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZwduLJ3jiavmJxramlQWK.4TZZrN0M1Lzz57rTQazNvklzUotj./e"], ["created_at", "2020-05-05 18:33:10.134121"], ["updated_at", "2020-05-05 18:33:10.134121"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Giovanni Schaefer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SgRyd8cPoyXwI4fVMo7SeeaNvI.qTJHbY6ePoGipfa4lsa.0rUBb2"], ["created_at", "2020-05-05 18:33:10.138769"], ["updated_at", "2020-05-05 18:33:10.138769"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Magali Miller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fVMfqkjpRkfd12wjHSpbreXatmjoOMuPIv.reXZ1LMML9Af3l/iDm"], ["created_at", "2020-05-05 18:33:10.142737"], ["updated_at", "2020-05-05 18:33:10.142737"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Maude Kris"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$eUnK8QVyxllmCTsa0JXPcOM5IBfTfHMz4Yy2Kv8CBlcXxr3K78hfO"], ["created_at", "2020-05-05 18:33:10.146622"], ["updated_at", "2020-05-05 18:33:10.146622"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cole Spinka"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JgWOqR1NUo06M9SeEflcb.GtRx17jHMJ8b1iiYv9A5nnnqtRKzAYm"], ["created_at", "2020-05-05 18:33:10.150703"], ["updated_at", "2020-05-05 18:33:10.150703"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gita Bashirian DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$is5ZxgQ0TOyH0abAP.LvvuV.dm/3gK4cRWhcnmyzIuqVXrsh4lIcu"], ["created_at", "2020-05-05 18:33:10.154901"], ["updated_at", "2020-05-05 18:33:10.154901"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Abraham Jacobs"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fSsyvH8plyjxsulqKbrJoOyZeI1FRTX0nulyoy.niKI/4asCL4yWC"], ["created_at", "2020-05-05 18:33:10.158756"], ["updated_at", "2020-05-05 18:33:10.158756"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:33:10 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.97ms) +Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:33:10 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (4.4ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (134.3ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (101.0ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (112.3ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (87.8ms) DELETE FROM "meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (114.4ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (122.2ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (88.8ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (52.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dewey Quitzon"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$poybLb6LyTcjKw1bjZLOEeJq1ikN4UJu4YqJI8CNiwjRl0S85SruO"], ["created_at", "2020-05-05 18:33:38.257951"], ["updated_at", "2020-05-05 18:33:38.257951"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Repellat expedita autem cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:38.342465"], ["updated_at", "2020-05-05 18:33:38.342465"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora beatae ut labore?"], ["description", "Rerum optio praesentium minus."], ["date", "2020-05-06 18:33:38.370761"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.396396"], ["updated_at", "2020-05-05 18:33:38.396396"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam molestiae sit vero?"], ["description", "Hic occaecati molestiae quia."], ["date", "2020-05-06 18:33:38.398324"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.399386"], ["updated_at", "2020-05-05 18:33:38.399386"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias quos velit odio?"], ["description", "Sed tempore amet id."], ["date", "2020-05-06 18:33:38.401030"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.401895"], ["updated_at", "2020-05-05 18:33:38.401895"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae dolor sed ut?"], ["description", "Et aspernatur laudantium in."], ["date", "2020-05-06 18:33:38.403082"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.403867"], ["updated_at", "2020-05-05 18:33:38.403867"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem nostrum dolore praesentium?"], ["description", "Exercitationem rerum dolorem expedita."], ["date", "2020-05-06 18:33:38.405046"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.405709"], ["updated_at", "2020-05-05 18:33:38.405709"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui dolores dicta cupiditate?"], ["description", "Quidem excepturi rerum praesentium."], ["date", "2020-05-06 18:33:38.406966"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.407623"], ["updated_at", "2020-05-05 18:33:38.407623"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quibusdam rerum est animi?"], ["description", "Fugiat aspernatur illo illum."], ["date", "2020-05-06 18:33:38.409089"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.409982"], ["updated_at", "2020-05-05 18:33:38.409982"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta facere et dolores?"], ["description", "Ratione omnis deleniti consequuntur."], ["date", "2020-05-06 18:33:38.411219"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.411969"], ["updated_at", "2020-05-05 18:33:38.411969"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi qui cupiditate ut?"], ["description", "Cum hic esse iusto."], ["date", "2020-05-06 18:33:38.413299"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.414076"], ["updated_at", "2020-05-05 18:33:38.414076"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minus error cum quis?"], ["description", "Sint eius voluptas qui."], ["date", "2020-05-06 18:33:38.415903"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.416727"], ["updated_at", "2020-05-05 18:33:38.416727"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia quisquam qui accusamus?"], ["description", "Voluptatum aspernatur mollitia est."], ["date", "2020-05-06 18:33:38.418497"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.419487"], ["updated_at", "2020-05-05 18:33:38.419487"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut quo sed ipsam?"], ["description", "Vero autem ut tenetur."], ["date", "2020-05-06 18:33:38.420922"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.421901"], ["updated_at", "2020-05-05 18:33:38.421901"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem ipsum consequatur quidem?"], ["description", "Amet a et voluptatum."], ["date", "2020-05-06 18:33:38.423286"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.424155"], ["updated_at", "2020-05-05 18:33:38.424155"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut et quia iure?"], ["description", "Est minus consequatur tempore."], ["date", "2020-05-06 18:33:38.425606"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.426589"], ["updated_at", "2020-05-05 18:33:38.426589"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est veritatis voluptatum eius?"], ["description", "Praesentium inventore nulla nobis."], ["date", "2020-05-06 18:33:38.428257"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.429656"], ["updated_at", "2020-05-05 18:33:38.429656"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit placeat sunt repudiandae?"], ["description", "Earum id ratione quaerat."], ["date", "2020-05-06 18:33:38.433086"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.434279"], ["updated_at", "2020-05-05 18:33:38.434279"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum voluptatibus quo iure?"], ["description", "Non et odit incidunt."], ["date", "2020-05-06 18:33:38.435810"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.436970"], ["updated_at", "2020-05-05 18:33:38.436970"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est possimus sequi sit?"], ["description", "Dolore aperiam voluptatem et."], ["date", "2020-05-06 18:33:38.439386"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.440657"], ["updated_at", "2020-05-05 18:33:38.440657"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem accusamus consectetur culpa?"], ["description", "Distinctio ipsum vero quaerat."], ["date", "2020-05-06 18:33:38.442303"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.443191"], ["updated_at", "2020-05-05 18:33:38.443191"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius quod quisquam animi?"], ["description", "Fuga exercitationem voluptatum qui."], ["date", "2020-05-06 18:33:38.444657"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.445543"], ["updated_at", "2020-05-05 18:33:38.445543"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:33:38 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.02ms) +Completed 200 OK in 34ms (Views: 15.3ms | ActiveRecord: 0.6ms | Allocations: 8639) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Chang Hills"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CVOP5eTuwHZVV0enh92wIODVOXyIyFB/3oKqu84lmGILrME/lv0GK"], ["created_at", "2020-05-05 18:33:38.534091"], ["updated_at", "2020-05-05 18:33:38.534091"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perspiciatis"], ["description", "Est quo ut maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:38.537310"], ["updated_at", "2020-05-05 18:33:38.537310"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia pariatur odio iusto?"], ["description", "Iste temporibus explicabo eius."], ["date", "2020-05-06 18:33:38.539552"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.541196"], ["updated_at", "2020-05-05 18:33:38.541196"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo quae fugit quos?"], ["description", "Nemo quo quis officiis."], ["date", "2020-05-06 18:33:38.543424"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.544374"], ["updated_at", "2020-05-05 18:33:38.544374"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni nihil et quidem?"], ["description", "Et vel atque unde."], ["date", "2020-05-06 18:33:38.545694"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.546443"], ["updated_at", "2020-05-05 18:33:38.546443"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt culpa vero rem?"], ["description", "Possimus qui nemo recusandae."], ["date", "2020-05-06 18:33:38.547710"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.548633"], ["updated_at", "2020-05-05 18:33:38.548633"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio cumque iste debitis?"], ["description", "Deserunt minus quis aut."], ["date", "2020-05-06 18:33:38.549925"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.550640"], ["updated_at", "2020-05-05 18:33:38.550640"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis quos exercitationem harum?"], ["description", "Consequatur sed quam iure."], ["date", "2020-05-06 18:33:38.551748"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.552417"], ["updated_at", "2020-05-05 18:33:38.552417"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium fugit veniam nihil?"], ["description", "Quis eveniet error culpa."], ["date", "2020-05-06 18:33:38.553554"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.554228"], ["updated_at", "2020-05-05 18:33:38.554228"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui nam amet quas?"], ["description", "Consequatur voluptatum in corrupti."], ["date", "2020-05-06 18:33:38.555515"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.556195"], ["updated_at", "2020-05-05 18:33:38.556195"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut quia iste consequatur?"], ["description", "Quos aut quae id."], ["date", "2020-05-06 18:33:38.557396"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.558282"], ["updated_at", "2020-05-05 18:33:38.558282"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure eum est consectetur?"], ["description", "Tempora beatae quae voluptatem."], ["date", "2020-05-06 18:33:38.561273"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.562636"], ["updated_at", "2020-05-05 18:33:38.562636"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae quis nobis voluptatem?"], ["description", "Architecto quod autem tempore."], ["date", "2020-05-06 18:33:38.564413"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.565285"], ["updated_at", "2020-05-05 18:33:38.565285"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam corporis ut enim?"], ["description", "Amet reiciendis excepturi molestiae."], ["date", "2020-05-06 18:33:38.566514"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.567274"], ["updated_at", "2020-05-05 18:33:38.567274"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Culpa placeat illum repellat?"], ["description", "Dolorem cumque ullam voluptates."], ["date", "2020-05-06 18:33:38.568610"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.569329"], ["updated_at", "2020-05-05 18:33:38.569329"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto laborum optio dolor?"], ["description", "Vel quo velit aliquam."], ["date", "2020-05-06 18:33:38.570645"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.571379"], ["updated_at", "2020-05-05 18:33:38.571379"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum nesciunt accusantium fugiat?"], ["description", "Dolorum deserunt est repudiandae."], ["date", "2020-05-06 18:33:38.572730"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.573516"], ["updated_at", "2020-05-05 18:33:38.573516"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas mollitia inventore vel?"], ["description", "Ratione veniam animi corporis."], ["date", "2020-05-06 18:33:38.574830"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.575601"], ["updated_at", "2020-05-05 18:33:38.575601"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea et qui et?"], ["description", "Dolore ea sint ducimus."], ["date", "2020-05-06 18:33:38.576878"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.577582"], ["updated_at", "2020-05-05 18:33:38.577582"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia cum magnam vero?"], ["description", "Dolorum molestiae asperiores ratione."], ["date", "2020-05-06 18:33:38.579733"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.580727"], ["updated_at", "2020-05-05 18:33:38.580727"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia excepturi qui odit?"], ["description", "Rerum dolores molestiae laboriosam."], ["date", "2020-05-06 18:33:38.582238"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.583052"], ["updated_at", "2020-05-05 18:33:38.583052"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores pariatur temporibus cum?"], ["description", "Iure illo unde occaecati."], ["date", "2020-05-06 18:33:38.584455"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.585263"], ["updated_at", "2020-05-05 18:33:38.585263"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:33:38 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.03ms) +Completed 200 OK in 11ms (Views: 9.8ms | ActiveRecord: 0.3ms | Allocations: 5514) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Yoshie Hilll"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nCyUqLw0YtczXeKBGRo7S.2Wit2HwbHaBP7E0ZDOpcdTt46ALM/La"], ["created_at", "2020-05-05 18:33:38.614347"], ["updated_at", "2020-05-05 18:33:38.614347"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cumque"], ["description", "Officia eius porro omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:38.659101"], ["updated_at", "2020-05-05 18:33:38.659101"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil ipsa id deleniti?"], ["description", "Excepturi voluptas dicta quo."], ["date", "2020-05-06 18:33:38.661940"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.663436"], ["updated_at", "2020-05-05 18:33:38.663436"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum ducimus voluptatum voluptatem?"], ["description", "Molestiae nemo quia odit."], ["date", "2020-05-06 18:33:38.665863"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.666887"], ["updated_at", "2020-05-05 18:33:38.666887"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo ipsum et recusandae?"], ["description", "Sapiente qui rerum placeat."], ["date", "2020-05-06 18:33:38.668335"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.669295"], ["updated_at", "2020-05-05 18:33:38.669295"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae nostrum consectetur facere?"], ["description", "Fugiat ullam error ab."], ["date", "2020-05-06 18:33:38.670681"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.671631"], ["updated_at", "2020-05-05 18:33:38.671631"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse cupiditate aut dolore?"], ["description", "Molestiae aut praesentium dolores."], ["date", "2020-05-06 18:33:38.672855"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.673697"], ["updated_at", "2020-05-05 18:33:38.673697"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea a voluptatum praesentium?"], ["description", "Aliquid hic voluptas ipsa."], ["date", "2020-05-06 18:33:38.674993"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.675916"], ["updated_at", "2020-05-05 18:33:38.675916"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et labore numquam consequuntur?"], ["description", "Ab dolorum et distinctio."], ["date", "2020-05-06 18:33:38.677177"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.678107"], ["updated_at", "2020-05-05 18:33:38.678107"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia molestias qui molestiae?"], ["description", "Est necessitatibus sint illum."], ["date", "2020-05-06 18:33:38.680298"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.681428"], ["updated_at", "2020-05-05 18:33:38.681428"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure natus rem temporibus?"], ["description", "Alias at quibusdam et."], ["date", "2020-05-06 18:33:38.683019"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.684148"], ["updated_at", "2020-05-05 18:33:38.684148"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti aut et aperiam?"], ["description", "Officiis et ea quis."], ["date", "2020-05-06 18:33:38.686208"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.687328"], ["updated_at", "2020-05-05 18:33:38.687328"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure sit maiores iste?"], ["description", "Nihil pariatur assumenda aut."], ["date", "2020-05-06 18:33:38.689399"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.690788"], ["updated_at", "2020-05-05 18:33:38.690788"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis est quis harum?"], ["description", "Neque dolores aut illum."], ["date", "2020-05-06 18:33:38.694199"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.696558"], ["updated_at", "2020-05-05 18:33:38.696558"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit velit ipsum nulla?"], ["description", "Odio dolorem occaecati qui."], ["date", "2020-05-06 18:33:38.719199"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.720254"], ["updated_at", "2020-05-05 18:33:38.720254"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut maxime animi labore?"], ["description", "Maxime quaerat quo optio."], ["date", "2020-05-06 18:33:38.721802"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.722661"], ["updated_at", "2020-05-05 18:33:38.722661"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio vel numquam enim?"], ["description", "Omnis iure facilis ut."], ["date", "2020-05-06 18:33:38.723798"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.724487"], ["updated_at", "2020-05-05 18:33:38.724487"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem culpa adipisci autem?"], ["description", "Delectus expedita aut quo."], ["date", "2020-05-06 18:33:38.725596"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.726322"], ["updated_at", "2020-05-05 18:33:38.726322"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui corporis incidunt nihil?"], ["description", "Cupiditate praesentium quo labore."], ["date", "2020-05-06 18:33:38.727478"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.728177"], ["updated_at", "2020-05-05 18:33:38.728177"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe corporis earum officia?"], ["description", "Praesentium similique omnis sit."], ["date", "2020-05-06 18:33:38.729460"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.730194"], ["updated_at", "2020-05-05 18:33:38.730194"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et repudiandae aliquam tempora?"], ["description", "Qui unde nam consectetur."], ["date", "2020-05-06 18:33:38.731446"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.732243"], ["updated_at", "2020-05-05 18:33:38.732243"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque animi incidunt sunt?"], ["description", "Minima expedita voluptates praesentium."], ["date", "2020-05-06 18:33:38.733476"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.734170"], ["updated_at", "2020-05-05 18:33:38.734170"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:33:38 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 404 Not Found in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms | Allocations: 866) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Amado Borer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JcWbGpLrmaweDjSKS2cE4e.bkXA8pA9.cPIcW/Faf94iIGH9AW7Me"], ["created_at", "2020-05-05 18:33:38.753129"], ["updated_at", "2020-05-05 18:33:38.753129"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Assumenda illo perferendis earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:38.755975"], ["updated_at", "2020-05-05 18:33:38.755975"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non officiis esse voluptas?"], ["description", "At nam laboriosam laudantium."], ["date", "2020-05-06 18:33:38.757523"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.758434"], ["updated_at", "2020-05-05 18:33:38.758434"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus tenetur consequatur nam?"], ["description", "Alias ut eveniet harum."], ["date", "2020-05-06 18:33:38.760054"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.761064"], ["updated_at", "2020-05-05 18:33:38.761064"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere numquam sit adipisci?"], ["description", "Eligendi libero architecto deleniti."], ["date", "2020-05-06 18:33:38.763212"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.764165"], ["updated_at", "2020-05-05 18:33:38.764165"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae aliquam doloribus facere?"], ["description", "Nulla quidem rerum sapiente."], ["date", "2020-05-06 18:33:38.765405"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.766081"], ["updated_at", "2020-05-05 18:33:38.766081"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas dicta ut repellendus?"], ["description", "Recusandae quia doloribus blanditiis."], ["date", "2020-05-06 18:33:38.767213"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.767918"], ["updated_at", "2020-05-05 18:33:38.767918"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est nisi nihil suscipit?"], ["description", "Enim dolor quisquam tempora."], ["date", "2020-05-06 18:33:38.769178"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.769973"], ["updated_at", "2020-05-05 18:33:38.769973"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident porro non a?"], ["description", "Tempora pariatur non et."], ["date", "2020-05-06 18:33:38.771136"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.771805"], ["updated_at", "2020-05-05 18:33:38.771805"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi numquam recusandae maiores?"], ["description", "Omnis minima facilis impedit."], ["date", "2020-05-06 18:33:38.772907"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.773557"], ["updated_at", "2020-05-05 18:33:38.773557"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam molestiae omnis nostrum?"], ["description", "Ut a quos nisi."], ["date", "2020-05-06 18:33:38.774709"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.775371"], ["updated_at", "2020-05-05 18:33:38.775371"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat voluptatem commodi delectus?"], ["description", "Ut sunt harum qui."], ["date", "2020-05-06 18:33:38.777146"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.777999"], ["updated_at", "2020-05-05 18:33:38.777999"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis qui eius voluptates?"], ["description", "Maiores perspiciatis ut magnam."], ["date", "2020-05-06 18:33:38.779481"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.780706"], ["updated_at", "2020-05-05 18:33:38.780706"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur quo mollitia iure?"], ["description", "Quo nihil ut eveniet."], ["date", "2020-05-06 18:33:38.782228"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.783504"], ["updated_at", "2020-05-05 18:33:38.783504"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea voluptas commodi qui?"], ["description", "Aut quia qui repudiandae."], ["date", "2020-05-06 18:33:38.785148"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.785982"], ["updated_at", "2020-05-05 18:33:38.785982"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil fugiat quisquam rerum?"], ["description", "Ea rerum sapiente temporibus."], ["date", "2020-05-06 18:33:38.787129"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.787820"], ["updated_at", "2020-05-05 18:33:38.787820"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis numquam soluta magnam?"], ["description", "Nobis commodi et quis."], ["date", "2020-05-06 18:33:38.789045"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.789762"], ["updated_at", "2020-05-05 18:33:38.789762"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam enim culpa et?"], ["description", "Exercitationem laborum veritatis dolores."], ["date", "2020-05-06 18:33:38.790911"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.791588"], ["updated_at", "2020-05-05 18:33:38.791588"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo a veritatis rerum?"], ["description", "Ut dolores quam blanditiis."], ["date", "2020-05-06 18:33:38.792707"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.793382"], ["updated_at", "2020-05-05 18:33:38.793382"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui eum rerum quos?"], ["description", "Autem fuga voluptas error."], ["date", "2020-05-06 18:33:38.794673"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.795508"], ["updated_at", "2020-05-05 18:33:38.795508"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis numquam voluptas similique?"], ["description", "Nemo quaerat facere ut."], ["date", "2020-05-06 18:33:38.796858"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.797623"], ["updated_at", "2020-05-05 18:33:38.797623"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati consequatur saepe voluptates?"], ["description", "Et est consectetur illo."], ["date", "2020-05-06 18:33:38.798947"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.799769"], ["updated_at", "2020-05-05 18:33:38.799769"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:33:38 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dorris Stoltenberg"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$IDVobqBmchF3qTuLvAxUyuwWAZV3ELzjny6poGTGN4S4nemK6.kCS"], ["created_at", "2020-05-05 18:33:38.818292"], ["updated_at", "2020-05-05 18:33:38.818292"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "delectus"], ["description", "Magnam illum quasi at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:38.821565"], ["updated_at", "2020-05-05 18:33:38.821565"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At et et culpa?"], ["description", "Minus impedit est optio."], ["date", "2020-05-06 18:33:38.823436"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.824534"], ["updated_at", "2020-05-05 18:33:38.824534"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed corrupti esse perspiciatis?"], ["description", "Officiis illo et qui."], ["date", "2020-05-06 18:33:38.836769"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.839478"], ["updated_at", "2020-05-05 18:33:38.839478"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius itaque ex unde?"], ["description", "Dignissimos et ipsum nostrum."], ["date", "2020-05-06 18:33:38.843148"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.844307"], ["updated_at", "2020-05-05 18:33:38.844307"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique sed provident pariatur?"], ["description", "Earum illum sapiente molestiae."], ["date", "2020-05-06 18:33:38.845851"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.846848"], ["updated_at", "2020-05-05 18:33:38.846848"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere est quia quas?"], ["description", "Sapiente iusto dolore eaque."], ["date", "2020-05-06 18:33:38.848335"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.849430"], ["updated_at", "2020-05-05 18:33:38.849430"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem vel vitae sapiente?"], ["description", "Temporibus eum voluptatibus sed."], ["date", "2020-05-06 18:33:38.850833"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.851653"], ["updated_at", "2020-05-05 18:33:38.851653"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et ipsum ea amet?"], ["description", "Dolores ab facere dolores."], ["date", "2020-05-06 18:33:38.852987"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.853861"], ["updated_at", "2020-05-05 18:33:38.853861"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio consectetur tempora ipsam?"], ["description", "Blanditiis in eos libero."], ["date", "2020-05-06 18:33:38.855094"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.855937"], ["updated_at", "2020-05-05 18:33:38.855937"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo aut sequi quas?"], ["description", "Hic ut iste cupiditate."], ["date", "2020-05-06 18:33:38.857219"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.858047"], ["updated_at", "2020-05-05 18:33:38.858047"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit et tenetur maiores?"], ["description", "In et nihil at."], ["date", "2020-05-06 18:33:38.860309"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.861967"], ["updated_at", "2020-05-05 18:33:38.861967"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et dolore amet molestiae?"], ["description", "Ipsam quia quis quos."], ["date", "2020-05-06 18:33:38.863796"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.864711"], ["updated_at", "2020-05-05 18:33:38.864711"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores aut voluptatibus reiciendis?"], ["description", "Dolorem autem odio fugit."], ["date", "2020-05-06 18:33:38.865937"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.866816"], ["updated_at", "2020-05-05 18:33:38.866816"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem quia voluptatum ad?"], ["description", "Qui eaque dolore fuga."], ["date", "2020-05-06 18:33:38.868195"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.869137"], ["updated_at", "2020-05-05 18:33:38.869137"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil aut animi ut?"], ["description", "Enim quidem corporis est."], ["date", "2020-05-06 18:33:38.870597"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.871431"], ["updated_at", "2020-05-05 18:33:38.871431"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A quia quia deserunt?"], ["description", "Consequatur corrupti ipsum rerum."], ["date", "2020-05-06 18:33:38.872764"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.873564"], ["updated_at", "2020-05-05 18:33:38.873564"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui omnis quia voluptas?"], ["description", "At praesentium consequatur deserunt."], ["date", "2020-05-06 18:33:38.874876"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.875659"], ["updated_at", "2020-05-05 18:33:38.875659"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis et amet voluptatem?"], ["description", "Autem id quae aperiam."], ["date", "2020-05-06 18:33:38.876852"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.877544"], ["updated_at", "2020-05-05 18:33:38.877544"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae nesciunt quibusdam odio?"], ["description", "Dolore omnis molestias aspernatur."], ["date", "2020-05-06 18:33:38.878911"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.879869"], ["updated_at", "2020-05-05 18:33:38.879869"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus enim doloribus hic?"], ["description", "Repellat illum enim alias."], ["date", "2020-05-06 18:33:38.881286"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.882082"], ["updated_at", "2020-05-05 18:33:38.882082"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit molestiae illo fuga?"], ["description", "Quaerat qui nobis reiciendis."], ["date", "2020-05-06 18:33:38.883270"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.884067"], ["updated_at", "2020-05-05 18:33:38.884067"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:33:38 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.5ms) +Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.3ms | Allocations: 1085) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (10.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Olimpia Kirlin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jjizYfCd1IPuqxicwr18z.lo6pVEqQd5mH4EAnzH51Zn7ihhmbtAi"], ["created_at", "2020-05-05 18:33:38.909615"], ["updated_at", "2020-05-05 18:33:38.909615"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vitae"], ["description", "Odio qui voluptatem sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:38.913030"], ["updated_at", "2020-05-05 18:33:38.913030"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam soluta earum id?"], ["description", "Voluptas unde occaecati distinctio."], ["date", "2020-05-06 18:33:38.914712"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.915873"], ["updated_at", "2020-05-05 18:33:38.915873"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas nemo harum nisi?"], ["description", "Repudiandae sapiente deserunt sed."], ["date", "2020-05-06 18:33:38.917722"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.918693"], ["updated_at", "2020-05-05 18:33:38.918693"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores labore iste dolore?"], ["description", "Maiores voluptatem occaecati ipsum."], ["date", "2020-05-06 18:33:38.919930"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.920698"], ["updated_at", "2020-05-05 18:33:38.920698"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A qui libero asperiores?"], ["description", "Numquam nulla delectus aut."], ["date", "2020-05-06 18:33:38.921877"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.922731"], ["updated_at", "2020-05-05 18:33:38.922731"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore dolores unde velit?"], ["description", "Dolores aut quisquam numquam."], ["date", "2020-05-06 18:33:38.924079"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.925080"], ["updated_at", "2020-05-05 18:33:38.925080"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim doloribus ullam totam?"], ["description", "Nihil doloremque harum velit."], ["date", "2020-05-06 18:33:38.927327"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.928999"], ["updated_at", "2020-05-05 18:33:38.928999"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates alias vel illo?"], ["description", "Deserunt sed nulla perspiciatis."], ["date", "2020-05-06 18:33:38.930475"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.931399"], ["updated_at", "2020-05-05 18:33:38.931399"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut quia quos recusandae?"], ["description", "Perspiciatis officiis iure harum."], ["date", "2020-05-06 18:33:38.932578"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.933281"], ["updated_at", "2020-05-05 18:33:38.933281"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et fugit aliquam alias?"], ["description", "Illo et rerum nihil."], ["date", "2020-05-06 18:33:38.934341"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.935014"], ["updated_at", "2020-05-05 18:33:38.935014"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae et consequatur magnam?"], ["description", "Et eaque reiciendis ut."], ["date", "2020-05-06 18:33:38.936725"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.937461"], ["updated_at", "2020-05-05 18:33:38.937461"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat sint harum eius?"], ["description", "Vitae tempora autem qui."], ["date", "2020-05-06 18:33:38.938733"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.939510"], ["updated_at", "2020-05-05 18:33:38.939510"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptate dolores asperiores quod?"], ["description", "Ut rerum repellat quia."], ["date", "2020-05-06 18:33:38.941387"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.942438"], ["updated_at", "2020-05-05 18:33:38.942438"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis odio facilis a?"], ["description", "Doloribus dolorem assumenda aspernatur."], ["date", "2020-05-06 18:33:38.944010"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.945003"], ["updated_at", "2020-05-05 18:33:38.945003"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos beatae eum est?"], ["description", "Laboriosam amet dolorem magnam."], ["date", "2020-05-06 18:33:38.946315"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.947043"], ["updated_at", "2020-05-05 18:33:38.947043"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit nostrum quam quod?"], ["description", "Voluptate temporibus facilis rerum."], ["date", "2020-05-06 18:33:38.948283"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.949090"], ["updated_at", "2020-05-05 18:33:38.949090"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum et exercitationem perspiciatis?"], ["description", "Ratione ab vel molestiae."], ["date", "2020-05-06 18:33:38.950230"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.950928"], ["updated_at", "2020-05-05 18:33:38.950928"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In tempora non error?"], ["description", "Nihil sed expedita maxime."], ["date", "2020-05-06 18:33:38.952110"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.952783"], ["updated_at", "2020-05-05 18:33:38.952783"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto distinctio aut est?"], ["description", "Nobis qui et autem."], ["date", "2020-05-06 18:33:38.953952"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.954645"], ["updated_at", "2020-05-05 18:33:38.954645"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae consequuntur quaerat earum?"], ["description", "Quis qui laboriosam est."], ["date", "2020-05-06 18:33:38.955829"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.956524"], ["updated_at", "2020-05-05 18:33:38.956524"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat sed quo et?"], ["description", "Ipsa quia modi autem."], ["date", "2020-05-06 18:33:38.957667"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.958351"], ["updated_at", "2020-05-05 18:33:38.958351"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:33:38 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.69ms) +Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.2ms | Allocations: 1057) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Everett Schmeler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$iJEW7VnzsvL6PTtpa04Yhevr5X8FElVV1F.lq2LGr4U9adXuBZKuW"], ["created_at", "2020-05-05 18:33:38.975283"], ["updated_at", "2020-05-05 18:33:38.975283"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Eius qui quod non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:38.978199"], ["updated_at", "2020-05-05 18:33:38.978199"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati non voluptas voluptas?"], ["description", "Unde eveniet voluptatum ipsam."], ["date", "2020-05-06 18:33:38.979902"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.981207"], ["updated_at", "2020-05-05 18:33:38.981207"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque repellendus qui iusto?"], ["description", "Sit temporibus vel voluptates."], ["date", "2020-05-06 18:33:38.982818"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.983798"], ["updated_at", "2020-05-05 18:33:38.983798"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis qui a porro?"], ["description", "Et totam illum officia."], ["date", "2020-05-06 18:33:38.985374"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.987065"], ["updated_at", "2020-05-05 18:33:38.987065"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur libero consequatur perspiciatis?"], ["description", "Omnis iste veniam quisquam."], ["date", "2020-05-06 18:33:38.989202"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.990228"], ["updated_at", "2020-05-05 18:33:38.990228"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi atque temporibus qui?"], ["description", "Quae est voluptatem veniam."], ["date", "2020-05-06 18:33:38.991500"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.992247"], ["updated_at", "2020-05-05 18:33:38.992247"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem exercitationem est beatae?"], ["description", "Autem explicabo et repellat."], ["date", "2020-05-06 18:33:38.993418"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.994134"], ["updated_at", "2020-05-05 18:33:38.994134"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat ut possimus qui?"], ["description", "Dolorem voluptatem quibusdam distinctio."], ["date", "2020-05-06 18:33:38.995371"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.996052"], ["updated_at", "2020-05-05 18:33:38.996052"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius aspernatur voluptatem laborum?"], ["description", "Vero delectus assumenda culpa."], ["date", "2020-05-06 18:33:38.997184"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.997914"], ["updated_at", "2020-05-05 18:33:38.997914"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quia maiores et?"], ["description", "Modi occaecati distinctio rerum."], ["date", "2020-05-06 18:33:38.999048"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:38.999810"], ["updated_at", "2020-05-05 18:33:38.999810"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed animi debitis aut?"], ["description", "Ullam rerum tenetur ipsum."], ["date", "2020-05-06 18:33:39.002175"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.003351"], ["updated_at", "2020-05-05 18:33:39.003351"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non est ad nemo?"], ["description", "Autem pariatur sint fugiat."], ["date", "2020-05-06 18:33:39.004906"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.005769"], ["updated_at", "2020-05-05 18:33:39.005769"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum pariatur fuga cum?"], ["description", "Natus accusantium autem vero."], ["date", "2020-05-06 18:33:39.007457"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.008609"], ["updated_at", "2020-05-05 18:33:39.008609"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet ut qui rem?"], ["description", "Porro qui est molestiae."], ["date", "2020-05-06 18:33:39.010932"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.013089"], ["updated_at", "2020-05-05 18:33:39.013089"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut labore velit velit?"], ["description", "Quas nulla commodi eum."], ["date", "2020-05-06 18:33:39.014798"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.015766"], ["updated_at", "2020-05-05 18:33:39.015766"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae ut quisquam hic?"], ["description", "Repellendus aspernatur voluptas itaque."], ["date", "2020-05-06 18:33:39.017094"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.017814"], ["updated_at", "2020-05-05 18:33:39.017814"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Delectus id at quam?"], ["description", "Animi sit voluptates adipisci."], ["date", "2020-05-06 18:33:39.019116"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.019855"], ["updated_at", "2020-05-05 18:33:39.019855"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quia consequatur nesciunt?"], ["description", "Sequi veritatis sit eligendi."], ["date", "2020-05-06 18:33:39.021214"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.022328"], ["updated_at", "2020-05-05 18:33:39.022328"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt autem facere odit?"], ["description", "Voluptas omnis ut voluptatibus."], ["date", "2020-05-06 18:33:39.023865"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.024719"], ["updated_at", "2020-05-05 18:33:39.024719"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere quia atque est?"], ["description", "Accusamus id consequatur corporis."], ["date", "2020-05-06 18:33:39.025980"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.026683"], ["updated_at", "2020-05-05 18:33:39.026683"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea sunt sapiente cupiditate?"], ["description", "Ex hic in ut."], ["date", "2020-05-06 18:33:39.027867"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.028663"], ["updated_at", "2020-05-05 18:33:39.028663"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:33:39 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 884) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Delorse Welch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fVIM6yHyOuVn3nAlgm89XuUlTS268lG.BYqgJSo6tfI.Mc818P/4q"], ["created_at", "2020-05-05 18:33:39.044354"], ["updated_at", "2020-05-05 18:33:39.044354"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "at"], ["description", "Expedita sunt aut vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.047180"], ["updated_at", "2020-05-05 18:33:39.047180"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis commodi natus aperiam?"], ["description", "Et et quo amet."], ["date", "2020-05-06 18:33:39.048881"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.049846"], ["updated_at", "2020-05-05 18:33:39.049846"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum eos sequi ea?"], ["description", "Officiis ipsa nesciunt et."], ["date", "2020-05-06 18:33:39.051196"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.051928"], ["updated_at", "2020-05-05 18:33:39.051928"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque magnam deserunt velit?"], ["description", "Blanditiis vel autem nihil."], ["date", "2020-05-06 18:33:39.053100"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.053812"], ["updated_at", "2020-05-05 18:33:39.053812"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio ullam inventore fugiat?"], ["description", "Nostrum ut unde et."], ["date", "2020-05-06 18:33:39.054925"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.055593"], ["updated_at", "2020-05-05 18:33:39.055593"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At officiis ipsa laboriosam?"], ["description", "Deleniti aut et ut."], ["date", "2020-05-06 18:33:39.056695"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.057334"], ["updated_at", "2020-05-05 18:33:39.057334"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente eius rerum beatae?"], ["description", "Beatae quo impedit vitae."], ["date", "2020-05-06 18:33:39.058540"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.059300"], ["updated_at", "2020-05-05 18:33:39.059300"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas rerum illum odio?"], ["description", "Suscipit illum ipsum dolor."], ["date", "2020-05-06 18:33:39.060371"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.061044"], ["updated_at", "2020-05-05 18:33:39.061044"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore quisquam reprehenderit veniam?"], ["description", "Nulla dolor similique neque."], ["date", "2020-05-06 18:33:39.062144"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.062930"], ["updated_at", "2020-05-05 18:33:39.062930"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum nemo et unde?"], ["description", "Nam ex qui nostrum."], ["date", "2020-05-06 18:33:39.064410"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.065888"], ["updated_at", "2020-05-05 18:33:39.065888"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas veritatis ullam reprehenderit?"], ["description", "Est dolorem non iure."], ["date", "2020-05-06 18:33:39.067922"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.068818"], ["updated_at", "2020-05-05 18:33:39.068818"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate dolor rerum voluptas?"], ["description", "Aspernatur enim aliquam recusandae."], ["date", "2020-05-06 18:33:39.070170"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.070887"], ["updated_at", "2020-05-05 18:33:39.070887"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Hic molestiae veritatis voluptatem?"], ["description", "Accusamus nisi deserunt dicta."], ["date", "2020-05-06 18:33:39.072031"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.072808"], ["updated_at", "2020-05-05 18:33:39.072808"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat velit temporibus ut?"], ["description", "Consequatur impedit ut aut."], ["date", "2020-05-06 18:33:39.073956"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.074634"], ["updated_at", "2020-05-05 18:33:39.074634"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa vero unde alias?"], ["description", "Perspiciatis et numquam impedit."], ["date", "2020-05-06 18:33:39.075846"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.076517"], ["updated_at", "2020-05-05 18:33:39.076517"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque adipisci voluptatem dolore?"], ["description", "Maiores iure ea in."], ["date", "2020-05-06 18:33:39.077972"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.078974"], ["updated_at", "2020-05-05 18:33:39.078974"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Delectus iste commodi reiciendis?"], ["description", "Ullam sit tempora in."], ["date", "2020-05-06 18:33:39.080296"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.081157"], ["updated_at", "2020-05-05 18:33:39.081157"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia ipsa at in?"], ["description", "Itaque eum eius alias."], ["date", "2020-05-06 18:33:39.082710"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.083544"], ["updated_at", "2020-05-05 18:33:39.083544"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam rem soluta autem?"], ["description", "Veniam consequuntur dicta ullam."], ["date", "2020-05-06 18:33:39.084886"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.085584"], ["updated_at", "2020-05-05 18:33:39.085584"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus ipsam nihil nesciunt?"], ["description", "Commodi aut ex accusamus."], ["date", "2020-05-06 18:33:39.086689"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.087348"], ["updated_at", "2020-05-05 18:33:39.087348"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus consequatur illum tempore?"], ["description", "Nihil eaque nisi asperiores."], ["date", "2020-05-06 18:33:39.088506"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.089306"], ["updated_at", "2020-05-05 18:33:39.089306"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:33:39 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["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: 867) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nichelle Goodwin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Wumj349p2A4milsCdc4r2.wP/3xftvD7iMPZiOTv3mXoEX6L6XXYO"], ["created_at", "2020-05-05 18:33:39.105276"], ["updated_at", "2020-05-05 18:33:39.105276"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quas"], ["description", "Autem voluptatem ut dolore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.108860"], ["updated_at", "2020-05-05 18:33:39.108860"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Hic nobis asperiores aut?"], ["description", "Alias autem dolorem modi."], ["date", "2020-05-06 18:33:39.110490"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.111437"], ["updated_at", "2020-05-05 18:33:39.111437"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo iusto reiciendis harum?"], ["description", "Delectus voluptatum beatae omnis."], ["date", "2020-05-06 18:33:39.112748"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.113497"], ["updated_at", "2020-05-05 18:33:39.113497"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequuntur quis natus ea?"], ["description", "Neque eos repudiandae mollitia."], ["date", "2020-05-06 18:33:39.114717"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.115520"], ["updated_at", "2020-05-05 18:33:39.115520"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure maiores libero magni?"], ["description", "Qui quaerat autem dolorem."], ["date", "2020-05-06 18:33:39.116637"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.117324"], ["updated_at", "2020-05-05 18:33:39.117324"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error qui voluptatem porro?"], ["description", "Debitis dolores est dicta."], ["date", "2020-05-06 18:33:39.118444"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.119145"], ["updated_at", "2020-05-05 18:33:39.119145"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id quo sed totam?"], ["description", "Quaerat corrupti sunt harum."], ["date", "2020-05-06 18:33:39.120299"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.121017"], ["updated_at", "2020-05-05 18:33:39.121017"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit explicabo enim delectus?"], ["description", "Sequi consequatur enim quia."], ["date", "2020-05-06 18:33:39.122333"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.123167"], ["updated_at", "2020-05-05 18:33:39.123167"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta voluptatem itaque doloribus?"], ["description", "Voluptas iusto impedit quod."], ["date", "2020-05-06 18:33:39.124714"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.126160"], ["updated_at", "2020-05-05 18:33:39.126160"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel dicta sunt esse?"], ["description", "Eaque iusto aperiam autem."], ["date", "2020-05-06 18:33:39.127608"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.128438"], ["updated_at", "2020-05-05 18:33:39.128438"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum ipsum mollitia quae?"], ["description", "Quam dolores veniam doloremque."], ["date", "2020-05-06 18:33:39.130354"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.131155"], ["updated_at", "2020-05-05 18:33:39.131155"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi voluptas nostrum placeat?"], ["description", "Autem consequatur repellendus nihil."], ["date", "2020-05-06 18:33:39.132388"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.133058"], ["updated_at", "2020-05-05 18:33:39.133058"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet voluptatem adipisci aut?"], ["description", "Nulla autem maxime dolorem."], ["date", "2020-05-06 18:33:39.134196"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.134895"], ["updated_at", "2020-05-05 18:33:39.134895"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit reprehenderit ullam cupiditate?"], ["description", "Corrupti laborum et sunt."], ["date", "2020-05-06 18:33:39.136108"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.136806"], ["updated_at", "2020-05-05 18:33:39.136806"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente iusto impedit omnis?"], ["description", "Non dolorum facere sit."], ["date", "2020-05-06 18:33:39.138029"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.138780"], ["updated_at", "2020-05-05 18:33:39.138780"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit et aut suscipit?"], ["description", "Qui voluptate totam doloribus."], ["date", "2020-05-06 18:33:39.139997"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.140667"], ["updated_at", "2020-05-05 18:33:39.140667"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam dicta pariatur laudantium?"], ["description", "Eligendi inventore iure rerum."], ["date", "2020-05-06 18:33:39.141863"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.142613"], ["updated_at", "2020-05-05 18:33:39.142613"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo sunt debitis maxime?"], ["description", "Porro qui odit molestias."], ["date", "2020-05-06 18:33:39.143789"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.144467"], ["updated_at", "2020-05-05 18:33:39.144467"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis neque et temporibus?"], ["description", "Eius cumque unde est."], ["date", "2020-05-06 18:33:39.145766"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.146485"], ["updated_at", "2020-05-05 18:33:39.146485"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat qui consequatur tenetur?"], ["description", "In reprehenderit nemo molestiae."], ["date", "2020-05-06 18:33:39.147680"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.148419"], ["updated_at", "2020-05-05 18:33:39.148419"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam repellendus similique temporibus?"], ["description", "Laboriosam minus deleniti ut."], ["date", "2020-05-06 18:33:39.149591"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.150374"], ["updated_at", "2020-05-05 18:33:39.150374"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:33:39 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"title"=>"Visit Narnia", "description"=>"false", "date"=>"2020-05-06 15:33:39 -0300", "link"=>"https://zoom.com/fakelink", "meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Visit Narnia"], ["description", "false"], ["date", "2020-05-06 18:33:39"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.169919"], ["updated_at", "2020-05-05 18:33:39.169919"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.52ms) +Completed 201 Created in 5ms (Views: 1.1ms | ActiveRecord: 0.5ms | Allocations: 1699) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ron Hermiston I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2dzu9gOSmMgRn32UJk7dDuDBZo9N5pA/ZaHxM87WWKav71VahhhBu"], ["created_at", "2020-05-05 18:33:39.183761"], ["updated_at", "2020-05-05 18:33:39.183761"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusamus"], ["description", "Occaecati laborum dolorem harum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.187312"], ["updated_at", "2020-05-05 18:33:39.187312"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta officiis omnis commodi?"], ["description", "In sint voluptas natus."], ["date", "2020-05-06 18:33:39.189119"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.190187"], ["updated_at", "2020-05-05 18:33:39.190187"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque temporibus nihil ex?"], ["description", "Eum id dicta laudantium."], ["date", "2020-05-06 18:33:39.191559"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.192320"], ["updated_at", "2020-05-05 18:33:39.192320"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae quia asperiores adipisci?"], ["description", "Ratione explicabo aut tempora."], ["date", "2020-05-06 18:33:39.193531"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.194186"], ["updated_at", "2020-05-05 18:33:39.194186"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit ut perspiciatis eligendi?"], ["description", "Consequatur atque ullam minus."], ["date", "2020-05-06 18:33:39.195284"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.195999"], ["updated_at", "2020-05-05 18:33:39.195999"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem et eos quo?"], ["description", "Sint ratione est nostrum."], ["date", "2020-05-06 18:33:39.197286"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.198069"], ["updated_at", "2020-05-05 18:33:39.198069"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In dolorem soluta et?"], ["description", "Reprehenderit dolorum et assumenda."], ["date", "2020-05-06 18:33:39.199369"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.200136"], ["updated_at", "2020-05-05 18:33:39.200136"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto quia temporibus fugiat?"], ["description", "Enim labore voluptas veritatis."], ["date", "2020-05-06 18:33:39.201289"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.202247"], ["updated_at", "2020-05-05 18:33:39.202247"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus quos id praesentium?"], ["description", "Mollitia qui quaerat ut."], ["date", "2020-05-06 18:33:39.203877"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.205183"], ["updated_at", "2020-05-05 18:33:39.205183"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit dolorem temporibus libero?"], ["description", "Sint expedita assumenda et."], ["date", "2020-05-06 18:33:39.206642"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.207429"], ["updated_at", "2020-05-05 18:33:39.207429"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit dolorum dolores dolores?"], ["description", "Dolores et omnis asperiores."], ["date", "2020-05-06 18:33:39.209484"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.210332"], ["updated_at", "2020-05-05 18:33:39.210332"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae error rerum dolorem?"], ["description", "Eaque nemo minima sed."], ["date", "2020-05-06 18:33:39.211675"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.212393"], ["updated_at", "2020-05-05 18:33:39.212393"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate qui dicta quae?"], ["description", "Ut facere ipsum dolorem."], ["date", "2020-05-06 18:33:39.213655"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.214406"], ["updated_at", "2020-05-05 18:33:39.214406"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi laborum a possimus?"], ["description", "Illo accusantium qui autem."], ["date", "2020-05-06 18:33:39.215567"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.216235"], ["updated_at", "2020-05-05 18:33:39.216235"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugiat in accusamus sunt?"], ["description", "Perspiciatis ratione ea eveniet."], ["date", "2020-05-06 18:33:39.217397"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.218088"], ["updated_at", "2020-05-05 18:33:39.218088"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo quod ut dolorem?"], ["description", "Maxime quam asperiores sit."], ["date", "2020-05-06 18:33:39.219289"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.220009"], ["updated_at", "2020-05-05 18:33:39.220009"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum consequatur consectetur quia?"], ["description", "In quaerat asperiores pariatur."], ["date", "2020-05-06 18:33:39.221170"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.221991"], ["updated_at", "2020-05-05 18:33:39.221991"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae expedita libero accusantium?"], ["description", "Cum beatae adipisci rem."], ["date", "2020-05-06 18:33:39.223339"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.224138"], ["updated_at", "2020-05-05 18:33:39.224138"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate minus nam maxime?"], ["description", "Commodi quos vero non."], ["date", "2020-05-06 18:33:39.225402"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.226100"], ["updated_at", "2020-05-05 18:33:39.226100"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem deserunt est aspernatur?"], ["description", "Cum commodi sed sint."], ["date", "2020-05-06 18:33:39.227237"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.227936"], ["updated_at", "2020-05-05 18:33:39.227936"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi officia unde recusandae?"], ["description", "Libero earum perferendis perspiciatis."], ["date", "2020-05-06 18:33:39.229236"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.229979"], ["updated_at", "2020-05-05 18:33:39.229979"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:33:39 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 3010) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dave Gorczany"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Tk9VOXwD9huDFBoInYmIo.j0.eJG9k8/Vu9Q5tFzsQk366rhRoB7K"], ["created_at", "2020-05-05 18:33:39.251371"], ["updated_at", "2020-05-05 18:33:39.251371"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatum"], ["description", "Est nobis qui perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.254212"], ["updated_at", "2020-05-05 18:33:39.254212"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui nobis officiis atque?"], ["description", "Saepe dolor eum sint."], ["date", "2020-05-06 18:33:39.255734"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.256661"], ["updated_at", "2020-05-05 18:33:39.256661"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur molestias adipisci dolores?"], ["description", "Omnis facere ipsum vel."], ["date", "2020-05-06 18:33:39.257972"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.258804"], ["updated_at", "2020-05-05 18:33:39.258804"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Delectus aut aut ut?"], ["description", "Voluptatem blanditiis quod fugit."], ["date", "2020-05-06 18:33:39.260101"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.261088"], ["updated_at", "2020-05-05 18:33:39.261088"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id quia sit commodi?"], ["description", "Molestiae nam perferendis molestiae."], ["date", "2020-05-06 18:33:39.262627"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.263588"], ["updated_at", "2020-05-05 18:33:39.263588"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod autem ipsa numquam?"], ["description", "Eligendi incidunt dolores ad."], ["date", "2020-05-06 18:33:39.265103"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.266598"], ["updated_at", "2020-05-05 18:33:39.266598"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum commodi numquam molestiae?"], ["description", "Velit dolorum dolorem sint."], ["date", "2020-05-06 18:33:39.268038"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.268840"], ["updated_at", "2020-05-05 18:33:39.268840"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt explicabo voluptatibus est?"], ["description", "Error sed voluptatem maiores."], ["date", "2020-05-06 18:33:39.270082"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.270808"], ["updated_at", "2020-05-05 18:33:39.270808"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae saepe beatae corporis?"], ["description", "Et aut nam et."], ["date", "2020-05-06 18:33:39.271940"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.272616"], ["updated_at", "2020-05-05 18:33:39.272616"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores et aut maxime?"], ["description", "Ea soluta maxime qui."], ["date", "2020-05-06 18:33:39.273948"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.274816"], ["updated_at", "2020-05-05 18:33:39.274816"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere maxime nobis veritatis?"], ["description", "Beatae suscipit quis explicabo."], ["date", "2020-05-06 18:33:39.276857"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.277727"], ["updated_at", "2020-05-05 18:33:39.277727"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam fuga aliquam dolore?"], ["description", "Recusandae quo rerum asperiores."], ["date", "2020-05-06 18:33:39.279041"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.279781"], ["updated_at", "2020-05-05 18:33:39.279781"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni corrupti voluptatibus est?"], ["description", "Sed corrupti modi fugiat."], ["date", "2020-05-06 18:33:39.281009"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.281723"], ["updated_at", "2020-05-05 18:33:39.281723"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae hic eos adipisci?"], ["description", "Quisquam aspernatur eos error."], ["date", "2020-05-06 18:33:39.283206"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.284161"], ["updated_at", "2020-05-05 18:33:39.284161"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur delectus quae quis?"], ["description", "Vel consequatur similique itaque."], ["date", "2020-05-06 18:33:39.285637"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.286411"], ["updated_at", "2020-05-05 18:33:39.286411"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus sed minus quaerat?"], ["description", "Est et rerum dolor."], ["date", "2020-05-06 18:33:39.287736"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.288539"], ["updated_at", "2020-05-05 18:33:39.288539"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit deserunt nihil vitae?"], ["description", "Rerum unde temporibus ipsa."], ["date", "2020-05-06 18:33:39.289812"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.290521"], ["updated_at", "2020-05-05 18:33:39.290521"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta quasi itaque et?"], ["description", "Dolorem nemo aliquam non."], ["date", "2020-05-06 18:33:39.291695"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.292387"], ["updated_at", "2020-05-05 18:33:39.292387"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta iste laudantium enim?"], ["description", "Optio cupiditate est at."], ["date", "2020-05-06 18:33:39.293547"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.294199"], ["updated_at", "2020-05-05 18:33:39.294199"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui quos vel doloribus?"], ["description", "Qui dicta nihil minima."], ["date", "2020-05-06 18:33:39.295380"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.296046"], ["updated_at", "2020-05-05 18:33:39.296046"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reiciendis ex ullam quasi?"], ["description", "Exercitationem neque voluptatem iure."], ["date", "2020-05-06 18:33:39.297154"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.297919"], ["updated_at", "2020-05-05 18:33:39.297919"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:33:39 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 2707) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Magaly Champlin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7EuSR78EHL3B1kG669cGFu11MIqbaokSFOGL8ryBaC3RDQT6B/aM."], ["created_at", "2020-05-05 18:33:39.330104"], ["updated_at", "2020-05-05 18:33:39.330104"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Cum fuga rerum culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.333049"], ["updated_at", "2020-05-05 18:33:39.333049"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores et quam ut?"], ["description", "Minus nihil corrupti et."], ["date", "2020-05-06 18:33:39.334548"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.335490"], ["updated_at", "2020-05-05 18:33:39.335490"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores et ipsam amet?"], ["description", "Voluptas ut non numquam."], ["date", "2020-05-06 18:33:39.336873"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.337589"], ["updated_at", "2020-05-05 18:33:39.337589"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis nam tempora omnis?"], ["description", "Necessitatibus repellat asperiores sed."], ["date", "2020-05-06 18:33:39.338897"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.339638"], ["updated_at", "2020-05-05 18:33:39.339638"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut enim commodi alias?"], ["description", "Voluptatem ut porro natus."], ["date", "2020-05-06 18:33:39.340881"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.341559"], ["updated_at", "2020-05-05 18:33:39.341559"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et voluptate aut nesciunt?"], ["description", "Unde quaerat labore consectetur."], ["date", "2020-05-06 18:33:39.342754"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.343560"], ["updated_at", "2020-05-05 18:33:39.343560"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi alias asperiores beatae?"], ["description", "Similique assumenda temporibus ut."], ["date", "2020-05-06 18:33:39.344944"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.346035"], ["updated_at", "2020-05-05 18:33:39.346035"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta corporis iste magnam?"], ["description", "Autem nisi at excepturi."], ["date", "2020-05-06 18:33:39.348588"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.350085"], ["updated_at", "2020-05-05 18:33:39.350085"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias quo vitae ut?"], ["description", "Repudiandae provident at vel."], ["date", "2020-05-06 18:33:39.351675"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.353194"], ["updated_at", "2020-05-05 18:33:39.353194"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim minima ex maiores?"], ["description", "Non sit dolorum eum."], ["date", "2020-05-06 18:33:39.355476"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.356860"], ["updated_at", "2020-05-05 18:33:39.356860"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A eum eos dolor?"], ["description", "Vitae ut natus eum."], ["date", "2020-05-06 18:33:39.360309"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.361902"], ["updated_at", "2020-05-05 18:33:39.361902"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et beatae sint odio?"], ["description", "Qui consequatur fugiat ea."], ["date", "2020-05-06 18:33:39.364782"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.366462"], ["updated_at", "2020-05-05 18:33:39.366462"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti amet dolorem aut?"], ["description", "Adipisci tempora aut officiis."], ["date", "2020-05-06 18:33:39.369304"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.370816"], ["updated_at", "2020-05-05 18:33:39.370816"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui vitae iure ut?"], ["description", "Tempora nisi veniam ullam."], ["date", "2020-05-06 18:33:39.373361"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.374862"], ["updated_at", "2020-05-05 18:33:39.374862"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente quia fugiat recusandae?"], ["description", "Enim rerum qui quo."], ["date", "2020-05-06 18:33:39.377216"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.378767"], ["updated_at", "2020-05-05 18:33:39.378767"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Hic aperiam non et?"], ["description", "Libero vel enim assumenda."], ["date", "2020-05-06 18:33:39.381202"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.382269"], ["updated_at", "2020-05-05 18:33:39.382269"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus voluptatum pariatur qui?"], ["description", "Totam temporibus tenetur quidem."], ["date", "2020-05-06 18:33:39.383595"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.384372"], ["updated_at", "2020-05-05 18:33:39.384372"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem ad quia iusto?"], ["description", "Fugiat eaque ut voluptatem."], ["date", "2020-05-06 18:33:39.385708"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.386410"], ["updated_at", "2020-05-05 18:33:39.386410"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit consequuntur dolor dolores?"], ["description", "Ut quibusdam esse voluptatem."], ["date", "2020-05-06 18:33:39.387863"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.388666"], ["updated_at", "2020-05-05 18:33:39.388666"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi odio est quis?"], ["description", "Cumque id nobis illum."], ["date", "2020-05-06 18:33:39.390044"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.390753"], ["updated_at", "2020-05-05 18:33:39.390753"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis nesciunt voluptatem ad?"], ["description", "Quibusdam quia qui laborum."], ["date", "2020-05-06 18:33:39.392022"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.392706"], ["updated_at", "2020-05-05 18:33:39.392706"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:33:39 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.2ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:33:39.397174"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1379) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Siu Rice"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Op0ZnR8HllVlXmPjwM4zF.nXdfp/3JVqYUp/.ofl0DPM9eplYjuX."], ["created_at", "2020-05-05 18:33:39.410890"], ["updated_at", "2020-05-05 18:33:39.410890"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Quibusdam porro et aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.414158"], ["updated_at", "2020-05-05 18:33:39.414158"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi veritatis modi et?"], ["description", "Voluptatem velit quo magni."], ["date", "2020-05-06 18:33:39.415610"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.416560"], ["updated_at", "2020-05-05 18:33:39.416560"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum alias eum iusto?"], ["description", "Distinctio quo ut optio."], ["date", "2020-05-06 18:33:39.417985"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.418758"], ["updated_at", "2020-05-05 18:33:39.418758"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi facere ex consequatur?"], ["description", "Saepe distinctio qui enim."], ["date", "2020-05-06 18:33:39.420120"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.420860"], ["updated_at", "2020-05-05 18:33:39.420860"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit odit aut est?"], ["description", "Veniam excepturi sed aut."], ["date", "2020-05-06 18:33:39.422079"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.422810"], ["updated_at", "2020-05-05 18:33:39.422810"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est doloremque et consequatur?"], ["description", "Non autem architecto sed."], ["date", "2020-05-06 18:33:39.424363"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.425390"], ["updated_at", "2020-05-05 18:33:39.425390"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis debitis repellat eius?"], ["description", "Alias praesentium laboriosam cum."], ["date", "2020-05-06 18:33:39.427016"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.428668"], ["updated_at", "2020-05-05 18:33:39.428668"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab non omnis distinctio?"], ["description", "Eos possimus eius eligendi."], ["date", "2020-05-06 18:33:39.430265"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.431097"], ["updated_at", "2020-05-05 18:33:39.431097"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus ut quas est?"], ["description", "Tempora ratione quam dolor."], ["date", "2020-05-06 18:33:39.432295"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.433006"], ["updated_at", "2020-05-05 18:33:39.433006"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa sint cumque id?"], ["description", "Magnam voluptatem qui numquam."], ["date", "2020-05-06 18:33:39.434293"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.435011"], ["updated_at", "2020-05-05 18:33:39.435011"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit fugit officiis accusantium?"], ["description", "Et maxime voluptate voluptatem."], ["date", "2020-05-06 18:33:39.436819"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.437620"], ["updated_at", "2020-05-05 18:33:39.437620"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta labore qui non?"], ["description", "Maiores dolores accusantium perferendis."], ["date", "2020-05-06 18:33:39.439076"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.439815"], ["updated_at", "2020-05-05 18:33:39.439815"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At odit sunt quibusdam?"], ["description", "Reprehenderit qui qui repellendus."], ["date", "2020-05-06 18:33:39.441029"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.441758"], ["updated_at", "2020-05-05 18:33:39.441758"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia sunt nesciunt ipsum?"], ["description", "Voluptas minus nemo vel."], ["date", "2020-05-06 18:33:39.443016"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.444053"], ["updated_at", "2020-05-05 18:33:39.444053"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque distinctio possimus voluptatum?"], ["description", "Impedit non sed occaecati."], ["date", "2020-05-06 18:33:39.445697"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.446618"], ["updated_at", "2020-05-05 18:33:39.446618"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minus et aut dolorem?"], ["description", "Non molestias sunt aperiam."], ["date", "2020-05-06 18:33:39.447985"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.448750"], ["updated_at", "2020-05-05 18:33:39.448750"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam ullam non porro?"], ["description", "Dolorem similique est nemo."], ["date", "2020-05-06 18:33:39.449946"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.450651"], ["updated_at", "2020-05-05 18:33:39.450651"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur est ea harum?"], ["description", "Distinctio maxime debitis temporibus."], ["date", "2020-05-06 18:33:39.451877"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.452535"], ["updated_at", "2020-05-05 18:33:39.452535"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore sunt aperiam occaecati?"], ["description", "Dolor possimus dolor numquam."], ["date", "2020-05-06 18:33:39.453896"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.454677"], ["updated_at", "2020-05-05 18:33:39.454677"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem quia omnis officiis?"], ["description", "Deleniti natus commodi eaque."], ["date", "2020-05-06 18:33:39.455912"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.456621"], ["updated_at", "2020-05-05 18:33:39.456621"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas quas laborum suscipit?"], ["description", "Molestiae vero quia qui."], ["date", "2020-05-06 18:33:39.457808"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.458528"], ["updated_at", "2020-05-05 18:33:39.458528"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:33:39 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.2ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:33:39.463230"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 4ms (ActiveRecord: 0.5ms | Allocations: 1321) + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (54.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (2.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Dorothea Nicolas"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nhd6C0p6tv14t4vWNW49aO8cqrXXLrckAFE1G1IX/CF7i.vp13B72"], ["created_at", "2020-05-05 18:33:39.530458"], ["updated_at", "2020-05-05 18:33:39.530458"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Ut sit porro rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.537709"], ["updated_at", "2020-05-05 18:33:39.537709"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non unde perspiciatis accusamus?"], ["description", "Corrupti iusto id non."], ["date", "2020-05-06 18:33:39.541816"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.544266"], ["updated_at", "2020-05-05 18:33:39.544266"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque maxime blanditiis maiores?"], ["description", "Temporibus similique fugiat enim."], ["date", "2020-05-06 18:33:39.548773"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.551311"], ["updated_at", "2020-05-05 18:33:39.551311"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt doloribus ad sed?"], ["description", "Molestiae ut quisquam praesentium."], ["date", "2020-05-06 18:33:39.555726"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.558181"], ["updated_at", "2020-05-05 18:33:39.558181"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed quis rerum et?"], ["description", "Minus et dolores asperiores."], ["date", "2020-05-06 18:33:39.561887"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.563017"], ["updated_at", "2020-05-05 18:33:39.563017"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi cum sit quae?"], ["description", "Cum unde eum natus."], ["date", "2020-05-06 18:33:39.564968"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.566249"], ["updated_at", "2020-05-05 18:33:39.566249"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem id qui in?"], ["description", "Est aliquam qui corrupti."], ["date", "2020-05-06 18:33:39.568245"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.569389"], ["updated_at", "2020-05-05 18:33:39.569389"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem quia commodi ea?"], ["description", "Aliquam maiores alias ipsa."], ["date", "2020-05-06 18:33:39.570983"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.571954"], ["updated_at", "2020-05-05 18:33:39.571954"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem asperiores consequatur illo?"], ["description", "Est debitis repellat consequatur."], ["date", "2020-05-06 18:33:39.573428"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.574373"], ["updated_at", "2020-05-05 18:33:39.574373"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor in omnis accusantium?"], ["description", "Vel ut incidunt quam."], ["date", "2020-05-06 18:33:39.575916"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.576867"], ["updated_at", "2020-05-05 18:33:39.576867"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione maxime voluptas numquam?"], ["description", "Voluptatibus numquam voluptas commodi."], ["date", "2020-05-06 18:33:39.579471"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.580610"], ["updated_at", "2020-05-05 18:33:39.580610"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequuntur nihil sed nam?"], ["description", "Omnis velit nulla quis."], ["date", "2020-05-06 18:33:39.582420"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.583430"], ["updated_at", "2020-05-05 18:33:39.583430"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur officia quia et?"], ["description", "Soluta earum delectus blanditiis."], ["date", "2020-05-06 18:33:39.585699"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.586969"], ["updated_at", "2020-05-05 18:33:39.586969"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum incidunt aliquam quo?"], ["description", "Enim omnis officia tempora."], ["date", "2020-05-06 18:33:39.588960"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.590052"], ["updated_at", "2020-05-05 18:33:39.590052"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit pariatur sunt culpa?"], ["description", "Ad quo asperiores voluptatum."], ["date", "2020-05-06 18:33:39.591726"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.592531"], ["updated_at", "2020-05-05 18:33:39.592531"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti impedit et et?"], ["description", "Vero vel dolorum vel."], ["date", "2020-05-06 18:33:39.593706"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.594409"], ["updated_at", "2020-05-05 18:33:39.594409"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia est voluptatum molestiae?"], ["description", "Similique commodi vel architecto."], ["date", "2020-05-06 18:33:39.595711"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.596461"], ["updated_at", "2020-05-05 18:33:39.596461"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia est tempore culpa?"], ["description", "Et voluptatibus quaerat inventore."], ["date", "2020-05-06 18:33:39.597640"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.598358"], ["updated_at", "2020-05-05 18:33:39.598358"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus quis velit fuga?"], ["description", "Id dolore ut veritatis."], ["date", "2020-05-06 18:33:39.599660"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.600406"], ["updated_at", "2020-05-05 18:33:39.600406"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi omnis facilis dolorem?"], ["description", "Sit exercitationem qui assumenda."], ["date", "2020-05-06 18:33:39.601579"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.602286"], ["updated_at", "2020-05-05 18:33:39.602286"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim expedita odit consectetur?"], ["description", "Temporibus velit et corporis."], ["date", "2020-05-06 18:33:39.603468"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.604195"], ["updated_at", "2020-05-05 18:33:39.604195"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:33:39 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (30.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rosio Rodriguez"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$igGkpGkSshFMHmvuPvjp9e5LxCWl6o79YGn1N0hhLnS.Wvx/t2sAu"], ["created_at", "2020-05-05 18:33:39.663654"], ["updated_at", "2020-05-05 18:33:39.663654"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "itaque"], ["description", "Molestias sint consectetur nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.671498"], ["updated_at", "2020-05-05 18:33:39.671498"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo libero possimus veritatis?"], ["description", "Illo non quam perspiciatis."], ["date", "2020-05-06 18:33:39.674256"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.675351"], ["updated_at", "2020-05-05 18:33:39.675351"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam quam hic odio?"], ["description", "Dolorum totam autem cum."], ["date", "2020-05-06 18:33:39.677014"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.677863"], ["updated_at", "2020-05-05 18:33:39.677863"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident occaecati et dolor?"], ["description", "Laborum sit omnis fuga."], ["date", "2020-05-06 18:33:39.679604"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.680608"], ["updated_at", "2020-05-05 18:33:39.680608"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum adipisci facere dicta?"], ["description", "Reiciendis autem quia sequi."], ["date", "2020-05-06 18:33:39.682049"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.682744"], ["updated_at", "2020-05-05 18:33:39.682744"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab id illo aut?"], ["description", "Consectetur voluptas temporibus alias."], ["date", "2020-05-06 18:33:39.684087"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.684968"], ["updated_at", "2020-05-05 18:33:39.684968"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Culpa nihil est laudantium?"], ["description", "Recusandae qui sapiente enim."], ["date", "2020-05-06 18:33:39.687150"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.688703"], ["updated_at", "2020-05-05 18:33:39.688703"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus ut voluptatem et?"], ["description", "Quia ex reprehenderit sit."], ["date", "2020-05-06 18:33:39.690990"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.692086"], ["updated_at", "2020-05-05 18:33:39.692086"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut optio labore animi?"], ["description", "Et illum suscipit ut."], ["date", "2020-05-06 18:33:39.693566"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.694419"], ["updated_at", "2020-05-05 18:33:39.694419"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam quo quas dolorem?"], ["description", "Ut minus culpa et."], ["date", "2020-05-06 18:33:39.695672"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.696357"], ["updated_at", "2020-05-05 18:33:39.696357"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium esse facilis qui?"], ["description", "Recusandae dolores molestias quasi."], ["date", "2020-05-06 18:33:39.698290"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.699103"], ["updated_at", "2020-05-05 18:33:39.699103"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut possimus velit voluptas?"], ["description", "Minus ipsam nesciunt sed."], ["date", "2020-05-06 18:33:39.700584"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.701455"], ["updated_at", "2020-05-05 18:33:39.701455"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis voluptate ut exercitationem?"], ["description", "Repellat voluptatem ut placeat."], ["date", "2020-05-06 18:33:39.702827"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.703530"], ["updated_at", "2020-05-05 18:33:39.703530"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio repellat voluptatibus quae?"], ["description", "Voluptatem tenetur quasi necessitatibus."], ["date", "2020-05-06 18:33:39.705197"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.706927"], ["updated_at", "2020-05-05 18:33:39.706927"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et et quas nihil?"], ["description", "Et quisquam eius deleniti."], ["date", "2020-05-06 18:33:39.708692"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.709714"], ["updated_at", "2020-05-05 18:33:39.709714"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est magnam voluptatem quod?"], ["description", "Molestias eos minus id."], ["date", "2020-05-06 18:33:39.711240"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.712125"], ["updated_at", "2020-05-05 18:33:39.712125"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id quam numquam omnis?"], ["description", "Reiciendis nulla vitae quibusdam."], ["date", "2020-05-06 18:33:39.713590"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.714471"], ["updated_at", "2020-05-05 18:33:39.714471"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt voluptates aliquam sequi?"], ["description", "Sequi enim accusamus in."], ["date", "2020-05-06 18:33:39.715842"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.716549"], ["updated_at", "2020-05-05 18:33:39.716549"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non tenetur autem voluptas?"], ["description", "Qui sed magnam ut."], ["date", "2020-05-06 18:33:39.717764"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.718507"], ["updated_at", "2020-05-05 18:33:39.718507"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed tenetur dolorem quo?"], ["description", "Sed possimus beatae voluptates."], ["date", "2020-05-06 18:33:39.719721"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.720395"], ["updated_at", "2020-05-05 18:33:39.720395"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti ut amet facilis?"], ["description", "Reiciendis nihil aliquam voluptatem."], ["date", "2020-05-06 18:33:39.721659"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.722420"], ["updated_at", "2020-05-05 18:33:39.722420"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:33:39 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 3ms (Views: 0.4ms | ActiveRecord: 0.3ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Darryl Lang"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4yc1ewN6epGU.GpyQs5JEuFvhlu9JH2Phg07/.t9k/wup2cVCyi9y"], ["created_at", "2020-05-05 18:33:39.739693"], ["updated_at", "2020-05-05 18:33:39.739693"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Laborum ut consectetur at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.742811"], ["updated_at", "2020-05-05 18:33:39.742811"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta et a ut?"], ["description", "Et modi laborum quisquam."], ["date", "2020-05-06 18:33:39.744520"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.746494"], ["updated_at", "2020-05-05 18:33:39.746494"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut nisi sequi sapiente?"], ["description", "Et cum provident aut."], ["date", "2020-05-06 18:33:39.748207"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.749249"], ["updated_at", "2020-05-05 18:33:39.749249"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit dolores id repudiandae?"], ["description", "Omnis et voluptate et."], ["date", "2020-05-06 18:33:39.750883"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.752591"], ["updated_at", "2020-05-05 18:33:39.752591"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea quod aliquid quia?"], ["description", "Id omnis quam aut."], ["date", "2020-05-06 18:33:39.755085"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.756038"], ["updated_at", "2020-05-05 18:33:39.756038"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id voluptatem quam voluptates?"], ["description", "Beatae facilis esse et."], ["date", "2020-05-06 18:33:39.757281"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.757962"], ["updated_at", "2020-05-05 18:33:39.757962"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim eum in quisquam?"], ["description", "Non corrupti repellat reprehenderit."], ["date", "2020-05-06 18:33:39.759136"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.759846"], ["updated_at", "2020-05-05 18:33:39.759846"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam magnam delectus voluptatum?"], ["description", "Quia maiores est qui."], ["date", "2020-05-06 18:33:39.760996"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.761673"], ["updated_at", "2020-05-05 18:33:39.761673"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est corrupti alias quos?"], ["description", "Velit quidem perspiciatis quod."], ["date", "2020-05-06 18:33:39.762771"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.763476"], ["updated_at", "2020-05-05 18:33:39.763476"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore dolore corporis animi?"], ["description", "Occaecati a voluptas pariatur."], ["date", "2020-05-06 18:33:39.764623"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.765419"], ["updated_at", "2020-05-05 18:33:39.765419"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae numquam ullam alias?"], ["description", "Sunt et aperiam nam."], ["date", "2020-05-06 18:33:39.768426"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.770191"], ["updated_at", "2020-05-05 18:33:39.770191"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas in autem rem?"], ["description", "Sint dolorum deserunt excepturi."], ["date", "2020-05-06 18:33:39.772481"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.773477"], ["updated_at", "2020-05-05 18:33:39.773477"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea excepturi ut qui?"], ["description", "Libero harum neque minima."], ["date", "2020-05-06 18:33:39.774906"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.775585"], ["updated_at", "2020-05-05 18:33:39.775585"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse omnis ut inventore?"], ["description", "Itaque perferendis cupiditate facilis."], ["date", "2020-05-06 18:33:39.776774"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.777465"], ["updated_at", "2020-05-05 18:33:39.777465"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum tenetur consequatur corrupti?"], ["description", "Ut qui iste autem."], ["date", "2020-05-06 18:33:39.778829"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.779610"], ["updated_at", "2020-05-05 18:33:39.779610"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim culpa vel est?"], ["description", "Asperiores aut architecto et."], ["date", "2020-05-06 18:33:39.780832"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.781504"], ["updated_at", "2020-05-05 18:33:39.781504"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui provident dolores impedit?"], ["description", "Possimus dolore quia perferendis."], ["date", "2020-05-06 18:33:39.782754"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.783470"], ["updated_at", "2020-05-05 18:33:39.783470"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt laborum distinctio qui?"], ["description", "Perspiciatis mollitia ratione amet."], ["date", "2020-05-06 18:33:39.784615"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.785383"], ["updated_at", "2020-05-05 18:33:39.785383"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea et esse debitis?"], ["description", "Expedita dolor nisi quam."], ["date", "2020-05-06 18:33:39.787296"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.788654"], ["updated_at", "2020-05-05 18:33:39.788654"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi culpa voluptatum cupiditate?"], ["description", "Quam suscipit quia vitae."], ["date", "2020-05-06 18:33:39.790204"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.791027"], ["updated_at", "2020-05-05 18:33:39.791027"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis tenetur sit ad?"], ["description", "Dolores nemo necessitatibus quos."], ["date", "2020-05-06 18:33:39.792229"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:33:39.792918"], ["updated_at", "2020-05-05 18:33:39.792918"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:33:39 -0300 +Processing by MeetingsController#destroy as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + UserMeeting Load (0.1ms) SELECT "user_meetings".* FROM "user_meetings" WHERE "user_meetings"."meeting_id" = ? [["meeting_id", 1]] + Meeting Destroy (0.1ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 6ms (ActiveRecord: 0.7ms | Allocations: 2317) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (18.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aspernatur"], ["description", "Sint quaerat perspiciatis molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.823651"], ["updated_at", "2020-05-05 18:33:39.823651"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Id reiciendis sapiente enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.827298"], ["updated_at", "2020-05-05 18:33:39.827298"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Omnis quam enim commodi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.829733"], ["updated_at", "2020-05-05 18:33:39.829733"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Velit odit incidunt libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.831977"], ["updated_at", "2020-05-05 18:33:39.831977"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Quae voluptatem aut sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.833315"], ["updated_at", "2020-05-05 18:33:39.833315"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Hic aut nisi molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.834590"], ["updated_at", "2020-05-05 18:33:39.834590"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perspiciatis"], ["description", "Voluptas inventore tempore nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.835857"], ["updated_at", "2020-05-05 18:33:39.835857"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "mollitia"], ["description", "Rem mollitia eos voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.837199"], ["updated_at", "2020-05-05 18:33:39.837199"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "itaque"], ["description", "Quidem aliquam rerum ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.838448"], ["updated_at", "2020-05-05 18:33:39.838448"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eius"], ["description", "Officia voluptas cum enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.839765"], ["updated_at", "2020-05-05 18:33:39.839765"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lauren Bogisich PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BNkn.z0hYvvgwU8JEjM95e5nUtopmBGSloznRylZKybeD/27wcHT6"], ["created_at", "2020-05-05 18:33:39.842403"], ["updated_at", "2020-05-05 18:33:39.842403"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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.6ms | ActiveRecord: 0.3ms | Allocations: 2915) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "commodi"], ["description", "Non aut provident ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.862460"], ["updated_at", "2020-05-05 18:33:39.862460"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magni"], ["description", "Eos repellat accusantium suscipit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.865318"], ["updated_at", "2020-05-05 18:33:39.865318"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minus"], ["description", "Quia omnis eligendi consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.867415"], ["updated_at", "2020-05-05 18:33:39.867415"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Quis atque possimus fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.869392"], ["updated_at", "2020-05-05 18:33:39.869392"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Omnis aut est beatae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.871830"], ["updated_at", "2020-05-05 18:33:39.871830"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Deleniti nisi beatae sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.873314"], ["updated_at", "2020-05-05 18:33:39.873314"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "in"], ["description", "Fugit tempore deserunt commodi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.874632"], ["updated_at", "2020-05-05 18:33:39.874632"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quasi"], ["description", "Voluptas temporibus minus eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.875863"], ["updated_at", "2020-05-05 18:33:39.875863"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "at"], ["description", "Sequi minima voluptates quas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.877159"], ["updated_at", "2020-05-05 18:33:39.877159"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veritatis"], ["description", "Voluptas perferendis possimus et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.878875"], ["updated_at", "2020-05-05 18:33:39.878875"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Theda Wilderman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xW5BdjIcyF87vAugMcldcOLwwViz20ktmO1qDQwJg18IPNUIvsU3O"], ["created_at", "2020-05-05 18:33:39.881540"], ["updated_at", "2020-05-05 18:33:39.881540"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.06ms) +Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.1ms | Allocations: 2844) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (4.8ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "distinctio"], ["description", "Neque dolores aut laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.899733"], ["updated_at", "2020-05-05 18:33:39.899733"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Eaque ipsum ut corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.906645"], ["updated_at", "2020-05-05 18:33:39.906645"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "praesentium"], ["description", "Qui aut sed facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.908669"], ["updated_at", "2020-05-05 18:33:39.908669"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Nulla quasi laboriosam possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.910966"], ["updated_at", "2020-05-05 18:33:39.910966"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Harum quam ex deleniti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.912967"], ["updated_at", "2020-05-05 18:33:39.912967"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nostrum"], ["description", "Voluptas molestiae ut ullam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.914319"], ["updated_at", "2020-05-05 18:33:39.914319"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Dolorem quisquam id doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.915575"], ["updated_at", "2020-05-05 18:33:39.915575"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perspiciatis"], ["description", "Saepe sint explicabo quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.916933"], ["updated_at", "2020-05-05 18:33:39.916933"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Illum assumenda eum mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.918308"], ["updated_at", "2020-05-05 18:33:39.918308"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Ducimus ut at similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.919654"], ["updated_at", "2020-05-05 18:33:39.919654"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Michal Becker"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HUPk45R4uiKoDBy8qmdZSuMQx9EFV98DTjz8E7f9/oI9RU4MwJvq6"], ["created_at", "2020-05-05 18:33:39.922196"], ["updated_at", "2020-05-05 18:33:39.922196"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.36ms) +Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.1ms | Allocations: 2844) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:33:39 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.48ms) +Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.2ms | Allocations: 1242) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minima"], ["description", "Consequatur totam amet mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.945544"], ["updated_at", "2020-05-05 18:33:39.945544"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Dolores non voluptatibus error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.949535"], ["updated_at", "2020-05-05 18:33:39.949535"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusantium"], ["description", "Accusantium consectetur optio natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.952033"], ["updated_at", "2020-05-05 18:33:39.952033"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cumque"], ["description", "Voluptas non aut expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.953658"], ["updated_at", "2020-05-05 18:33:39.953658"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quos"], ["description", "Harum ad et magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.954952"], ["updated_at", "2020-05-05 18:33:39.954952"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Modi sed soluta est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.956210"], ["updated_at", "2020-05-05 18:33:39.956210"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Fugiat hic et provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.957507"], ["updated_at", "2020-05-05 18:33:39.957507"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "mollitia"], ["description", "Asperiores qui ea iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.958902"], ["updated_at", "2020-05-05 18:33:39.958902"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Quos doloremque et est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.960277"], ["updated_at", "2020-05-05 18:33:39.960277"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dicta"], ["description", "Accusamus sunt ut sapiente."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.961546"], ["updated_at", "2020-05-05 18:33:39.961546"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kathrine Frami DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CI.8.dCLBw8B1vNu4PEwWemOsnl.AcTVFw9s3MUn8O3JtBy1x4j0W"], ["created_at", "2020-05-05 18:33:39.964211"], ["updated_at", "2020-05-05 18:33:39.964211"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.52ms) +Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:33:39 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.11ms) +Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.2ms | Allocations: 1240) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deleniti"], ["description", "Quasi voluptas eum fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.986778"], ["updated_at", "2020-05-05 18:33:39.986778"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veritatis"], ["description", "In natus consequuntur eius."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.990438"], ["updated_at", "2020-05-05 18:33:39.990438"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tenetur"], ["description", "Ut minima quia sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.991891"], ["updated_at", "2020-05-05 18:33:39.991891"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "explicabo"], ["description", "Dolorem voluptates aut quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.993195"], ["updated_at", "2020-05-05 18:33:39.993195"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "beatae"], ["description", "Vel voluptatem reiciendis corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.994474"], ["updated_at", "2020-05-05 18:33:39.994474"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nisi"], ["description", "Et quibusdam eos dolore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.995747"], ["updated_at", "2020-05-05 18:33:39.995747"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officiis"], ["description", "Sed necessitatibus distinctio excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.996972"], ["updated_at", "2020-05-05 18:33:39.996972"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "incidunt"], ["description", "Vitae dolorum explicabo harum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.998255"], ["updated_at", "2020-05-05 18:33:39.998255"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatum"], ["description", "Laborum ipsam rerum sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:39.999519"], ["updated_at", "2020-05-05 18:33:39.999519"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsam"], ["description", "Deleniti qui placeat occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.000952"], ["updated_at", "2020-05-05 18:33:40.000952"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Derick Schroeder"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XS8FbQHQIML2JCJ0pINYX.BOlxZaRejFY2oFTM0xQwJLxhUftcFUC"], ["created_at", "2020-05-05 18:33:40.003838"], ["updated_at", "2020-05-05 18:33:40.003838"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.57ms) +Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms | Allocations: 2845) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deleniti"], ["description", "Maiores sunt veritatis corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.024720"], ["updated_at", "2020-05-05 18:33:40.024720"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "harum"], ["description", "Quia et soluta culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.028592"], ["updated_at", "2020-05-05 18:33:40.028592"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cumque"], ["description", "Id similique voluptatibus hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.030506"], ["updated_at", "2020-05-05 18:33:40.030506"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "itaque"], ["description", "Assumenda ullam et non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.032724"], ["updated_at", "2020-05-05 18:33:40.032724"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deserunt"], ["description", "Culpa architecto necessitatibus molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.034182"], ["updated_at", "2020-05-05 18:33:40.034182"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eveniet"], ["description", "Inventore neque dicta iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.035554"], ["updated_at", "2020-05-05 18:33:40.035554"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repudiandae"], ["description", "Assumenda ut iusto voluptatum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.036867"], ["updated_at", "2020-05-05 18:33:40.036867"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facilis"], ["description", "Corporis quod occaecati dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.038225"], ["updated_at", "2020-05-05 18:33:40.038225"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quibusdam"], ["description", "Eligendi ad sunt atque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.039533"], ["updated_at", "2020-05-05 18:33:40.039533"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Enim molestias molestiae sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.040786"], ["updated_at", "2020-05-05 18:33:40.040786"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mina Brekke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.NMY4rPk8YR3misT.NaW9Oc5AtTmU74KzUiz.FHJHhzjOZSKL6Np2"], ["created_at", "2020-05-05 18:33:40.043355"], ["updated_at", "2020-05-05 18:33:40.043355"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (16.57ms) +Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.2ms | Allocations: 2845) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 512) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (16.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perspiciatis"], ["description", "Nobis omnis omnis enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.089447"], ["updated_at", "2020-05-05 18:33:40.089447"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "provident"], ["description", "Nihil nulla dicta doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.092377"], ["updated_at", "2020-05-05 18:33:40.092377"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "a"], ["description", "Voluptas rem repellat in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.093808"], ["updated_at", "2020-05-05 18:33:40.093808"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ratione"], ["description", "Dolore in nulla labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.095216"], ["updated_at", "2020-05-05 18:33:40.095216"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Ipsam praesentium minima blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.096590"], ["updated_at", "2020-05-05 18:33:40.096590"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Ut blanditiis ea sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.097910"], ["updated_at", "2020-05-05 18:33:40.097910"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quod"], ["description", "Ipsam voluptatibus voluptate illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.099242"], ["updated_at", "2020-05-05 18:33:40.099242"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Voluptates aliquid ex voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.100673"], ["updated_at", "2020-05-05 18:33:40.100673"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deserunt"], ["description", "Nam nesciunt voluptate minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.101974"], ["updated_at", "2020-05-05 18:33:40.101974"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Ad ipsum dolorum quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.103355"], ["updated_at", "2020-05-05 18:33:40.103355"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Travis Abshire"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/GGAvWCkhwJ79DSAu4mUvO7fUxOzEg/L3BssrAPP.QzSC2KY5WFoi"], ["created_at", "2020-05-05 18:33:40.105959"], ["updated_at", "2020-05-05 18:33:40.105959"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.57ms) +Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:33: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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:33:40.130764"], ["updated_at", "2020-05-05 18:33:40.130764"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.64ms) +Completed 201 Created in 22ms (Views: 1.1ms | ActiveRecord: 1.1ms | Allocations: 6207) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Sit non dolor quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.148086"], ["updated_at", "2020-05-05 18:33:40.148086"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quidem"], ["description", "Voluptatem nobis ipsum veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.151538"], ["updated_at", "2020-05-05 18:33:40.151538"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Ipsa voluptas est voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.153054"], ["updated_at", "2020-05-05 18:33:40.153054"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dignissimos"], ["description", "Ducimus placeat amet minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.154281"], ["updated_at", "2020-05-05 18:33:40.154281"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Asperiores et facilis porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.155535"], ["updated_at", "2020-05-05 18:33:40.155535"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Magnam amet consequatur culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.156899"], ["updated_at", "2020-05-05 18:33:40.156899"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Autem ut possimus minus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.158222"], ["updated_at", "2020-05-05 18:33:40.158222"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsam"], ["description", "Voluptate quibusdam aut impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.159478"], ["updated_at", "2020-05-05 18:33:40.159478"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "numquam"], ["description", "Et doloremque nesciunt et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.160784"], ["updated_at", "2020-05-05 18:33:40.160784"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Reprehenderit rem sunt necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.162049"], ["updated_at", "2020-05-05 18:33:40.162049"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mark Ullrich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$br5Qp.BbrcqSkKhGi2rkne7P6CzhRCNy0tjMqFW.C4idd4YTh/nJq"], ["created_at", "2020-05-05 18:33:40.164528"], ["updated_at", "2020-05-05 18:33:40.164528"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.96ms) +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 15:33: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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:33:40.176695"], ["updated_at", "2020-05-05 18:33:40.176695"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.5ms) +Completed 201 Created in 5ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 2251) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ducimus"], ["description", "Itaque id fugiat natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.191394"], ["updated_at", "2020-05-05 18:33:40.191394"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Et sunt repudiandae dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.194256"], ["updated_at", "2020-05-05 18:33:40.194256"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Incidunt numquam et eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.195632"], ["updated_at", "2020-05-05 18:33:40.195632"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quasi"], ["description", "Cumque natus placeat molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.197181"], ["updated_at", "2020-05-05 18:33:40.197181"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorum"], ["description", "Culpa enim officiis dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.198661"], ["updated_at", "2020-05-05 18:33:40.198661"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nemo"], ["description", "Explicabo perspiciatis quo itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.200065"], ["updated_at", "2020-05-05 18:33:40.200065"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Est corporis architecto veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.201367"], ["updated_at", "2020-05-05 18:33:40.201367"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatum"], ["description", "Ratione quibusdam iste aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.202638"], ["updated_at", "2020-05-05 18:33:40.202638"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Ut corporis blanditiis quisquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.203952"], ["updated_at", "2020-05-05 18:33:40.203952"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Rerum quos provident inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.205275"], ["updated_at", "2020-05-05 18:33:40.205275"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Ellis Bernhard"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kr3XrpmmIJacsP1FnNXkcO6yxhpj691L1ioB10qN/RSCWt8Q3xaPy"], ["created_at", "2020-05-05 18:33:40.208165"], ["updated_at", "2020-05-05 18:33:40.208165"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.14ms) +Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms | Allocations: 2845) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 4006) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "A ut sit hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.237162"], ["updated_at", "2020-05-05 18:33:40.237162"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Vel ea excepturi quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.240034"], ["updated_at", "2020-05-05 18:33:40.240034"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Aut ut soluta est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.241509"], ["updated_at", "2020-05-05 18:33:40.241509"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "harum"], ["description", "Repellat est autem blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.242840"], ["updated_at", "2020-05-05 18:33:40.242840"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Et accusamus aut nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.244153"], ["updated_at", "2020-05-05 18:33:40.244153"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sequi"], ["description", "Sed rem ab saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.245434"], ["updated_at", "2020-05-05 18:33:40.245434"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "possimus"], ["description", "Corporis itaque officia sapiente."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.246798"], ["updated_at", "2020-05-05 18:33:40.246798"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "Neque consequatur nesciunt omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.248385"], ["updated_at", "2020-05-05 18:33:40.248385"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Beatae quo dolores ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.250186"], ["updated_at", "2020-05-05 18:33:40.250186"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Sed cumque voluptas neque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.252297"], ["updated_at", "2020-05-05 18:33:40.252297"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Walker Quigley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6SGqOYeghLHWoF6ulY/scO2oHZbodX8mbD15fzMdjwRgoUIKNTQSK"], ["created_at", "2020-05-05 18:33:40.255087"], ["updated_at", "2020-05-05 18:33:40.255087"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.11ms) +Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2840) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.1ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 3697) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugit"], ["description", "Debitis sed aliquam reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.278231"], ["updated_at", "2020-05-05 18:33:40.278231"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "a"], ["description", "Nam eum qui facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.281643"], ["updated_at", "2020-05-05 18:33:40.281643"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magnam"], ["description", "Aperiam aliquam tenetur saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.283360"], ["updated_at", "2020-05-05 18:33:40.283360"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Quasi perspiciatis sunt adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.284648"], ["updated_at", "2020-05-05 18:33:40.284648"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nobis"], ["description", "Dolore suscipit iste eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.285971"], ["updated_at", "2020-05-05 18:33:40.285971"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Delectus est quod ipsa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.287265"], ["updated_at", "2020-05-05 18:33:40.287265"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloremque"], ["description", "Quibusdam ad aut repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.289044"], ["updated_at", "2020-05-05 18:33:40.289044"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "libero"], ["description", "Molestiae at sunt qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.290896"], ["updated_at", "2020-05-05 18:33:40.290896"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Similique quas dolores deleniti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.292852"], ["updated_at", "2020-05-05 18:33:40.292852"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Modi quidem commodi dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.294175"], ["updated_at", "2020-05-05 18:33:40.294175"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sari Gutkowski III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$wf9kPLm9roFfExBRYiNzL./22/0jO2TWTFkd65a1VIFUpli0p3wiW"], ["created_at", "2020-05-05 18:33:40.296757"], ["updated_at", "2020-05-05 18:33:40.296757"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.21ms) +Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2843) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.2ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:33:40.306912"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1044) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Ex molestiae aut error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.317312"], ["updated_at", "2020-05-05 18:33:40.317312"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magnam"], ["description", "Ad debitis suscipit aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.320222"], ["updated_at", "2020-05-05 18:33:40.320222"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "harum"], ["description", "Sit cupiditate molestiae ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.321761"], ["updated_at", "2020-05-05 18:33:40.321761"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aspernatur"], ["description", "Tempore quasi at velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.323054"], ["updated_at", "2020-05-05 18:33:40.323054"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "asperiores"], ["description", "Non neque animi quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.324340"], ["updated_at", "2020-05-05 18:33:40.324340"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Voluptatem expedita nihil alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.325644"], ["updated_at", "2020-05-05 18:33:40.325644"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusamus"], ["description", "Tenetur eius ea debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.326981"], ["updated_at", "2020-05-05 18:33:40.326981"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "exercitationem"], ["description", "Excepturi quia ex consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.328329"], ["updated_at", "2020-05-05 18:33:40.328329"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sequi"], ["description", "Unde sapiente cum placeat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.329952"], ["updated_at", "2020-05-05 18:33:40.329952"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "inventore"], ["description", "Nemo quaerat eius voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.331747"], ["updated_at", "2020-05-05 18:33:40.331747"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bettyann Gusikowski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oL3qQu5ipMnn5vAGY26YNelJ3TRHH5apAVhP/SXU3P1AdV6BZieR6"], ["created_at", "2020-05-05 18:33:40.335132"], ["updated_at", "2020-05-05 18:33:40.335132"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.1ms) +Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms | Allocations: 2843) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:33:40.344936"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 998) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Nesciunt minima aliquid quas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.354435"], ["updated_at", "2020-05-05 18:33:40.354435"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Consequatur necessitatibus et consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.357439"], ["updated_at", "2020-05-05 18:33:40.357439"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "possimus"], ["description", "Quia et optio repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.359742"], ["updated_at", "2020-05-05 18:33:40.359742"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minima"], ["description", "Perspiciatis consequuntur tempore non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.361043"], ["updated_at", "2020-05-05 18:33:40.361043"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laboriosam"], ["description", "Soluta dolore est beatae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.362365"], ["updated_at", "2020-05-05 18:33:40.362365"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatibus"], ["description", "Autem dolore suscipit repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.363789"], ["updated_at", "2020-05-05 18:33:40.363789"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Eligendi expedita quasi quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.365185"], ["updated_at", "2020-05-05 18:33:40.365185"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Et omnis et quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.366444"], ["updated_at", "2020-05-05 18:33:40.366444"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Vel consequatur repellat in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.367889"], ["updated_at", "2020-05-05 18:33:40.367889"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorum"], ["description", "Laborum nesciunt omnis quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:33:40.369480"], ["updated_at", "2020-05-05 18:33:40.369480"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Desirae Kunde"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WUDpRJ6NLERdSa0dRsegvO5Q2uWZ6g6FhGndgLKPQn7wYn/0GWSP."], ["created_at", "2020-05-05 18:33:40.372731"], ["updated_at", "2020-05-05 18:33:40.372731"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.3ms | ActiveRecord: 0.1ms | Allocations: 2844) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1205) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Lucienne Schowalter"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0Q29AuAeDvy56nQEFXWWH.UxiWlAg2l8wr47nGY.0FBOYQ9irdr72"], ["created_at", "2020-05-05 18:33:40.394762"], ["updated_at", "2020-05-05 18:33:40.394762"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Reggie Torp"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FCht6SryvhR1pWAZMqEBtOBcj8XJHiUUD3T2ptHGnmE1psJjNeXqK"], ["created_at", "2020-05-05 18:33:40.399309"], ["updated_at", "2020-05-05 18:33:40.399309"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Antoine Boyle"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$c.IzoFmIY8SvnM43CXY34..slK3AudBENEPtisgGuTib5JzADa8Wu"], ["created_at", "2020-05-05 18:33:40.402271"], ["updated_at", "2020-05-05 18:33:40.402271"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Kellie Champlin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$cv6u7CmuB7zMyDr9Kdi4A.R34AGxCRaPQa7yID.KAPZ8CB.zEjek."], ["created_at", "2020-05-05 18:33:40.404806"], ["updated_at", "2020-05-05 18:33:40.404806"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alfonzo Bauch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$X2nhC8.Sza7rFew5huWskeuRViuADS6WovXgtb8U8oziubncI7bKm"], ["created_at", "2020-05-05 18:33:40.407311"], ["updated_at", "2020-05-05 18:33:40.407311"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lloyd Jakubowski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$s.N2pMxVgxlD8yBPQveyHOWXJTpOaAUPtXiKoG.jFTg6TONeN25XC"], ["created_at", "2020-05-05 18:33:40.409989"], ["updated_at", "2020-05-05 18:33:40.409989"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tobias Conroy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$05FJ/rGMdQBVTP6SjDzspecmSQIS4.gmA0Hty8MG1V1qLgJD6Yo/W"], ["created_at", "2020-05-05 18:33:40.413092"], ["updated_at", "2020-05-05 18:33:40.413092"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Foster Howe PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$flV5Ey3CNMq75uUa7a9x4egafQeQpYg1CA82ZT8vB4Vxzu9dTPXF6"], ["created_at", "2020-05-05 18:33:40.416015"], ["updated_at", "2020-05-05 18:33:40.416015"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Arnita Rempel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$czExq2yNejgLFZnpchhCweXCKPrTP0OgFDB2dwGGUYuj7BT5z8xEm"], ["created_at", "2020-05-05 18:33:40.418477"], ["updated_at", "2020-05-05 18:33:40.418477"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alfred Strosin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$doALNkiJBmG2DXHpRQe8WuhPqSwyzNnzEOmy3kWu6mJG9wEL358Dq"], ["created_at", "2020-05-05 18:33:40.420877"], ["updated_at", "2020-05-05 18:33:40.420877"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.18ms) +Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms | Allocations: 2345) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Santa Kirlin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$lQ/gk6E5GFwN1QOOXRJ0w.QhpapXXzCyU9MEqL9hPV7sIEj4gy9bu"], ["created_at", "2020-05-05 18:33:40.440201"], ["updated_at", "2020-05-05 18:33:40.440201"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tessa Oberbrunner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.XyxTG/nPh1rAqq.wguJH.6pyqry/m0jfNcWYmuR7ckhRT0Jw.9gG"], ["created_at", "2020-05-05 18:33:40.445018"], ["updated_at", "2020-05-05 18:33:40.445018"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ashli Steuber"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rWT3lTqKy9YybJRXLxGY2Oq1SLEJjpWS567..oHq/v5C8yZFGW7QC"], ["created_at", "2020-05-05 18:33:40.447847"], ["updated_at", "2020-05-05 18:33:40.447847"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Reinaldo Williamson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/ju5o8m.BUO.2kru5m873udhukgqCqWRQP.qh4HpoexYpjZeQ3.xq"], ["created_at", "2020-05-05 18:33:40.450851"], ["updated_at", "2020-05-05 18:33:40.450851"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Tiera Stiedemann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TaJMUw3BPd/kcY2g1Mo/J.8hEDvR.CSm/lzw9jVTFe1gazk5n05E."], ["created_at", "2020-05-05 18:33:40.454323"], ["updated_at", "2020-05-05 18:33:40.454323"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marlon Schinner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gJoUtYvCxLyMytqPNFwh8ObMwE6o7JNX6DItc843LfqiP.wdMyajC"], ["created_at", "2020-05-05 18:33:40.456947"], ["updated_at", "2020-05-05 18:33:40.456947"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nick Cartwright DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5duoeWBuMlYFDE/OMvzynOD.hUuYbkSKRoniWyLiF6xZ0.A.W4yGe"], ["created_at", "2020-05-05 18:33:40.459419"], ["updated_at", "2020-05-05 18:33:40.459419"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dana Gaylord"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$lSfSdUoIq1w/CzYWxg3xl.yUnGNMNuIZaP3AVNM3J.OoayLrFm/3i"], ["created_at", "2020-05-05 18:33:40.461827"], ["updated_at", "2020-05-05 18:33:40.461827"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Thaddeus White"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7zz2KnOeDOX.o6qDF2ztRuazRiCfhDMV.dAdpvKLRIrdjJ.sXxxEK"], ["created_at", "2020-05-05 18:33:40.464482"], ["updated_at", "2020-05-05 18:33:40.464482"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Omer Weber"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$csFSd0skdIYktNwjOSjlneuItaJjMCZlYhMaZdiqCPBQ1uLiHRthe"], ["created_at", "2020-05-05 18:33:40.466942"], ["updated_at", "2020-05-05 18:33:40.466942"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.67ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms | Allocations: 2203) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Wm Fahey MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YpQc0BZPdjXaNhXy2t9rReXgN8NQKid9oznmkNiMyNS2UMLCdCAp."], ["created_at", "2020-05-05 18:33:40.483224"], ["updated_at", "2020-05-05 18:33:40.483224"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Mitzi Leannon"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1Jf5LKEv2UG/JSFWfpkYMuM3Q3Kr9lKcDmM3.uV4.ira1ipCTjf1S"], ["created_at", "2020-05-05 18:33:40.487854"], ["updated_at", "2020-05-05 18:33:40.487854"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Edith Kerluke PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mgMOn98U.9lOCf4BhMunQ.z7lnFncn2PWQ2Ry1tJnVBt6cSaVrOQC"], ["created_at", "2020-05-05 18:33:40.490903"], ["updated_at", "2020-05-05 18:33:40.490903"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Daren Wisoky"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7zOErwhBpcBXLfkY/yhlA..H/L3AeCxkN40UkKrMClqqHn2L2tRX6"], ["created_at", "2020-05-05 18:33:40.494090"], ["updated_at", "2020-05-05 18:33:40.494090"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Vonda Flatley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Ai80BsVJ8CU7nZrKL14GcOSPQfhmmKfJyqnMTqPFr74O5XoYiIP7m"], ["created_at", "2020-05-05 18:33:40.497060"], ["updated_at", "2020-05-05 18:33:40.497060"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leroy Rowe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$cxeiwk5tXJURWgDySYgI7.KjHXAbspHdBEx3bFOsRsVcFW5IbNGDC"], ["created_at", "2020-05-05 18:33:40.499485"], ["updated_at", "2020-05-05 18:33:40.499485"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Sheldon Carter"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$wMmCe0u21Muv6eRTwhusFutooi8opDdUbCfXb4c3ZlWU5bQieb9L2"], ["created_at", "2020-05-05 18:33:40.502009"], ["updated_at", "2020-05-05 18:33:40.502009"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Milan Nienow"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TRXMm86h0QjkE3.KZFIlE.AU6UhfTKh9NuTxXYlxJWvJkpeb1N/Hm"], ["created_at", "2020-05-05 18:33:40.504392"], ["updated_at", "2020-05-05 18:33:40.504392"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Dennis Lubowitz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZoejqS.s9oC8qM238/EL9.bifnZwTr1HSksf1Jh6V9LjRBOk7Vp6G"], ["created_at", "2020-05-05 18:33:40.506763"], ["updated_at", "2020-05-05 18:33:40.506763"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Agustin Cummings"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tX5AMrmnQSF0c6nt8GFn5upbqdz2VkyvBx3F6e1OLGo6sHd5WI4Eu"], ["created_at", "2020-05-05 18:33:40.509316"], ["updated_at", "2020-05-05 18:33:40.509316"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.71ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.47ms) +Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ferne Feeney"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$MLTmMEUB0uE5TWFvjx/pRepCqDUJoz7TE9e4MOMTkhPUt0CBmNnRG"], ["created_at", "2020-05-05 18:33:40.530078"], ["updated_at", "2020-05-05 18:33:40.530078"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Verda Connelly"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SxoFC3nnwKYF5eifH0oKFOOb3j/o0Cm5EnCH6sG56WdPclk8GGo5y"], ["created_at", "2020-05-05 18:33:40.534034"], ["updated_at", "2020-05-05 18:33:40.534034"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rolando Wehner Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Oauta6XBS0XoDFPfveRNS.gZKUPMd6oMKg782esBTUh11eYt7RAb."], ["created_at", "2020-05-05 18:33:40.536676"], ["updated_at", "2020-05-05 18:33:40.536676"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mercy Schmitt"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3JNbeuRnnOs4cTKt0FO2mOp5xvfsNtkD9qvcMb9NdHWnw5KX9cgAW"], ["created_at", "2020-05-05 18:33:40.539378"], ["updated_at", "2020-05-05 18:33:40.539378"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gonzalo Reynolds"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HWYZhFLI2Rs2LWHzsmTzROwZnHKQ50jR/FAJVedRa2hMQ5/.zi4Zq"], ["created_at", "2020-05-05 18:33:40.542742"], ["updated_at", "2020-05-05 18:33:40.542742"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Errol Muller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8NDyvRFrmdDpBcSj3sxvZez8NFVlGeGwU0O2U.7d1UoOMbyFEJjKm"], ["created_at", "2020-05-05 18:33:40.546062"], ["updated_at", "2020-05-05 18:33:40.546062"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Darron Bauch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$lvi5JD67a/RcB9uMGSeztew.TnMD9VW.UeNiUF7zFGDv2VUr.fzCW"], ["created_at", "2020-05-05 18:33:40.549515"], ["updated_at", "2020-05-05 18:33:40.549515"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jenice Bode"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tZiqbB.cAQ9ieLrjgbfp3OXmo6uUh8GpGK/7b8Eewm1oKUcZ9jByu"], ["created_at", "2020-05-05 18:33:40.552427"], ["updated_at", "2020-05-05 18:33:40.552427"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Christopher Rowe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CQf33gZPWI/1troInFtLfO97uDWTnzrGgnLd48uK5y/OHPfgTLigW"], ["created_at", "2020-05-05 18:33:40.554868"], ["updated_at", "2020-05-05 18:33:40.554868"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Joline Hoppe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/2euDe3FcAJObQVXYRMnreJ7edQPPWDvXa/01PzL/jiedOimdj.xy"], ["created_at", "2020-05-05 18:33:40.557265"], ["updated_at", "2020-05-05 18:33:40.557265"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.86ms) +Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.36ms) +Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Geraldo Waters"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$C1eoNlegjt6h6OVSxjT7YuskZJqi5dLA0KXi8deGrbtlk3mf57UKa"], ["created_at", "2020-05-05 18:33:40.576978"], ["updated_at", "2020-05-05 18:33:40.576978"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Major Towne"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$P77fFSy4tggiMfnlbRdsCO4c6lOi40Y4F63im7DhdWaQm9dTjnkkC"], ["created_at", "2020-05-05 18:33:40.581301"], ["updated_at", "2020-05-05 18:33:40.581301"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Xavier Langworth"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2UvoqrAr5qaaJsGbUyYeEu3vljXdkgRyWXkDomHSKrU.neS1z.qg6"], ["created_at", "2020-05-05 18:33:40.583847"], ["updated_at", "2020-05-05 18:33:40.583847"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dewayne Flatley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$M3fxofnCvyziKhPWcZvfl.C2LFkoPwRXAq0Af4cR20aVAfkRA/mta"], ["created_at", "2020-05-05 18:33:40.586263"], ["updated_at", "2020-05-05 18:33:40.586263"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Parker Mann V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$EzfQpUTZHTX/zMjc.U8o1u15Uzw.SDLbwFYiOouUjEvsBOlQh/wQq"], ["created_at", "2020-05-05 18:33:40.588838"], ["updated_at", "2020-05-05 18:33:40.588838"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lance Moen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$B6sPKvPcvPLZIscs6KbnRua/BhUesLf2gNev/N3XWFNLJJzSUV0aq"], ["created_at", "2020-05-05 18:33:40.591407"], ["updated_at", "2020-05-05 18:33:40.591407"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Oleta Dietrich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$R.YPI1.YcgUzpzJC8dAk3.Ok6J6mgmbdNLdvxwMYA0sbHD3wl9Pt."], ["created_at", "2020-05-05 18:33:40.594437"], ["updated_at", "2020-05-05 18:33:40.594437"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gerard Mohr"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$drobZNkwFvJXa02Y1MHBS.OQdvJs/18QIwfrBzKhy1VY0oFvTApwy"], ["created_at", "2020-05-05 18:33:40.597333"], ["updated_at", "2020-05-05 18:33:40.597333"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Buck Miller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4EgejpkplNBFBNNl6d0jJOw/RWc.CLB9qsTY8dxbpG9sWjHN4LdUW"], ["created_at", "2020-05-05 18:33:40.599735"], ["updated_at", "2020-05-05 18:33:40.599735"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Issac Emmerich I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$uWCyMcONuwsU3IZpGo/AyOu7qpMwPsdyYL5czNq/jIaEKMCObtFg."], ["created_at", "2020-05-05 18:33:40.602167"], ["updated_at", "2020-05-05 18:33:40.602167"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.14ms) +Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (27.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (44.9ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "James Goldner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Eu1ayi74EUEgPnf0h8KQ4O1ljrx6tqMBzZOtfyO3if4uVaQNXOVOS"], ["created_at", "2020-05-05 18:33:40.648312"], ["updated_at", "2020-05-05 18:33:40.648312"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Archie Cummings Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nZHO..yYQJ7uwgL0BOCH3uZAwqDHeTDdIu9FUYA8vtWqCQJitHgtu"], ["created_at", "2020-05-05 18:33:40.699772"], ["updated_at", "2020-05-05 18:33:40.699772"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Patricia Rohan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Gx3NL0gsVaz9uiWllSQdYeOJhkrzWV4JvGTxIhDjAJt55FRlqX2wG"], ["created_at", "2020-05-05 18:33:40.706097"], ["updated_at", "2020-05-05 18:33:40.706097"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Omar Schaefer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7zJ1UW82HscH2SuiHP5ahuVpZPhnXb1gDPT1Fr7nwUDUTDMN2z2RK"], ["created_at", "2020-05-05 18:33:40.711942"], ["updated_at", "2020-05-05 18:33:40.711942"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Stefania O'Conner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$U6LQqQA/b9UMlII6LvbnB.ewOZ3HM9VU1uBmZxKhYMeDXc9faT1hu"], ["created_at", "2020-05-05 18:33:40.717914"], ["updated_at", "2020-05-05 18:33:40.717914"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Val Champlin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$p6TYydnjvu.lb683KPdyX.YCL/w9nwRFM4dP/he2Tky.bz.hY5Y3K"], ["created_at", "2020-05-05 18:33:40.723680"], ["updated_at", "2020-05-05 18:33:40.723680"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Osvaldo Crona"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vA9rWo4ylAQYG9.srmQNX.hYmuKFT8q62DdU6xrB9mIZj.Hz/Qf5m"], ["created_at", "2020-05-05 18:33:40.729524"], ["updated_at", "2020-05-05 18:33:40.729524"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Samual Swift"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$g.nIjQykABnV2lTfu7FONOZjXY9NO/hNGuPyYFQXWGABI3HVqRSAG"], ["created_at", "2020-05-05 18:33:40.733086"], ["updated_at", "2020-05-05 18:33:40.733086"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Diedre VonRueden I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$z3Lm54dJL86GThJAbn.Wluhox1YR3Sy6TBpkKx9S0cXcmTGEj0JEe"], ["created_at", "2020-05-05 18:33:40.735821"], ["updated_at", "2020-05-05 18:33:40.735821"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Carol Stoltenberg"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SI1XH80iFb7iuw.6ODBGJujpIn/U4.bx5yELe/hVcuYFtJtVMx16q"], ["created_at", "2020-05-05 18:33:40.738922"], ["updated_at", "2020-05-05 18:33:40.738922"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.19ms) +Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:33:40 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.0ms) rollback transaction +  (4.3ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (128.6ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (99.8ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (111.0ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (88.6ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (97.9ms) DELETE FROM "conversations"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (130.8ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (80.6ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (3.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Deangelo Hoppe III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6dIhdf/Y1LEhEWsK8GpfSuS5ppVXFTrXRiKVr.KnbXMzTFTIAiRQ2"], ["created_at", "2020-05-05 18:34:04.008986"], ["updated_at", "2020-05-05 18:34:04.008986"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aspernatur"], ["description", "Ipsum nisi consequuntur vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:04.027518"], ["updated_at", "2020-05-05 18:34:04.027518"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis corporis iusto dolorem?"], ["description", "Velit odit reiciendis aperiam."], ["date", "2020-05-06 18:34:04.049189"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.073810"], ["updated_at", "2020-05-05 18:34:04.073810"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut deleniti architecto hic?"], ["description", "Qui numquam omnis dicta."], ["date", "2020-05-06 18:34:04.075394"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.076215"], ["updated_at", "2020-05-05 18:34:04.076215"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia inventore nihil eos?"], ["description", "Dignissimos ut et esse."], ["date", "2020-05-06 18:34:04.077472"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.078203"], ["updated_at", "2020-05-05 18:34:04.078203"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae ullam nam doloremque?"], ["description", "Modi animi quia cum."], ["date", "2020-05-06 18:34:04.079495"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.080252"], ["updated_at", "2020-05-05 18:34:04.080252"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus qui aperiam itaque?"], ["description", "Excepturi aut facere sed."], ["date", "2020-05-06 18:34:04.081409"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.082079"], ["updated_at", "2020-05-05 18:34:04.082079"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias vero et tempore?"], ["description", "Ut esse rerum est."], ["date", "2020-05-06 18:34:04.083220"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.083893"], ["updated_at", "2020-05-05 18:34:04.083893"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et ut assumenda omnis?"], ["description", "Et aut nulla voluptatem."], ["date", "2020-05-06 18:34:04.085001"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.085685"], ["updated_at", "2020-05-05 18:34:04.085685"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum accusamus sapiente facilis?"], ["description", "Aliquam aut cumque id."], ["date", "2020-05-06 18:34:04.086871"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.087553"], ["updated_at", "2020-05-05 18:34:04.087553"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis consectetur molestiae voluptatibus?"], ["description", "Est molestiae fugiat vero."], ["date", "2020-05-06 18:34:04.088748"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.089488"], ["updated_at", "2020-05-05 18:34:04.089488"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et at iure consequatur?"], ["description", "Mollitia enim reiciendis qui."], ["date", "2020-05-06 18:34:04.091309"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.092058"], ["updated_at", "2020-05-05 18:34:04.092058"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et voluptas alias et?"], ["description", "Rerum expedita et quasi."], ["date", "2020-05-06 18:34:04.093273"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.093947"], ["updated_at", "2020-05-05 18:34:04.093947"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis eum assumenda reprehenderit?"], ["description", "Consequatur dolor aut ea."], ["date", "2020-05-06 18:34:04.095166"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.095850"], ["updated_at", "2020-05-05 18:34:04.095850"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel repellat dolorem et?"], ["description", "Iste incidunt enim sit."], ["date", "2020-05-06 18:34:04.097004"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.097736"], ["updated_at", "2020-05-05 18:34:04.097736"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam cum eum expedita?"], ["description", "Architecto voluptates rerum aspernatur."], ["date", "2020-05-06 18:34:04.098938"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.099739"], ["updated_at", "2020-05-05 18:34:04.099739"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum eos soluta vel?"], ["description", "Neque nemo quo ex."], ["date", "2020-05-06 18:34:04.100984"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.101766"], ["updated_at", "2020-05-05 18:34:04.101766"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis tempore ut sed?"], ["description", "Quisquam fugiat fuga ut."], ["date", "2020-05-06 18:34:04.102936"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.103683"], ["updated_at", "2020-05-05 18:34:04.103683"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis ducimus voluptates voluptatem?"], ["description", "Enim sit distinctio autem."], ["date", "2020-05-06 18:34:04.104921"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.105585"], ["updated_at", "2020-05-05 18:34:04.105585"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia culpa eveniet voluptatem?"], ["description", "Excepturi voluptates quibusdam provident."], ["date", "2020-05-06 18:34:04.106722"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.107410"], ["updated_at", "2020-05-05 18:34:04.107410"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam ut quia molestias?"], ["description", "Ab qui ut omnis."], ["date", "2020-05-06 18:34:04.108693"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.109429"], ["updated_at", "2020-05-05 18:34:04.109429"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil consequuntur dicta mollitia?"], ["description", "Sint porro unde labore."], ["date", "2020-05-06 18:34:04.110598"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.111265"], ["updated_at", "2020-05-05 18:34:04.111265"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:34:04 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (7.8ms) +Completed 200 OK in 32ms (Views: 14.8ms | ActiveRecord: 0.5ms | Allocations: 8636) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (16.0ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hiram Pacocha"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/DYx4BnF.Fze/ml4utiP9ep7knyKfrFessGw7MrIjWTldExgRBT/K"], ["created_at", "2020-05-05 18:34:04.191977"], ["updated_at", "2020-05-05 18:34:04.191977"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eaque"], ["description", "Libero non asperiores debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:04.210042"], ["updated_at", "2020-05-05 18:34:04.210042"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem dolor odio qui?"], ["description", "Doloremque reprehenderit rem eos."], ["date", "2020-05-06 18:34:04.211924"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.212895"], ["updated_at", "2020-05-05 18:34:04.212895"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus vitae repudiandae cumque?"], ["description", "Id aut quaerat est."], ["date", "2020-05-06 18:34:04.214168"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.214864"], ["updated_at", "2020-05-05 18:34:04.214864"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit omnis doloribus odio?"], ["description", "Quo quaerat sit laborum."], ["date", "2020-05-06 18:34:04.216030"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.216713"], ["updated_at", "2020-05-05 18:34:04.216713"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo aliquam debitis autem?"], ["description", "Autem sit totam veniam."], ["date", "2020-05-06 18:34:04.218078"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.218885"], ["updated_at", "2020-05-05 18:34:04.218885"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos impedit consequatur fugit?"], ["description", "Aut tempore hic occaecati."], ["date", "2020-05-06 18:34:04.220092"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.220838"], ["updated_at", "2020-05-05 18:34:04.220838"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus et sit nobis?"], ["description", "Unde alias velit perspiciatis."], ["date", "2020-05-06 18:34:04.222186"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.222885"], ["updated_at", "2020-05-05 18:34:04.222885"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro autem officiis minus?"], ["description", "Repellat ut consequatur commodi."], ["date", "2020-05-06 18:34:04.223949"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.224623"], ["updated_at", "2020-05-05 18:34:04.224623"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias enim sed non?"], ["description", "Temporibus velit sunt consequatur."], ["date", "2020-05-06 18:34:04.225700"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.226380"], ["updated_at", "2020-05-05 18:34:04.226380"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam velit quia dolores?"], ["description", "Ut omnis nam dignissimos."], ["date", "2020-05-06 18:34:04.227434"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.228197"], ["updated_at", "2020-05-05 18:34:04.228197"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia consequatur similique et?"], ["description", "Omnis dicta enim qui."], ["date", "2020-05-06 18:34:04.230152"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.231117"], ["updated_at", "2020-05-05 18:34:04.231117"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt veritatis iusto autem?"], ["description", "Ducimus qui ipsam consequatur."], ["date", "2020-05-06 18:34:04.232536"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.233257"], ["updated_at", "2020-05-05 18:34:04.233257"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint sit autem temporibus?"], ["description", "Eos sunt culpa repellendus."], ["date", "2020-05-06 18:34:04.234376"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.235052"], ["updated_at", "2020-05-05 18:34:04.235052"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et ut autem aut?"], ["description", "Fuga vel in fugiat."], ["date", "2020-05-06 18:34:04.236290"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.236980"], ["updated_at", "2020-05-05 18:34:04.236980"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga est occaecati non?"], ["description", "Distinctio vel quas cumque."], ["date", "2020-05-06 18:34:04.238119"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.238869"], ["updated_at", "2020-05-05 18:34:04.238869"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti distinctio beatae exercitationem?"], ["description", "Ex sed eligendi aspernatur."], ["date", "2020-05-06 18:34:04.240159"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.240905"], ["updated_at", "2020-05-05 18:34:04.240905"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Culpa et exercitationem soluta?"], ["description", "Labore veritatis vel quia."], ["date", "2020-05-06 18:34:04.242100"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.242789"], ["updated_at", "2020-05-05 18:34:04.242789"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et accusamus non veniam?"], ["description", "Est aut minima ut."], ["date", "2020-05-06 18:34:04.244029"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.244784"], ["updated_at", "2020-05-05 18:34:04.244784"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit ut et esse?"], ["description", "Voluptatum sit inventore est."], ["date", "2020-05-06 18:34:04.246108"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.246999"], ["updated_at", "2020-05-05 18:34:04.246999"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui illo ut natus?"], ["description", "Fugit consequuntur maxime consequatur."], ["date", "2020-05-06 18:34:04.248569"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.249423"], ["updated_at", "2020-05-05 18:34:04.249423"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur quos praesentium architecto?"], ["description", "Culpa modi ipsum voluptas."], ["date", "2020-05-06 18:34:04.250823"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.251585"], ["updated_at", "2020-05-05 18:34:04.251585"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:34:04 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (7.85ms) +Completed 200 OK in 11ms (Views: 9.7ms | ActiveRecord: 0.3ms | Allocations: 5513) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Su McCullough"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mUKuK6kj9Ub0VYAk5CsPtek5RausD7ZGxwtrBYnR1Pa9n2qFdbTaW"], ["created_at", "2020-05-05 18:34:04.279230"], ["updated_at", "2020-05-05 18:34:04.279230"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laudantium"], ["description", "Quae autem qui provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:04.283012"], ["updated_at", "2020-05-05 18:34:04.283012"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi aliquam quos sapiente?"], ["description", "Et et quo optio."], ["date", "2020-05-06 18:34:04.284626"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.285599"], ["updated_at", "2020-05-05 18:34:04.285599"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea minima ipsa modi?"], ["description", "Fugiat vero omnis suscipit."], ["date", "2020-05-06 18:34:04.286857"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.287621"], ["updated_at", "2020-05-05 18:34:04.287621"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus facilis debitis assumenda?"], ["description", "Aut quam voluptatem numquam."], ["date", "2020-05-06 18:34:04.288912"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.289692"], ["updated_at", "2020-05-05 18:34:04.289692"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et cupiditate voluptatibus voluptatem?"], ["description", "Quas quia nobis nihil."], ["date", "2020-05-06 18:34:04.290983"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.291936"], ["updated_at", "2020-05-05 18:34:04.291936"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit est sunt quis?"], ["description", "Velit eveniet fugiat in."], ["date", "2020-05-06 18:34:04.293764"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.295156"], ["updated_at", "2020-05-05 18:34:04.295156"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta nobis adipisci ea?"], ["description", "Et autem et officiis."], ["date", "2020-05-06 18:34:04.296542"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.297349"], ["updated_at", "2020-05-05 18:34:04.297349"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam quaerat aliquam iusto?"], ["description", "Pariatur cupiditate consequatur ad."], ["date", "2020-05-06 18:34:04.298685"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.299415"], ["updated_at", "2020-05-05 18:34:04.299415"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur non blanditiis dicta?"], ["description", "Excepturi aut autem vel."], ["date", "2020-05-06 18:34:04.300640"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.301336"], ["updated_at", "2020-05-05 18:34:04.301336"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis aperiam facere qui?"], ["description", "Asperiores laudantium molestiae est."], ["date", "2020-05-06 18:34:04.302526"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.303203"], ["updated_at", "2020-05-05 18:34:04.303203"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit neque eum voluptatem?"], ["description", "Voluptas deleniti veritatis delectus."], ["date", "2020-05-06 18:34:04.304969"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.305750"], ["updated_at", "2020-05-05 18:34:04.305750"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et laboriosam sequi architecto?"], ["description", "Et repellendus aperiam ut."], ["date", "2020-05-06 18:34:04.307081"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.307783"], ["updated_at", "2020-05-05 18:34:04.307783"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse ullam temporibus numquam?"], ["description", "Odit non sapiente aut."], ["date", "2020-05-06 18:34:04.309227"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.327647"], ["updated_at", "2020-05-05 18:34:04.327647"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Delectus aspernatur deserunt accusantium?"], ["description", "Nisi quod ut sint."], ["date", "2020-05-06 18:34:04.329403"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.330275"], ["updated_at", "2020-05-05 18:34:04.330275"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto cupiditate aut enim?"], ["description", "Vitae voluptatum aperiam debitis."], ["date", "2020-05-06 18:34:04.331646"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.332392"], ["updated_at", "2020-05-05 18:34:04.332392"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit culpa adipisci eum?"], ["description", "Suscipit vitae autem aut."], ["date", "2020-05-06 18:34:04.333592"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.334272"], ["updated_at", "2020-05-05 18:34:04.334272"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut et ut commodi?"], ["description", "Aut officia voluptatem distinctio."], ["date", "2020-05-06 18:34:04.335386"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.336055"], ["updated_at", "2020-05-05 18:34:04.336055"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Possimus aspernatur aut veniam?"], ["description", "Qui aspernatur est vel."], ["date", "2020-05-06 18:34:04.337221"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.337961"], ["updated_at", "2020-05-05 18:34:04.337961"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque eos officiis nam?"], ["description", "Voluptatem molestiae ut sed."], ["date", "2020-05-06 18:34:04.339203"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.339900"], ["updated_at", "2020-05-05 18:34:04.339900"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo minima id rerum?"], ["description", "Voluptatibus vel tempore officia."], ["date", "2020-05-06 18:34:04.341043"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.341739"], ["updated_at", "2020-05-05 18:34:04.341739"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur ea natus nam?"], ["description", "Est ea est atque."], ["date", "2020-05-06 18:34:04.342890"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.343594"], ["updated_at", "2020-05-05 18:34:04.343594"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:34:04 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 404 Not Found in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms | Allocations: 866) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Corinne Welch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$is3wr3GI9kfHswrLkFS5..8SJTxR/4kse.6MdapME8gbk3gw3sL5y"], ["created_at", "2020-05-05 18:34:04.361222"], ["updated_at", "2020-05-05 18:34:04.361222"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "optio"], ["description", "Ut ab molestias temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:04.364998"], ["updated_at", "2020-05-05 18:34:04.364998"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel beatae recusandae consectetur?"], ["description", "Quidem totam sed expedita."], ["date", "2020-05-06 18:34:04.366589"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.367487"], ["updated_at", "2020-05-05 18:34:04.367487"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae ducimus est modi?"], ["description", "Facilis maxime corrupti minus."], ["date", "2020-05-06 18:34:04.369007"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.369793"], ["updated_at", "2020-05-05 18:34:04.369793"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit sapiente laboriosam cumque?"], ["description", "Voluptatem et et consequuntur."], ["date", "2020-05-06 18:34:04.370996"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.371866"], ["updated_at", "2020-05-05 18:34:04.371866"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur qui sit minima?"], ["description", "Sed sed dolorum culpa."], ["date", "2020-05-06 18:34:04.373222"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.374179"], ["updated_at", "2020-05-05 18:34:04.374179"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta amet voluptas eaque?"], ["description", "Nesciunt libero quisquam qui."], ["date", "2020-05-06 18:34:04.375947"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.376840"], ["updated_at", "2020-05-05 18:34:04.376840"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus doloribus quibusdam odio?"], ["description", "Dolores eos rerum culpa."], ["date", "2020-05-06 18:34:04.377970"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.378709"], ["updated_at", "2020-05-05 18:34:04.378709"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et id voluptas ea?"], ["description", "Unde voluptatibus modi nisi."], ["date", "2020-05-06 18:34:04.379815"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.380500"], ["updated_at", "2020-05-05 18:34:04.380500"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla non consequatur in?"], ["description", "Facere placeat minus laborum."], ["date", "2020-05-06 18:34:04.381541"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.382195"], ["updated_at", "2020-05-05 18:34:04.382195"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis commodi quisquam voluptatem?"], ["description", "Rem labore quia et."], ["date", "2020-05-06 18:34:04.383354"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.384069"], ["updated_at", "2020-05-05 18:34:04.384069"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni eveniet reiciendis quia?"], ["description", "Ab voluptatem explicabo voluptas."], ["date", "2020-05-06 18:34:04.385970"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.386764"], ["updated_at", "2020-05-05 18:34:04.386764"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis rerum et ut?"], ["description", "Autem aut omnis cum."], ["date", "2020-05-06 18:34:04.388007"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.388785"], ["updated_at", "2020-05-05 18:34:04.388785"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque recusandae ipsam perferendis?"], ["description", "Sit accusantium sed qui."], ["date", "2020-05-06 18:34:04.390039"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.390782"], ["updated_at", "2020-05-05 18:34:04.390782"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita laboriosam est non?"], ["description", "Corrupti necessitatibus assumenda a."], ["date", "2020-05-06 18:34:04.392105"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.392891"], ["updated_at", "2020-05-05 18:34:04.392891"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem quod aut debitis?"], ["description", "Voluptas eaque odio id."], ["date", "2020-05-06 18:34:04.394216"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.394915"], ["updated_at", "2020-05-05 18:34:04.394915"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero cumque necessitatibus aliquam?"], ["description", "Et sunt distinctio quidem."], ["date", "2020-05-06 18:34:04.396152"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.396847"], ["updated_at", "2020-05-05 18:34:04.396847"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et similique veniam ut?"], ["description", "Molestiae molestias ea ex."], ["date", "2020-05-06 18:34:04.398140"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.398857"], ["updated_at", "2020-05-05 18:34:04.398857"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est delectus dolor repudiandae?"], ["description", "Maiores vel odit sit."], ["date", "2020-05-06 18:34:04.400119"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.400802"], ["updated_at", "2020-05-05 18:34:04.400802"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut qui illum molestias?"], ["description", "Ea cum ab autem."], ["date", "2020-05-06 18:34:04.401963"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.402635"], ["updated_at", "2020-05-05 18:34:04.402635"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut culpa vero quia?"], ["description", "Veniam et consequatur cum."], ["date", "2020-05-06 18:34:04.403784"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.404537"], ["updated_at", "2020-05-05 18:34:04.404537"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit nam voluptas a?"], ["description", "Fugit sit et possimus."], ["date", "2020-05-06 18:34:04.405738"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.406404"], ["updated_at", "2020-05-05 18:34:04.406404"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:34:04 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (40.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Aaron Ernser"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RspwqkQT1pR.zsf9HusmyegFc4FoG5vZ3kTvdpJF5vH/I/h4LNm6S"], ["created_at", "2020-05-05 18:34:04.459054"], ["updated_at", "2020-05-05 18:34:04.459054"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Nulla est rerum quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:04.463427"], ["updated_at", "2020-05-05 18:34:04.463427"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem totam ducimus eveniet?"], ["description", "Quis nisi nulla veniam."], ["date", "2020-05-06 18:34:04.466828"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.468634"], ["updated_at", "2020-05-05 18:34:04.468634"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque sit facere possimus?"], ["description", "Voluptas omnis eum illo."], ["date", "2020-05-06 18:34:04.471326"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.473122"], ["updated_at", "2020-05-05 18:34:04.473122"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla eaque unde aut?"], ["description", "Eum est eius vel."], ["date", "2020-05-06 18:34:04.475986"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.478138"], ["updated_at", "2020-05-05 18:34:04.478138"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut aut hic commodi?"], ["description", "Dolor quas autem adipisci."], ["date", "2020-05-06 18:34:04.480889"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.482364"], ["updated_at", "2020-05-05 18:34:04.482364"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus et autem eaque?"], ["description", "Laboriosam quo eum illo."], ["date", "2020-05-06 18:34:04.484747"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.486156"], ["updated_at", "2020-05-05 18:34:04.486156"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem et eum error?"], ["description", "Consequatur expedita libero corporis."], ["date", "2020-05-06 18:34:04.488472"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.489935"], ["updated_at", "2020-05-05 18:34:04.489935"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis dignissimos omnis rem?"], ["description", "Quo consequatur a possimus."], ["date", "2020-05-06 18:34:04.492585"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.494143"], ["updated_at", "2020-05-05 18:34:04.494143"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis incidunt qui autem?"], ["description", "Ratione placeat laborum sit."], ["date", "2020-05-06 18:34:04.496536"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.497957"], ["updated_at", "2020-05-05 18:34:04.497957"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos rerum suscipit sint?"], ["description", "Et atque molestiae non."], ["date", "2020-05-06 18:34:04.500363"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.501797"], ["updated_at", "2020-05-05 18:34:04.501797"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis doloribus odit cupiditate?"], ["description", "Temporibus dicta eaque ut."], ["date", "2020-05-06 18:34:04.505322"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.506893"], ["updated_at", "2020-05-05 18:34:04.506893"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad maiores quidem veritatis?"], ["description", "A iure consequuntur eveniet."], ["date", "2020-05-06 18:34:04.509512"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.510982"], ["updated_at", "2020-05-05 18:34:04.510982"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil dolor aut nam?"], ["description", "Enim pariatur doloremque velit."], ["date", "2020-05-06 18:34:04.513714"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.515271"], ["updated_at", "2020-05-05 18:34:04.515271"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia sed ut voluptatum?"], ["description", "A ratione qui magnam."], ["date", "2020-05-06 18:34:04.517775"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.519292"], ["updated_at", "2020-05-05 18:34:04.519292"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid ut nemo sunt?"], ["description", "Consequatur et quia doloremque."], ["date", "2020-05-06 18:34:04.521662"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.522375"], ["updated_at", "2020-05-05 18:34:04.522375"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel assumenda consequatur veniam?"], ["description", "Odio et qui optio."], ["date", "2020-05-06 18:34:04.523618"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.524333"], ["updated_at", "2020-05-05 18:34:04.524333"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quibusdam nihil aut dicta?"], ["description", "Sunt quia minus dolorem."], ["date", "2020-05-06 18:34:04.525618"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.526296"], ["updated_at", "2020-05-05 18:34:04.526296"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente fugiat voluptatem dolor?"], ["description", "Nam tenetur dolorum sit."], ["date", "2020-05-06 18:34:04.527553"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.528229"], ["updated_at", "2020-05-05 18:34:04.528229"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos architecto et quibusdam?"], ["description", "Repellendus consequatur quod occaecati."], ["date", "2020-05-06 18:34:04.529626"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.530425"], ["updated_at", "2020-05-05 18:34:04.530425"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores et est iusto?"], ["description", "Nemo quia aut dolores."], ["date", "2020-05-06 18:34:04.531671"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.532346"], ["updated_at", "2020-05-05 18:34:04.532346"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus quas eveniet qui?"], ["description", "Facilis quod deserunt dolores."], ["date", "2020-05-06 18:34:04.533633"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.534504"], ["updated_at", "2020-05-05 18:34:04.534504"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:34:04 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.74ms) +Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.2ms | Allocations: 1085) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Frederick Lubowitz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$U5QYycXjC0vvP2iOhWU/yuACGWxM2W5DM7UHpCSCUXy8wRACsmIdW"], ["created_at", "2020-05-05 18:34:04.550683"], ["updated_at", "2020-05-05 18:34:04.550683"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Eligendi et pariatur sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:04.553846"], ["updated_at", "2020-05-05 18:34:04.553846"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis magni sunt dolores?"], ["description", "Facilis unde repellendus ullam."], ["date", "2020-05-06 18:34:04.556296"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.557522"], ["updated_at", "2020-05-05 18:34:04.557522"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat architecto temporibus consequatur?"], ["description", "Quam sapiente magni ut."], ["date", "2020-05-06 18:34:04.559018"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.559762"], ["updated_at", "2020-05-05 18:34:04.559762"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reiciendis nemo aliquid eos?"], ["description", "Iusto dolores libero labore."], ["date", "2020-05-06 18:34:04.560959"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.561654"], ["updated_at", "2020-05-05 18:34:04.561654"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non similique animi labore?"], ["description", "Vel culpa esse aut."], ["date", "2020-05-06 18:34:04.562809"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.563503"], ["updated_at", "2020-05-05 18:34:04.563503"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates mollitia magnam et?"], ["description", "Animi earum dignissimos modi."], ["date", "2020-05-06 18:34:04.564598"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.565307"], ["updated_at", "2020-05-05 18:34:04.565307"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia ullam provident officia?"], ["description", "Molestiae et est qui."], ["date", "2020-05-06 18:34:04.566395"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.567220"], ["updated_at", "2020-05-05 18:34:04.567220"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod dignissimos placeat aut?"], ["description", "Minus nam qui vel."], ["date", "2020-05-06 18:34:04.568682"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.569592"], ["updated_at", "2020-05-05 18:34:04.569592"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima veritatis voluptas non?"], ["description", "Occaecati debitis amet est."], ["date", "2020-05-06 18:34:04.570888"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.571811"], ["updated_at", "2020-05-05 18:34:04.571811"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam tempore placeat tempora?"], ["description", "Veniam nulla tenetur aut."], ["date", "2020-05-06 18:34:04.573512"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.574537"], ["updated_at", "2020-05-05 18:34:04.574537"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium ex libero quibusdam?"], ["description", "Id id harum aut."], ["date", "2020-05-06 18:34:04.577407"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.578870"], ["updated_at", "2020-05-05 18:34:04.578870"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem nam voluptatibus fugit?"], ["description", "Perferendis modi enim quidem."], ["date", "2020-05-06 18:34:04.580890"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.581935"], ["updated_at", "2020-05-05 18:34:04.581935"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste aut consequatur delectus?"], ["description", "Impedit dolore saepe itaque."], ["date", "2020-05-06 18:34:04.583495"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.584369"], ["updated_at", "2020-05-05 18:34:04.584369"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non consequuntur inventore iste?"], ["description", "Odio velit rem distinctio."], ["date", "2020-05-06 18:34:04.585741"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.586571"], ["updated_at", "2020-05-05 18:34:04.586571"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem et perspiciatis in?"], ["description", "At aut debitis ducimus."], ["date", "2020-05-06 18:34:04.588129"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.589066"], ["updated_at", "2020-05-05 18:34:04.589066"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui amet est voluptatem?"], ["description", "Repellat qui omnis adipisci."], ["date", "2020-05-06 18:34:04.590787"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.591876"], ["updated_at", "2020-05-05 18:34:04.591876"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis ut rerum ipsam?"], ["description", "Deleniti sit sunt sint."], ["date", "2020-05-06 18:34:04.593536"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.594436"], ["updated_at", "2020-05-05 18:34:04.594436"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore consequatur optio unde?"], ["description", "Quo impedit est beatae."], ["date", "2020-05-06 18:34:04.595858"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.596724"], ["updated_at", "2020-05-05 18:34:04.596724"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta iure error eveniet?"], ["description", "Et harum quidem exercitationem."], ["date", "2020-05-06 18:34:04.598426"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.599418"], ["updated_at", "2020-05-05 18:34:04.599418"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem sit hic sed?"], ["description", "Non placeat dolorum omnis."], ["date", "2020-05-06 18:34:04.601452"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.603161"], ["updated_at", "2020-05-05 18:34:04.603161"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea deserunt ut eum?"], ["description", "Iure quidem quia aut."], ["date", "2020-05-06 18:34:04.605065"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.605958"], ["updated_at", "2020-05-05 18:34:04.605958"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:34:04 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.9ms) +Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.2ms | Allocations: 1058) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Malika Auer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XHj3spPlhlgGhe1sW5W7HOPhFVy1lQkvFIPoTkrsiFljKWT3mjW0S"], ["created_at", "2020-05-05 18:34:04.631549"], ["updated_at", "2020-05-05 18:34:04.631549"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quae"], ["description", "Facere dolor est ullam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:04.635116"], ["updated_at", "2020-05-05 18:34:04.635116"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione ut suscipit est?"], ["description", "Eaque et possimus commodi."], ["date", "2020-05-06 18:34:04.638390"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.639717"], ["updated_at", "2020-05-05 18:34:04.639717"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid ut illum doloribus?"], ["description", "Et libero eaque cupiditate."], ["date", "2020-05-06 18:34:04.641362"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.642210"], ["updated_at", "2020-05-05 18:34:04.642210"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem inventore quos eligendi?"], ["description", "Ad enim pariatur rerum."], ["date", "2020-05-06 18:34:04.643396"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.644089"], ["updated_at", "2020-05-05 18:34:04.644089"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Adipisci ut ipsum voluptatibus?"], ["description", "Velit saepe consequatur dolore."], ["date", "2020-05-06 18:34:04.645189"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.645872"], ["updated_at", "2020-05-05 18:34:04.645872"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda dignissimos totam atque?"], ["description", "Expedita dicta et quae."], ["date", "2020-05-06 18:34:04.647127"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.647854"], ["updated_at", "2020-05-05 18:34:04.647854"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et rerum tenetur dignissimos?"], ["description", "Quidem ipsa ipsam voluptatem."], ["date", "2020-05-06 18:34:04.648952"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.649657"], ["updated_at", "2020-05-05 18:34:04.649657"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis quod est et?"], ["description", "Non soluta fugit reprehenderit."], ["date", "2020-05-06 18:34:04.650732"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.651402"], ["updated_at", "2020-05-05 18:34:04.651402"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi facilis iste explicabo?"], ["description", "Voluptas rerum temporibus illo."], ["date", "2020-05-06 18:34:04.652577"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.653522"], ["updated_at", "2020-05-05 18:34:04.653522"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt corrupti quidem doloremque?"], ["description", "Rem blanditiis cupiditate laudantium."], ["date", "2020-05-06 18:34:04.655275"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.657514"], ["updated_at", "2020-05-05 18:34:04.657514"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae ullam eum veniam?"], ["description", "Alias enim qui vel."], ["date", "2020-05-06 18:34:04.660682"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.661705"], ["updated_at", "2020-05-05 18:34:04.661705"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit quia amet maiores?"], ["description", "Magni et ut nesciunt."], ["date", "2020-05-06 18:34:04.663108"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.663900"], ["updated_at", "2020-05-05 18:34:04.663900"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed cum corrupti velit?"], ["description", "Laudantium expedita quas neque."], ["date", "2020-05-06 18:34:04.665062"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.665856"], ["updated_at", "2020-05-05 18:34:04.665856"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor quibusdam nihil cum?"], ["description", "In et ab impedit."], ["date", "2020-05-06 18:34:04.667162"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.667942"], ["updated_at", "2020-05-05 18:34:04.667942"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi ut necessitatibus harum?"], ["description", "Blanditiis sit nihil quia."], ["date", "2020-05-06 18:34:04.669191"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.669909"], ["updated_at", "2020-05-05 18:34:04.669909"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit veritatis modi quia?"], ["description", "Est aperiam necessitatibus magnam."], ["date", "2020-05-06 18:34:04.671090"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.671806"], ["updated_at", "2020-05-05 18:34:04.671806"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum et error unde?"], ["description", "Necessitatibus nisi enim harum."], ["date", "2020-05-06 18:34:04.673067"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.674503"], ["updated_at", "2020-05-05 18:34:04.674503"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est magnam eveniet debitis?"], ["description", "Facere ipsum a facilis."], ["date", "2020-05-06 18:34:04.676907"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.680205"], ["updated_at", "2020-05-05 18:34:04.680205"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium sed repellendus aut?"], ["description", "Beatae nulla necessitatibus laborum."], ["date", "2020-05-06 18:34:04.681887"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.682699"], ["updated_at", "2020-05-05 18:34:04.682699"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente error quasi officiis?"], ["description", "Exercitationem natus temporibus possimus."], ["date", "2020-05-06 18:34:04.683903"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.684584"], ["updated_at", "2020-05-05 18:34:04.684584"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente incidunt repellendus est?"], ["description", "Deserunt ad ratione consectetur."], ["date", "2020-05-06 18:34:04.685762"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.686432"], ["updated_at", "2020-05-05 18:34:04.686432"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:34:04 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 884) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leo Gleason"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$lwlKjnNi/VYrRcR5S.Cx/.hCTS/2XUxWBccFpdbKAmBZYu/GJeEou"], ["created_at", "2020-05-05 18:34:04.702303"], ["updated_at", "2020-05-05 18:34:04.702303"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "porro"], ["description", "Et autem ut maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:04.705491"], ["updated_at", "2020-05-05 18:34:04.705491"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum animi ipsum porro?"], ["description", "Aut sint enim cumque."], ["date", "2020-05-06 18:34:04.707079"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.708047"], ["updated_at", "2020-05-05 18:34:04.708047"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem mollitia sint impedit?"], ["description", "Molestias ut temporibus ducimus."], ["date", "2020-05-06 18:34:04.709628"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.710406"], ["updated_at", "2020-05-05 18:34:04.710406"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum id eveniet dolor?"], ["description", "Nobis voluptatum culpa sit."], ["date", "2020-05-06 18:34:04.711643"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.712390"], ["updated_at", "2020-05-05 18:34:04.712390"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam rerum voluptatem sunt?"], ["description", "Inventore illum voluptatem repellat."], ["date", "2020-05-06 18:34:04.713881"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.714924"], ["updated_at", "2020-05-05 18:34:04.714924"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo harum et architecto?"], ["description", "Eius et esse quae."], ["date", "2020-05-06 18:34:04.716504"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.717551"], ["updated_at", "2020-05-05 18:34:04.717551"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae et qui sunt?"], ["description", "Voluptatem officiis exercitationem aut."], ["date", "2020-05-06 18:34:04.718939"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.719708"], ["updated_at", "2020-05-05 18:34:04.719708"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati qui excepturi alias?"], ["description", "Quia magni facere saepe."], ["date", "2020-05-06 18:34:04.720755"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.721447"], ["updated_at", "2020-05-05 18:34:04.721447"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id velit et rerum?"], ["description", "Labore corporis et necessitatibus."], ["date", "2020-05-06 18:34:04.722585"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.723254"], ["updated_at", "2020-05-05 18:34:04.723254"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et non sequi harum?"], ["description", "Perspiciatis totam nulla dolor."], ["date", "2020-05-06 18:34:04.724402"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.725065"], ["updated_at", "2020-05-05 18:34:04.725065"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur sit nisi deleniti?"], ["description", "Et hic voluptates magni."], ["date", "2020-05-06 18:34:04.726906"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.727734"], ["updated_at", "2020-05-05 18:34:04.727734"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia quasi sequi incidunt?"], ["description", "Reprehenderit iste quia deleniti."], ["date", "2020-05-06 18:34:04.729141"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.729883"], ["updated_at", "2020-05-05 18:34:04.729883"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore placeat dolorum repellat?"], ["description", "Sed eligendi et tenetur."], ["date", "2020-05-06 18:34:04.731075"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.731773"], ["updated_at", "2020-05-05 18:34:04.731773"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem est odio natus?"], ["description", "Quia totam voluptas excepturi."], ["date", "2020-05-06 18:34:04.732962"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.733835"], ["updated_at", "2020-05-05 18:34:04.733835"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas soluta qui natus?"], ["description", "Ab sunt ratione voluptas."], ["date", "2020-05-06 18:34:04.735572"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.738629"], ["updated_at", "2020-05-05 18:34:04.738629"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem dolores voluptas dolore?"], ["description", "Eaque nisi placeat esse."], ["date", "2020-05-06 18:34:04.740631"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.741661"], ["updated_at", "2020-05-05 18:34:04.741661"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti ut fugiat neque?"], ["description", "Ducimus in sint voluptatem."], ["date", "2020-05-06 18:34:04.743147"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.744011"], ["updated_at", "2020-05-05 18:34:04.744011"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis ipsa tempora itaque?"], ["description", "Voluptas animi quos et."], ["date", "2020-05-06 18:34:04.745348"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.746112"], ["updated_at", "2020-05-05 18:34:04.746112"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis perspiciatis voluptatem aut?"], ["description", "Sit non aut autem."], ["date", "2020-05-06 18:34:04.747480"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.748247"], ["updated_at", "2020-05-05 18:34:04.748247"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis iusto vel occaecati?"], ["description", "Consectetur sint animi doloremque."], ["date", "2020-05-06 18:34:04.749434"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.750118"], ["updated_at", "2020-05-05 18:34:04.750118"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam et maiores cum?"], ["description", "Velit omnis rerum aut."], ["date", "2020-05-06 18:34:04.751250"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.751947"], ["updated_at", "2020-05-05 18:34:04.751947"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:34:04 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 867) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Theola Kovacek"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$C4Sep5Gwv2J93lcF3pndHel42NiEFYxBhTEU.lEou0NO4ZqOJCpvy"], ["created_at", "2020-05-05 18:34:04.767371"], ["updated_at", "2020-05-05 18:34:04.767371"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "atque"], ["description", "Vitae occaecati tenetur dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:04.770340"], ["updated_at", "2020-05-05 18:34:04.770340"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos fuga nihil magnam?"], ["description", "Quos aperiam eum repellat."], ["date", "2020-05-06 18:34:04.771867"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.772791"], ["updated_at", "2020-05-05 18:34:04.772791"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum ea soluta enim?"], ["description", "Dolores voluptatibus quo iusto."], ["date", "2020-05-06 18:34:04.774280"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.775334"], ["updated_at", "2020-05-05 18:34:04.775334"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus sapiente inventore voluptatem?"], ["description", "Neque sed maxime at."], ["date", "2020-05-06 18:34:04.776976"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.778433"], ["updated_at", "2020-05-05 18:34:04.778433"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus laudantium harum dolorum?"], ["description", "Ducimus quia iusto exercitationem."], ["date", "2020-05-06 18:34:04.779954"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.780758"], ["updated_at", "2020-05-05 18:34:04.780758"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi nobis nemo qui?"], ["description", "Veritatis corrupti reiciendis a."], ["date", "2020-05-06 18:34:04.781901"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.782566"], ["updated_at", "2020-05-05 18:34:04.782566"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut quidem eos nulla?"], ["description", "Eius labore voluptas ducimus."], ["date", "2020-05-06 18:34:04.783687"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.784356"], ["updated_at", "2020-05-05 18:34:04.784356"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi iusto amet mollitia?"], ["description", "Quia quis libero consequatur."], ["date", "2020-05-06 18:34:04.785495"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.786136"], ["updated_at", "2020-05-05 18:34:04.786136"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse ipsum dolor nam?"], ["description", "Aut earum nesciunt aspernatur."], ["date", "2020-05-06 18:34:04.787359"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.788102"], ["updated_at", "2020-05-05 18:34:04.788102"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis eveniet ea at?"], ["description", "Eveniet soluta doloribus laboriosam."], ["date", "2020-05-06 18:34:04.789442"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.790299"], ["updated_at", "2020-05-05 18:34:04.790299"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum nostrum dolorem illo?"], ["description", "Earum omnis qui quidem."], ["date", "2020-05-06 18:34:04.792125"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.792912"], ["updated_at", "2020-05-05 18:34:04.792912"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque ullam laboriosam assumenda?"], ["description", "Quo dicta nisi corporis."], ["date", "2020-05-06 18:34:04.794319"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.795165"], ["updated_at", "2020-05-05 18:34:04.795165"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis quia quam a?"], ["description", "Consequatur deleniti reiciendis dolorem."], ["date", "2020-05-06 18:34:04.796671"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.798018"], ["updated_at", "2020-05-05 18:34:04.798018"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias quia ratione rem?"], ["description", "Necessitatibus quos id laboriosam."], ["date", "2020-05-06 18:34:04.799614"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.800496"], ["updated_at", "2020-05-05 18:34:04.800496"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam quos rerum deleniti?"], ["description", "At qui non cupiditate."], ["date", "2020-05-06 18:34:04.801796"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.802490"], ["updated_at", "2020-05-05 18:34:04.802490"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis et laudantium est?"], ["description", "Voluptatem numquam laudantium rerum."], ["date", "2020-05-06 18:34:04.803644"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.804307"], ["updated_at", "2020-05-05 18:34:04.804307"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt non quidem facilis?"], ["description", "Inventore maiores consequatur et."], ["date", "2020-05-06 18:34:04.805417"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.806074"], ["updated_at", "2020-05-05 18:34:04.806074"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Possimus nam nisi ducimus?"], ["description", "Molestiae facere dolores eveniet."], ["date", "2020-05-06 18:34:04.807226"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.807937"], ["updated_at", "2020-05-05 18:34:04.807937"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id in sint nesciunt?"], ["description", "Illum voluptatem molestiae omnis."], ["date", "2020-05-06 18:34:04.809236"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.809973"], ["updated_at", "2020-05-05 18:34:04.809973"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora et qui fugit?"], ["description", "Amet omnis itaque totam."], ["date", "2020-05-06 18:34:04.811057"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.811729"], ["updated_at", "2020-05-05 18:34:04.811729"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum quaerat voluptate in?"], ["description", "Voluptatem quo nostrum necessitatibus."], ["date", "2020-05-06 18:34:04.812801"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.813539"], ["updated_at", "2020-05-05 18:34:04.813539"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:34:04 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"title"=>"Visit Narnia", "description"=>"false", "date"=>"2020-05-06 15:34:04 -0300", "link"=>"https://zoom.com/fakelink", "meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Visit Narnia"], ["description", "false"], ["date", "2020-05-06 18:34:04"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.832693"], ["updated_at", "2020-05-05 18:34:04.832693"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.56ms) +Completed 201 Created in 5ms (Views: 1.2ms | ActiveRecord: 0.4ms | Allocations: 1699) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Monroe O'Hara"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qkwTPL2mWFqvSdP98PoSwuKU46NrOWy7B5TZiSknmeq9ORkVoc9XS"], ["created_at", "2020-05-05 18:34:04.846595"], ["updated_at", "2020-05-05 18:34:04.846595"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Sapiente inventore laudantium sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:04.849677"], ["updated_at", "2020-05-05 18:34:04.849677"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis eveniet recusandae ut?"], ["description", "Sunt non ducimus dolores."], ["date", "2020-05-06 18:34:04.851306"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.852232"], ["updated_at", "2020-05-05 18:34:04.852232"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat iusto tempore assumenda?"], ["description", "Nulla libero est in."], ["date", "2020-05-06 18:34:04.853538"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.854252"], ["updated_at", "2020-05-05 18:34:04.854252"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est vel sapiente doloribus?"], ["description", "Impedit dolorem quasi repellendus."], ["date", "2020-05-06 18:34:04.855487"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.856437"], ["updated_at", "2020-05-05 18:34:04.856437"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur voluptate sunt qui?"], ["description", "Repellat possimus occaecati tempora."], ["date", "2020-05-06 18:34:04.858293"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.859249"], ["updated_at", "2020-05-05 18:34:04.859249"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt alias ut ea?"], ["description", "Aut et repellat et."], ["date", "2020-05-06 18:34:04.860530"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.861203"], ["updated_at", "2020-05-05 18:34:04.861203"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est ullam deleniti aut?"], ["description", "Pariatur voluptas fuga nesciunt."], ["date", "2020-05-06 18:34:04.862350"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.863184"], ["updated_at", "2020-05-05 18:34:04.863184"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos qui accusantium neque?"], ["description", "Deleniti iure quae adipisci."], ["date", "2020-05-06 18:34:04.864328"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.865025"], ["updated_at", "2020-05-05 18:34:04.865025"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex esse sunt placeat?"], ["description", "Qui expedita voluptatibus dolor."], ["date", "2020-05-06 18:34:04.866071"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.866828"], ["updated_at", "2020-05-05 18:34:04.866828"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium et a minus?"], ["description", "Quis ipsa corporis illo."], ["date", "2020-05-06 18:34:04.867917"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.868601"], ["updated_at", "2020-05-05 18:34:04.868601"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia unde non minus?"], ["description", "Laborum at quibusdam exercitationem."], ["date", "2020-05-06 18:34:04.870413"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.871159"], ["updated_at", "2020-05-05 18:34:04.871159"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique sunt autem voluptas?"], ["description", "Voluptas omnis voluptatem in."], ["date", "2020-05-06 18:34:04.872408"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.873084"], ["updated_at", "2020-05-05 18:34:04.873084"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam ut libero eligendi?"], ["description", "Non cupiditate vero nemo."], ["date", "2020-05-06 18:34:04.874225"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.875116"], ["updated_at", "2020-05-05 18:34:04.875116"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt occaecati omnis rerum?"], ["description", "Aut atque enim adipisci."], ["date", "2020-05-06 18:34:04.876446"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.877129"], ["updated_at", "2020-05-05 18:34:04.877129"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat et cupiditate quod?"], ["description", "Blanditiis velit deserunt tempora."], ["date", "2020-05-06 18:34:04.878426"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.879154"], ["updated_at", "2020-05-05 18:34:04.879154"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis ut et laboriosam?"], ["description", "Maxime dolor neque magni."], ["date", "2020-05-06 18:34:04.880403"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.881079"], ["updated_at", "2020-05-05 18:34:04.881079"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem qui occaecati labore?"], ["description", "Aut sit et similique."], ["date", "2020-05-06 18:34:04.882241"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.882908"], ["updated_at", "2020-05-05 18:34:04.882908"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque iusto in voluptates?"], ["description", "Et recusandae et sequi."], ["date", "2020-05-06 18:34:04.884068"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.884730"], ["updated_at", "2020-05-05 18:34:04.884730"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore hic illum assumenda?"], ["description", "Et quis necessitatibus sit."], ["date", "2020-05-06 18:34:04.886006"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.886747"], ["updated_at", "2020-05-05 18:34:04.886747"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et est et consequatur?"], ["description", "Magni perspiciatis aut qui."], ["date", "2020-05-06 18:34:04.888003"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.888754"], ["updated_at", "2020-05-05 18:34:04.888754"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit est nostrum dolorem?"], ["description", "Autem non hic consequuntur."], ["date", "2020-05-06 18:34:04.889940"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.890605"], ["updated_at", "2020-05-05 18:34:04.890605"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:34:04 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3010) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cruz Tromp"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Obx7jc7wcM3k8fEQkmR4K.eQiDi1zxV/wMMUB38stscEUE5zN6ZzC"], ["created_at", "2020-05-05 18:34:04.908599"], ["updated_at", "2020-05-05 18:34:04.908599"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Totam nobis mollitia praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:04.911672"], ["updated_at", "2020-05-05 18:34:04.911672"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero sit omnis qui?"], ["description", "Quia ipsa voluptatum cumque."], ["date", "2020-05-06 18:34:04.913193"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.914110"], ["updated_at", "2020-05-05 18:34:04.914110"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem ipsam rerum ut?"], ["description", "Odio laboriosam ipsum et."], ["date", "2020-05-06 18:34:04.915302"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.916037"], ["updated_at", "2020-05-05 18:34:04.916037"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda fugit et eaque?"], ["description", "Quasi dicta ipsam et."], ["date", "2020-05-06 18:34:04.917403"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.918753"], ["updated_at", "2020-05-05 18:34:04.918753"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga voluptas omnis voluptatem?"], ["description", "Accusantium tempora vitae ipsum."], ["date", "2020-05-06 18:34:04.920156"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.920951"], ["updated_at", "2020-05-05 18:34:04.920951"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo sit sit ut?"], ["description", "Nostrum dolores adipisci consequatur."], ["date", "2020-05-06 18:34:04.921990"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.922652"], ["updated_at", "2020-05-05 18:34:04.922652"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut recusandae accusantium eos?"], ["description", "Optio sequi debitis ut."], ["date", "2020-05-06 18:34:04.923744"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.924434"], ["updated_at", "2020-05-05 18:34:04.924434"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem ipsa inventore facilis?"], ["description", "Error voluptatem vel fugiat."], ["date", "2020-05-06 18:34:04.925480"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.926145"], ["updated_at", "2020-05-05 18:34:04.926145"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel laudantium mollitia inventore?"], ["description", "Non sequi ullam quis."], ["date", "2020-05-06 18:34:04.927320"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.928034"], ["updated_at", "2020-05-05 18:34:04.928034"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus sed fugit quo?"], ["description", "Similique vitae vero eligendi."], ["date", "2020-05-06 18:34:04.929273"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.929985"], ["updated_at", "2020-05-05 18:34:04.929985"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti iste facere molestias?"], ["description", "Velit pariatur modi esse."], ["date", "2020-05-06 18:34:04.931867"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.932611"], ["updated_at", "2020-05-05 18:34:04.932611"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas autem sint nostrum?"], ["description", "Eligendi quis amet iusto."], ["date", "2020-05-06 18:34:04.933855"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.934568"], ["updated_at", "2020-05-05 18:34:04.934568"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil repellendus et et?"], ["description", "Et velit accusantium error."], ["date", "2020-05-06 18:34:04.936030"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.937010"], ["updated_at", "2020-05-05 18:34:04.937010"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequuntur officiis impedit velit?"], ["description", "Maxime ut temporibus occaecati."], ["date", "2020-05-06 18:34:04.938963"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.939859"], ["updated_at", "2020-05-05 18:34:04.939859"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet debitis ut temporibus?"], ["description", "Sed velit delectus eligendi."], ["date", "2020-05-06 18:34:04.941229"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.941920"], ["updated_at", "2020-05-05 18:34:04.941920"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto earum debitis dolorem?"], ["description", "Amet beatae ab est."], ["date", "2020-05-06 18:34:04.943239"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.944125"], ["updated_at", "2020-05-05 18:34:04.944125"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quos error amet?"], ["description", "Mollitia occaecati nihil et."], ["date", "2020-05-06 18:34:04.945573"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.946377"], ["updated_at", "2020-05-05 18:34:04.946377"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia voluptas est porro?"], ["description", "Alias sint porro mollitia."], ["date", "2020-05-06 18:34:04.947493"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.948256"], ["updated_at", "2020-05-05 18:34:04.948256"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio omnis et saepe?"], ["description", "Qui consequatur modi harum."], ["date", "2020-05-06 18:34:04.949529"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.950251"], ["updated_at", "2020-05-05 18:34:04.950251"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem exercitationem ea eum?"], ["description", "Doloremque in enim rerum."], ["date", "2020-05-06 18:34:04.951494"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.952197"], ["updated_at", "2020-05-05 18:34:04.952197"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est occaecati illum et?"], ["description", "Et veniam repellat corrupti."], ["date", "2020-05-06 18:34:04.953404"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.954079"], ["updated_at", "2020-05-05 18:34:04.954079"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:34:04 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 2707) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Debbi Bayer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tdHgRnA5RYAs66PVtBYi9eTEE7uolzEwVZpsuVS4Wz.xZ75vMO/yy"], ["created_at", "2020-05-05 18:34:04.985969"], ["updated_at", "2020-05-05 18:34:04.985969"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "a"], ["description", "Enim nulla nam eius."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:04.989066"], ["updated_at", "2020-05-05 18:34:04.989066"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et tempora a qui?"], ["description", "Aut exercitationem voluptas cupiditate."], ["date", "2020-05-06 18:34:04.990583"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.991532"], ["updated_at", "2020-05-05 18:34:04.991532"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus fugit iusto sed?"], ["description", "Sapiente assumenda laborum qui."], ["date", "2020-05-06 18:34:04.992874"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.993619"], ["updated_at", "2020-05-05 18:34:04.993619"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit delectus omnis saepe?"], ["description", "Voluptas et veritatis velit."], ["date", "2020-05-06 18:34:04.994837"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.995608"], ["updated_at", "2020-05-05 18:34:04.995608"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas ut dolore et?"], ["description", "Facere aliquid voluptates voluptatum."], ["date", "2020-05-06 18:34:04.996904"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:04.997991"], ["updated_at", "2020-05-05 18:34:04.997991"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui tenetur quaerat repellendus?"], ["description", "Sunt animi facilis qui."], ["date", "2020-05-06 18:34:04.999975"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.000878"], ["updated_at", "2020-05-05 18:34:05.000878"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi et amet dolorum?"], ["description", "Est nihil facere ex."], ["date", "2020-05-06 18:34:05.002086"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.002758"], ["updated_at", "2020-05-05 18:34:05.002758"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam harum dignissimos nihil?"], ["description", "Optio qui assumenda laborum."], ["date", "2020-05-06 18:34:05.004064"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.004808"], ["updated_at", "2020-05-05 18:34:05.004808"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam similique laudantium esse?"], ["description", "Dolorem enim quisquam neque."], ["date", "2020-05-06 18:34:05.005949"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.006662"], ["updated_at", "2020-05-05 18:34:05.006662"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis pariatur et dolorem?"], ["description", "Non dicta dolorem impedit."], ["date", "2020-05-06 18:34:05.007906"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.008673"], ["updated_at", "2020-05-05 18:34:05.008673"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat autem fuga minus?"], ["description", "Rerum et unde odio."], ["date", "2020-05-06 18:34:05.010628"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.011448"], ["updated_at", "2020-05-05 18:34:05.011448"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo eum optio aliquam?"], ["description", "Quisquam possimus sed quis."], ["date", "2020-05-06 18:34:05.012744"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.013441"], ["updated_at", "2020-05-05 18:34:05.013441"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et odio neque deserunt?"], ["description", "Quia aut nobis sequi."], ["date", "2020-05-06 18:34:05.014622"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.015414"], ["updated_at", "2020-05-05 18:34:05.015414"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut unde reprehenderit libero?"], ["description", "Voluptatem tenetur et soluta."], ["date", "2020-05-06 18:34:05.016641"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.017396"], ["updated_at", "2020-05-05 18:34:05.017396"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia aliquid et eaque?"], ["description", "Incidunt quas eius harum."], ["date", "2020-05-06 18:34:05.018699"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.019401"], ["updated_at", "2020-05-05 18:34:05.019401"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio fugit consectetur sequi?"], ["description", "Rem porro qui eos."], ["date", "2020-05-06 18:34:05.020635"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.021308"], ["updated_at", "2020-05-05 18:34:05.021308"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui illum unde quo?"], ["description", "Qui fugit ipsum dolor."], ["date", "2020-05-06 18:34:05.022454"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.023144"], ["updated_at", "2020-05-05 18:34:05.023144"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda vel aut ullam?"], ["description", "Qui rerum nostrum consequatur."], ["date", "2020-05-06 18:34:05.024340"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.025003"], ["updated_at", "2020-05-05 18:34:05.025003"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non consequatur ratione temporibus?"], ["description", "Culpa cum eligendi iste."], ["date", "2020-05-06 18:34:05.026201"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.026880"], ["updated_at", "2020-05-05 18:34:05.026880"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim quam impedit officiis?"], ["description", "Dolorem et aut libero."], ["date", "2020-05-06 18:34:05.028231"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.029028"], ["updated_at", "2020-05-05 18:34:05.029028"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo illum officiis qui?"], ["description", "Aut corrupti molestiae illum."], ["date", "2020-05-06 18:34:05.030224"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.030915"], ["updated_at", "2020-05-05 18:34:05.030915"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.1ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:34:05.035340"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1396) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lovie Gusikowski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aA3qeNN74hgrvZNnQf1SR.jzh3x/0l7/1lW/salyZhFC4yvrx5BbS"], ["created_at", "2020-05-05 18:34:05.047674"], ["updated_at", "2020-05-05 18:34:05.047674"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "atque"], ["description", "Consequatur dicta minus enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.050589"], ["updated_at", "2020-05-05 18:34:05.050589"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo dolor ut officiis?"], ["description", "Eum porro eaque cumque."], ["date", "2020-05-06 18:34:05.052027"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.052957"], ["updated_at", "2020-05-05 18:34:05.052957"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident et voluptatem reiciendis?"], ["description", "Tempore at deleniti eius."], ["date", "2020-05-06 18:34:05.054492"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.055214"], ["updated_at", "2020-05-05 18:34:05.055214"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro tempore rerum velit?"], ["description", "Nisi voluptatem id ullam."], ["date", "2020-05-06 18:34:05.056432"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.057195"], ["updated_at", "2020-05-05 18:34:05.057195"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Possimus ut architecto aut?"], ["description", "Et dolor ut et."], ["date", "2020-05-06 18:34:05.058617"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.059598"], ["updated_at", "2020-05-05 18:34:05.059598"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A tempore aut vitae?"], ["description", "Illum nobis error maiores."], ["date", "2020-05-06 18:34:05.061475"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.062383"], ["updated_at", "2020-05-05 18:34:05.062383"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui ut autem incidunt?"], ["description", "Aut aut possimus autem."], ["date", "2020-05-06 18:34:05.063636"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.064340"], ["updated_at", "2020-05-05 18:34:05.064340"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum quaerat reiciendis qui?"], ["description", "Sapiente minima accusamus ullam."], ["date", "2020-05-06 18:34:05.065466"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.066146"], ["updated_at", "2020-05-05 18:34:05.066146"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et et ex et?"], ["description", "Cumque doloribus illo maxime."], ["date", "2020-05-06 18:34:05.067284"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.067960"], ["updated_at", "2020-05-05 18:34:05.067960"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia voluptas mollitia non?"], ["description", "Ab voluptas enim totam."], ["date", "2020-05-06 18:34:05.069132"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.069810"], ["updated_at", "2020-05-05 18:34:05.069810"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non dolore qui accusamus?"], ["description", "Est fuga quia eos."], ["date", "2020-05-06 18:34:05.071729"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.072576"], ["updated_at", "2020-05-05 18:34:05.072576"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto pariatur repudiandae doloremque?"], ["description", "Qui enim illum culpa."], ["date", "2020-05-06 18:34:05.073820"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.074502"], ["updated_at", "2020-05-05 18:34:05.074502"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim deserunt unde provident?"], ["description", "Magnam iure delectus incidunt."], ["date", "2020-05-06 18:34:05.075897"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.076686"], ["updated_at", "2020-05-05 18:34:05.076686"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis neque sunt fugiat?"], ["description", "Corporis delectus enim et."], ["date", "2020-05-06 18:34:05.077944"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.078676"], ["updated_at", "2020-05-05 18:34:05.078676"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis eos suscipit consequatur?"], ["description", "Et est veniam aliquid."], ["date", "2020-05-06 18:34:05.079935"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.080643"], ["updated_at", "2020-05-05 18:34:05.080643"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut libero omnis eos?"], ["description", "Dolorum aut eaque repudiandae."], ["date", "2020-05-06 18:34:05.081815"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.082497"], ["updated_at", "2020-05-05 18:34:05.082497"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et et molestias blanditiis?"], ["description", "Eos nesciunt nam omnis."], ["date", "2020-05-06 18:34:05.083713"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.084418"], ["updated_at", "2020-05-05 18:34:05.084418"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non ullam exercitationem in?"], ["description", "Unde sint dolore beatae."], ["date", "2020-05-06 18:34:05.085587"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.086256"], ["updated_at", "2020-05-05 18:34:05.086256"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A unde modi sit?"], ["description", "Deleniti sit eius dolore."], ["date", "2020-05-06 18:34:05.087520"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.088330"], ["updated_at", "2020-05-05 18:34:05.088330"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque harum quia blanditiis?"], ["description", "Aut ut dolores modi."], ["date", "2020-05-06 18:34:05.089720"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.090447"], ["updated_at", "2020-05-05 18:34:05.090447"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit ut optio recusandae?"], ["description", "Neque ut illum minus."], ["date", "2020-05-06 18:34:05.091695"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.092368"], ["updated_at", "2020-05-05 18:34:05.092368"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.1ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:34:05.096776"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1319) + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Griselda Schultz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RJ8AUQhwcCvp0kWmve3i9OcKwI.JCjiYemVKYffOlBPZ1GQyTdhPu"], ["created_at", "2020-05-05 18:34:05.109483"], ["updated_at", "2020-05-05 18:34:05.109483"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Voluptatibus veritatis omnis est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.112396"], ["updated_at", "2020-05-05 18:34:05.112396"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati et dolorem suscipit?"], ["description", "Molestiae aperiam reiciendis aut."], ["date", "2020-05-06 18:34:05.113923"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.114870"], ["updated_at", "2020-05-05 18:34:05.114870"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate dignissimos praesentium est?"], ["description", "Deserunt nemo illo dolor."], ["date", "2020-05-06 18:34:05.116442"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.117377"], ["updated_at", "2020-05-05 18:34:05.117377"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus suscipit libero mollitia?"], ["description", "Voluptatem voluptas veniam quia."], ["date", "2020-05-06 18:34:05.119114"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.120583"], ["updated_at", "2020-05-05 18:34:05.120583"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas sint molestiae nemo?"], ["description", "Rerum explicabo perspiciatis illum."], ["date", "2020-05-06 18:34:05.121984"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.122690"], ["updated_at", "2020-05-05 18:34:05.122690"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate placeat error aliquid?"], ["description", "Quasi nihil earum doloribus."], ["date", "2020-05-06 18:34:05.123830"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.124528"], ["updated_at", "2020-05-05 18:34:05.124528"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit voluptatibus et maiores?"], ["description", "Possimus vero dolor cum."], ["date", "2020-05-06 18:34:05.125756"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.126445"], ["updated_at", "2020-05-05 18:34:05.126445"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque ut consequatur voluptatem?"], ["description", "Id eaque quam at."], ["date", "2020-05-06 18:34:05.127703"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.128507"], ["updated_at", "2020-05-05 18:34:05.128507"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores architecto aut nesciunt?"], ["description", "Voluptate explicabo dolor enim."], ["date", "2020-05-06 18:34:05.129665"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.130375"], ["updated_at", "2020-05-05 18:34:05.130375"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut dolore consequatur enim?"], ["description", "Officia dolore autem in."], ["date", "2020-05-06 18:34:05.131443"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.132130"], ["updated_at", "2020-05-05 18:34:05.132130"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate quia consequatur veniam?"], ["description", "Occaecati aut earum magnam."], ["date", "2020-05-06 18:34:05.133948"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.134707"], ["updated_at", "2020-05-05 18:34:05.134707"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus consequatur porro qui?"], ["description", "Velit tempore dolor quod."], ["date", "2020-05-06 18:34:05.136069"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.136973"], ["updated_at", "2020-05-05 18:34:05.136973"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est vel repellat nihil?"], ["description", "Fuga nihil sunt aut."], ["date", "2020-05-06 18:34:05.138412"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.139291"], ["updated_at", "2020-05-05 18:34:05.139291"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis voluptatem sit qui?"], ["description", "Quaerat libero voluptatem ipsa."], ["date", "2020-05-06 18:34:05.140881"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.141921"], ["updated_at", "2020-05-05 18:34:05.141921"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem laudantium id laboriosam?"], ["description", "Ut quibusdam quidem consequatur."], ["date", "2020-05-06 18:34:05.144444"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.146580"], ["updated_at", "2020-05-05 18:34:05.146580"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum nihil delectus corporis?"], ["description", "Quia quod beatae non."], ["date", "2020-05-06 18:34:05.148776"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.149697"], ["updated_at", "2020-05-05 18:34:05.149697"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et minima omnis quas?"], ["description", "Aut et eum et."], ["date", "2020-05-06 18:34:05.150900"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.151621"], ["updated_at", "2020-05-05 18:34:05.151621"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut excepturi id hic?"], ["description", "Voluptate eius similique atque."], ["date", "2020-05-06 18:34:05.152776"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.153444"], ["updated_at", "2020-05-05 18:34:05.153444"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut sed iure animi?"], ["description", "Eaque eos excepturi vitae."], ["date", "2020-05-06 18:34:05.154588"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.155276"], ["updated_at", "2020-05-05 18:34:05.155276"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis dolorem earum repellat?"], ["description", "Nemo omnis iure earum."], ["date", "2020-05-06 18:34:05.156768"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.158065"], ["updated_at", "2020-05-05 18:34:05.158065"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat laboriosam voluptas aspernatur?"], ["description", "Blanditiis explicabo optio deserunt."], ["date", "2020-05-06 18:34:05.159626"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.160527"], ["updated_at", "2020-05-05 18:34:05.160527"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alfred Funk"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TfyIQqa6du6awhMbIVcQkeQIrMlG1AdhmS6trCFJC6bvVzi6Gj.lS"], ["created_at", "2020-05-05 18:34:05.174947"], ["updated_at", "2020-05-05 18:34:05.174947"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Tenetur et perferendis omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.178432"], ["updated_at", "2020-05-05 18:34:05.178432"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem rerum nostrum eos?"], ["description", "Voluptatum omnis minima et."], ["date", "2020-05-06 18:34:05.180651"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.182471"], ["updated_at", "2020-05-05 18:34:05.182471"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut quos quae quo?"], ["description", "Magnam quia quam id."], ["date", "2020-05-06 18:34:05.184200"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.185040"], ["updated_at", "2020-05-05 18:34:05.185040"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor illo repellendus dolorum?"], ["description", "Est illum perspiciatis repudiandae."], ["date", "2020-05-06 18:34:05.186307"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.187017"], ["updated_at", "2020-05-05 18:34:05.187017"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores optio culpa dolores?"], ["description", "Voluptatibus est laborum aperiam."], ["date", "2020-05-06 18:34:05.188194"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.188951"], ["updated_at", "2020-05-05 18:34:05.188951"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laudantium esse est quasi?"], ["description", "Et dignissimos perspiciatis rerum."], ["date", "2020-05-06 18:34:05.190138"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.190832"], ["updated_at", "2020-05-05 18:34:05.190832"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid est mollitia eos?"], ["description", "Est et similique non."], ["date", "2020-05-06 18:34:05.192004"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.192663"], ["updated_at", "2020-05-05 18:34:05.192663"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda ut et incidunt?"], ["description", "Perspiciatis deleniti est error."], ["date", "2020-05-06 18:34:05.193849"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.194612"], ["updated_at", "2020-05-05 18:34:05.194612"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos eum quo laboriosam?"], ["description", "Ut laudantium voluptatum fugiat."], ["date", "2020-05-06 18:34:05.195821"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.196799"], ["updated_at", "2020-05-05 18:34:05.196799"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non sunt dolores molestias?"], ["description", "Id molestiae cumque reprehenderit."], ["date", "2020-05-06 18:34:05.198335"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.199389"], ["updated_at", "2020-05-05 18:34:05.199389"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque aut quo numquam?"], ["description", "Dolorem sit quaerat repellat."], ["date", "2020-05-06 18:34:05.202332"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.203329"], ["updated_at", "2020-05-05 18:34:05.203329"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti eos tenetur voluptas?"], ["description", "Quam quas omnis est."], ["date", "2020-05-06 18:34:05.204751"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.205442"], ["updated_at", "2020-05-05 18:34:05.205442"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque animi sit recusandae?"], ["description", "Voluptatem temporibus praesentium et."], ["date", "2020-05-06 18:34:05.206711"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.207426"], ["updated_at", "2020-05-05 18:34:05.207426"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum voluptas commodi ut?"], ["description", "Quidem mollitia sed perspiciatis."], ["date", "2020-05-06 18:34:05.208699"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.209453"], ["updated_at", "2020-05-05 18:34:05.209453"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et sed dolores sit?"], ["description", "Sit delectus quam et."], ["date", "2020-05-06 18:34:05.210714"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.211408"], ["updated_at", "2020-05-05 18:34:05.211408"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi suscipit et repellendus?"], ["description", "Et consequatur velit quo."], ["date", "2020-05-06 18:34:05.212614"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.213308"], ["updated_at", "2020-05-05 18:34:05.213308"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis aliquam molestiae sed?"], ["description", "Cupiditate dolorum officia dolores."], ["date", "2020-05-06 18:34:05.214485"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.215179"], ["updated_at", "2020-05-05 18:34:05.215179"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi perspiciatis reiciendis rem?"], ["description", "Veniam ut aut consectetur."], ["date", "2020-05-06 18:34:05.216400"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.217469"], ["updated_at", "2020-05-05 18:34:05.217469"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui corporis harum tempora?"], ["description", "Cum molestias necessitatibus molestiae."], ["date", "2020-05-06 18:34:05.219040"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.219873"], ["updated_at", "2020-05-05 18:34:05.219873"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non consectetur minus voluptatem?"], ["description", "Voluptatibus placeat et nemo."], ["date", "2020-05-06 18:34:05.221075"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.221732"], ["updated_at", "2020-05-05 18:34:05.221732"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Delectus quam est optio?"], ["description", "Assumenda quis exercitationem ab."], ["date", "2020-05-06 18:34:05.222925"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.223708"], ["updated_at", "2020-05-05 18:34:05.223708"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 3ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ian Abernathy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1.CWDhYTp2mRzWQOQds2NubOOkLGGYvsFcD4oy7WvJkY14qyPw2jK"], ["created_at", "2020-05-05 18:34:05.240870"], ["updated_at", "2020-05-05 18:34:05.240870"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Fuga quia et quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.244256"], ["updated_at", "2020-05-05 18:34:05.244256"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo praesentium ex numquam?"], ["description", "Reiciendis officia voluptas facilis."], ["date", "2020-05-06 18:34:05.246024"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.247048"], ["updated_at", "2020-05-05 18:34:05.247048"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non voluptatibus dicta ea?"], ["description", "Quo neque illum quae."], ["date", "2020-05-06 18:34:05.248506"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.249375"], ["updated_at", "2020-05-05 18:34:05.249375"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque nemo voluptatem amet?"], ["description", "Facere quia id est."], ["date", "2020-05-06 18:34:05.250578"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.251292"], ["updated_at", "2020-05-05 18:34:05.251292"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Delectus eos dolorem eligendi?"], ["description", "Aperiam magnam itaque iusto."], ["date", "2020-05-06 18:34:05.252362"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.253041"], ["updated_at", "2020-05-05 18:34:05.253041"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos voluptatem deserunt doloremque?"], ["description", "Consequuntur vero cupiditate tempora."], ["date", "2020-05-06 18:34:05.254100"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.254775"], ["updated_at", "2020-05-05 18:34:05.254775"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam ad temporibus quo?"], ["description", "Adipisci voluptatem et accusantium."], ["date", "2020-05-06 18:34:05.255836"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.256720"], ["updated_at", "2020-05-05 18:34:05.256720"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut sit dignissimos totam?"], ["description", "Velit dolorem exercitationem quia."], ["date", "2020-05-06 18:34:05.258253"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.259351"], ["updated_at", "2020-05-05 18:34:05.259351"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam esse aliquid saepe?"], ["description", "Et deserunt aut perspiciatis."], ["date", "2020-05-06 18:34:05.261398"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.262527"], ["updated_at", "2020-05-05 18:34:05.262527"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi perspiciatis est id?"], ["description", "Maiores qui occaecati quos."], ["date", "2020-05-06 18:34:05.263885"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.264648"], ["updated_at", "2020-05-05 18:34:05.264648"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio rerum est aperiam?"], ["description", "Minus assumenda quos quis."], ["date", "2020-05-06 18:34:05.266348"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.267099"], ["updated_at", "2020-05-05 18:34:05.267099"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur non sequi esse?"], ["description", "Illum eaque quis nihil."], ["date", "2020-05-06 18:34:05.268318"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.269091"], ["updated_at", "2020-05-05 18:34:05.269091"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et dignissimos soluta deleniti?"], ["description", "Odio nam voluptatum eveniet."], ["date", "2020-05-06 18:34:05.270192"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.270869"], ["updated_at", "2020-05-05 18:34:05.270869"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus eum nisi dolor?"], ["description", "Dolorem maxime nostrum consequatur."], ["date", "2020-05-06 18:34:05.271971"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.272633"], ["updated_at", "2020-05-05 18:34:05.272633"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem debitis veniam exercitationem?"], ["description", "Velit dolore omnis mollitia."], ["date", "2020-05-06 18:34:05.273856"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.274539"], ["updated_at", "2020-05-05 18:34:05.274539"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut neque vel enim?"], ["description", "Nobis aut vitae similique."], ["date", "2020-05-06 18:34:05.275923"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.276769"], ["updated_at", "2020-05-05 18:34:05.276769"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi nobis et corrupti?"], ["description", "Pariatur vel in occaecati."], ["date", "2020-05-06 18:34:05.279097"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.280234"], ["updated_at", "2020-05-05 18:34:05.280234"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea voluptatem possimus eos?"], ["description", "Quia eveniet accusantium impedit."], ["date", "2020-05-06 18:34:05.281704"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.282483"], ["updated_at", "2020-05-05 18:34:05.282483"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus dignissimos recusandae quasi?"], ["description", "Necessitatibus quis iure nam."], ["date", "2020-05-06 18:34:05.283765"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.284489"], ["updated_at", "2020-05-05 18:34:05.284489"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et cumque numquam dolores?"], ["description", "Laboriosam neque vitae ducimus."], ["date", "2020-05-06 18:34:05.285653"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.286361"], ["updated_at", "2020-05-05 18:34:05.286361"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut suscipit ducimus consequuntur?"], ["description", "Qui dolorem quam doloribus."], ["date", "2020-05-06 18:34:05.287558"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:05.288303"], ["updated_at", "2020-05-05 18:34:05.288303"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetingsController#destroy as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + UserMeeting Load (0.1ms) SELECT "user_meetings".* FROM "user_meetings" WHERE "user_meetings"."meeting_id" = ? [["meeting_id", 1]] + Meeting Destroy (0.1ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 6ms (ActiveRecord: 0.7ms | Allocations: 2317) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (32.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "beatae"], ["description", "Expedita vel consectetur ipsa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.333467"], ["updated_at", "2020-05-05 18:34:05.333467"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "In a accusamus totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.336360"], ["updated_at", "2020-05-05 18:34:05.336360"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Repellat quis culpa cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.337995"], ["updated_at", "2020-05-05 18:34:05.337995"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Voluptatum aut iusto pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.339799"], ["updated_at", "2020-05-05 18:34:05.339799"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Est aspernatur nam dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.342237"], ["updated_at", "2020-05-05 18:34:05.342237"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rem"], ["description", "Dignissimos neque sequi in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.344060"], ["updated_at", "2020-05-05 18:34:05.344060"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "praesentium"], ["description", "Possimus eligendi porro sequi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.345598"], ["updated_at", "2020-05-05 18:34:05.345598"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Sit laboriosam earum illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.347070"], ["updated_at", "2020-05-05 18:34:05.347070"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusamus"], ["description", "Aspernatur in quia rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.348419"], ["updated_at", "2020-05-05 18:34:05.348419"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ratione"], ["description", "Maxime expedita commodi qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.349749"], ["updated_at", "2020-05-05 18:34:05.349749"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Galen Thiel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$sVW.HidwDlRVvIdSHzr8l.0dfL83oU1YJ2e.RyFQVPTldUu5iW3x."], ["created_at", "2020-05-05 18:34:05.352342"], ["updated_at", "2020-05-05 18:34:05.352342"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.57ms) +Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.3ms | Allocations: 2915) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Hic ex impedit ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.372302"], ["updated_at", "2020-05-05 18:34:05.372302"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Necessitatibus velit vel numquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.374975"], ["updated_at", "2020-05-05 18:34:05.374975"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Molestiae unde perspiciatis harum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.376363"], ["updated_at", "2020-05-05 18:34:05.376363"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Aut aliquid architecto vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.377933"], ["updated_at", "2020-05-05 18:34:05.377933"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "hic"], ["description", "Qui quae ut molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.380070"], ["updated_at", "2020-05-05 18:34:05.380070"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cupiditate"], ["description", "Placeat et aut ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.382552"], ["updated_at", "2020-05-05 18:34:05.382552"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Sunt non voluptatem rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.384388"], ["updated_at", "2020-05-05 18:34:05.384388"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatibus"], ["description", "Accusantium praesentium ratione consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.385685"], ["updated_at", "2020-05-05 18:34:05.385685"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Expedita accusamus omnis maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.386984"], ["updated_at", "2020-05-05 18:34:05.386984"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perferendis"], ["description", "Placeat id ut eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.388432"], ["updated_at", "2020-05-05 18:34:05.388432"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Muriel Ferry"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FPGuF.L4iv3Xcvn0z6bl/OWYgTk9m400aowy7Eq9HtwcbaG/PqnH6"], ["created_at", "2020-05-05 18:34:05.391192"], ["updated_at", "2020-05-05 18:34:05.391192"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2842) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptate"], ["description", "Omnis fuga ut aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.409197"], ["updated_at", "2020-05-05 18:34:05.409197"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Autem rem praesentium iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.411877"], ["updated_at", "2020-05-05 18:34:05.411877"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusamus"], ["description", "Cum voluptatem ipsam quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.413427"], ["updated_at", "2020-05-05 18:34:05.413427"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perspiciatis"], ["description", "Magni ut quo fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.414697"], ["updated_at", "2020-05-05 18:34:05.414697"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quaerat"], ["description", "Rerum nihil veniam vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.416018"], ["updated_at", "2020-05-05 18:34:05.416018"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "explicabo"], ["description", "Mollitia similique odit consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.417367"], ["updated_at", "2020-05-05 18:34:05.417367"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Non quia nihil architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.418992"], ["updated_at", "2020-05-05 18:34:05.418992"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Reiciendis tempora ea facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.420567"], ["updated_at", "2020-05-05 18:34:05.420567"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "saepe"], ["description", "Et esse eius ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.422693"], ["updated_at", "2020-05-05 18:34:05.422693"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatibus"], ["description", "Asperiores qui temporibus est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.424755"], ["updated_at", "2020-05-05 18:34:05.424755"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Francina Abshire DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$f5F71KTGSrK4Y4TNbRCPkenLLP8IJIUEJsP7GgpBNIVsywwMGyVla"], ["created_at", "2020-05-05 18:34:05.427423"], ["updated_at", "2020-05-05 18:34:05.427423"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.46ms) +Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.2ms | Allocations: 1241) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusantium"], ["description", "Consequatur voluptatem nihil sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.448305"], ["updated_at", "2020-05-05 18:34:05.448305"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "optio"], ["description", "Et aperiam beatae quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.451097"], ["updated_at", "2020-05-05 18:34:05.451097"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Et sit esse eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.452539"], ["updated_at", "2020-05-05 18:34:05.452539"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestias"], ["description", "Dicta aut voluptatem dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.453819"], ["updated_at", "2020-05-05 18:34:05.453819"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consectetur"], ["description", "Sed et aliquam nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.455124"], ["updated_at", "2020-05-05 18:34:05.455124"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deserunt"], ["description", "Modi repellendus quaerat est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.456421"], ["updated_at", "2020-05-05 18:34:05.456421"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptate"], ["description", "Doloribus voluptas est voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.457940"], ["updated_at", "2020-05-05 18:34:05.457940"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "similique"], ["description", "Fugiat suscipit praesentium odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.459896"], ["updated_at", "2020-05-05 18:34:05.459896"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Repellendus non eveniet repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.462250"], ["updated_at", "2020-05-05 18:34:05.462250"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "porro"], ["description", "Autem dolores possimus est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.464237"], ["updated_at", "2020-05-05 18:34:05.464237"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jean Mann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KYUtN47qzZlUtny5SVXZiO18ztLOO.bqSCCFCO6ZyUe3XeQC4tRES"], ["created_at", "2020-05-05 18:34:05.466907"], ["updated_at", "2020-05-05 18:34:05.466907"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2843) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.79ms) +Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.2ms | Allocations: 1240) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Aut ut officiis aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.488518"], ["updated_at", "2020-05-05 18:34:05.488518"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cupiditate"], ["description", "Quas in velit et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.491355"], ["updated_at", "2020-05-05 18:34:05.491355"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "reiciendis"], ["description", "Nihil rerum eaque reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.492794"], ["updated_at", "2020-05-05 18:34:05.492794"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vero"], ["description", "Possimus doloribus maiores omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.494019"], ["updated_at", "2020-05-05 18:34:05.494019"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Eaque nobis praesentium at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.495310"], ["updated_at", "2020-05-05 18:34:05.495310"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Amet molestias vel dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.496633"], ["updated_at", "2020-05-05 18:34:05.496633"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sequi"], ["description", "Quisquam asperiores adipisci tenetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.497991"], ["updated_at", "2020-05-05 18:34:05.497991"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "porro"], ["description", "Corporis facilis vitae rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.499707"], ["updated_at", "2020-05-05 18:34:05.499707"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "architecto"], ["description", "Nostrum reprehenderit quis suscipit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.501404"], ["updated_at", "2020-05-05 18:34:05.501404"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "itaque"], ["description", "Itaque esse reprehenderit perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.503862"], ["updated_at", "2020-05-05 18:34:05.503862"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Sandy Runolfsdottir"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$sjZR3E18q4njpKa2NE/iqe8i5Yjoodx1XXMdA4zAkB29r7VLbQdH."], ["created_at", "2020-05-05 18:34:05.506808"], ["updated_at", "2020-05-05 18:34:05.506808"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2844) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nobis"], ["description", "Accusantium est esse aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.525998"], ["updated_at", "2020-05-05 18:34:05.525998"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Et atque ut ullam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.529088"], ["updated_at", "2020-05-05 18:34:05.529088"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Voluptatem sint ea suscipit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.530611"], ["updated_at", "2020-05-05 18:34:05.530611"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Temporibus eius pariatur sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.532056"], ["updated_at", "2020-05-05 18:34:05.532056"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatum"], ["description", "Accusantium enim voluptas officiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.533454"], ["updated_at", "2020-05-05 18:34:05.533454"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellendus"], ["description", "Officiis natus est exercitationem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.534798"], ["updated_at", "2020-05-05 18:34:05.534798"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Odio nemo quibusdam est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.536075"], ["updated_at", "2020-05-05 18:34:05.536075"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nisi"], ["description", "Qui eaque quia velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.537350"], ["updated_at", "2020-05-05 18:34:05.537350"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deserunt"], ["description", "Et quam optio minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.539156"], ["updated_at", "2020-05-05 18:34:05.539156"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minus"], ["description", "Sapiente quia excepturi voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.540910"], ["updated_at", "2020-05-05 18:34:05.540910"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Joan McClure"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/IcDgTtzZODq/XzBzjewsOHXF/045mPf.RSB94jW6eHIhhqt7AQXm"], ["created_at", "2020-05-05 18:34:05.544556"], ["updated_at", "2020-05-05 18:34:05.544556"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.38ms) +Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.1ms | Allocations: 2845) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "asperiores"], ["description", "Ad dolor voluptatem temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.578636"], ["updated_at", "2020-05-05 18:34:05.578636"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "labore"], ["description", "Asperiores est dicta iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.583119"], ["updated_at", "2020-05-05 18:34:05.583119"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magni"], ["description", "Ut consequatur rerum aperiam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.585198"], ["updated_at", "2020-05-05 18:34:05.585198"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Enim cumque est temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.586631"], ["updated_at", "2020-05-05 18:34:05.586631"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Fuga reprehenderit nesciunt soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.588121"], ["updated_at", "2020-05-05 18:34:05.588121"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dignissimos"], ["description", "Consequuntur mollitia expedita iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.589593"], ["updated_at", "2020-05-05 18:34:05.589593"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Ipsa quam dolores possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.590890"], ["updated_at", "2020-05-05 18:34:05.590890"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Sapiente doloremque nemo delectus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.592189"], ["updated_at", "2020-05-05 18:34:05.592189"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Nulla dolores qui repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.593473"], ["updated_at", "2020-05-05 18:34:05.593473"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Accusantium aut facilis quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.594750"], ["updated_at", "2020-05-05 18:34:05.594750"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ruben Sanford"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XQzMDs/WrMJ7MdYnSRmd4OeXSr/66XjoV5w5w42QhZ1BR2wdOpZ1e"], ["created_at", "2020-05-05 18:34:05.597410"], ["updated_at", "2020-05-05 18:34:05.597410"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.9ms | ActiveRecord: 0.2ms | Allocations: 2846) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:34: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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:34:05.622584"], ["updated_at", "2020-05-05 18:34:05.622584"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.62ms) +Completed 201 Created in 22ms (Views: 1.1ms | ActiveRecord: 1.2ms | Allocations: 6207) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Voluptatem non reprehenderit aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.640147"], ["updated_at", "2020-05-05 18:34:05.640147"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Itaque similique omnis dolore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.643201"], ["updated_at", "2020-05-05 18:34:05.643201"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perferendis"], ["description", "Cumque placeat ipsum earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.644739"], ["updated_at", "2020-05-05 18:34:05.644739"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "modi"], ["description", "Commodi nisi qui voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.646568"], ["updated_at", "2020-05-05 18:34:05.646568"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "saepe"], ["description", "Ullam dolorem sed natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.648187"], ["updated_at", "2020-05-05 18:34:05.648187"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eaque"], ["description", "Facilis placeat error culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.649719"], ["updated_at", "2020-05-05 18:34:05.649719"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Placeat accusantium qui cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.651101"], ["updated_at", "2020-05-05 18:34:05.651101"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quam"], ["description", "Sapiente voluptatem et esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.652402"], ["updated_at", "2020-05-05 18:34:05.652402"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Dolore dolor qui aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.653764"], ["updated_at", "2020-05-05 18:34:05.653764"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Id doloribus quod et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.655049"], ["updated_at", "2020-05-05 18:34:05.655049"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nancee Roob"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BobyIksaL37VdcsSfpgGju7jWo.xua1h4iISJZ/I/WN0Sk6fs4TtW"], ["created_at", "2020-05-05 18:34:05.657668"], ["updated_at", "2020-05-05 18:34:05.657668"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:34: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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:34:05.669613"], ["updated_at", "2020-05-05 18:34:05.669613"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.51ms) +Completed 201 Created in 5ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 2251) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquam"], ["description", "Quo similique architecto assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.682188"], ["updated_at", "2020-05-05 18:34:05.682188"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsa"], ["description", "Architecto magnam qui quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.684985"], ["updated_at", "2020-05-05 18:34:05.684985"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Porro consequuntur omnis nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.686461"], ["updated_at", "2020-05-05 18:34:05.686461"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Enim quia consectetur eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.687791"], ["updated_at", "2020-05-05 18:34:05.687791"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Alias sed laboriosam corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.689193"], ["updated_at", "2020-05-05 18:34:05.689193"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nemo"], ["description", "Perspiciatis quia voluptatem rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.690565"], ["updated_at", "2020-05-05 18:34:05.690565"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "A magni at aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.691873"], ["updated_at", "2020-05-05 18:34:05.691873"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Eligendi eos architecto nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.693156"], ["updated_at", "2020-05-05 18:34:05.693156"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eveniet"], ["description", "Sed reiciendis maxime itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.694397"], ["updated_at", "2020-05-05 18:34:05.694397"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "placeat"], ["description", "Et ea sit eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.695825"], ["updated_at", "2020-05-05 18:34:05.695825"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Noel Sporer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nGTScHcTz/airwNpnxlr4.NxbPv/2m3C.hVrbsjfChiFxunQAxuee"], ["created_at", "2020-05-05 18:34:05.698556"], ["updated_at", "2020-05-05 18:34:05.698556"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.32ms) +Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.3ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 4006) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nesciunt"], ["description", "Facilis quia minima commodi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.723817"], ["updated_at", "2020-05-05 18:34:05.723817"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Et exercitationem ea suscipit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.726659"], ["updated_at", "2020-05-05 18:34:05.726659"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Sequi delectus libero reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.728138"], ["updated_at", "2020-05-05 18:34:05.728138"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Non aut dolorem aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.729451"], ["updated_at", "2020-05-05 18:34:05.729451"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Accusamus cumque labore dignissimos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.730766"], ["updated_at", "2020-05-05 18:34:05.730766"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "distinctio"], ["description", "Laboriosam sint enim hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.732060"], ["updated_at", "2020-05-05 18:34:05.732060"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Corrupti necessitatibus inventore sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.733344"], ["updated_at", "2020-05-05 18:34:05.733344"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsum"], ["description", "Eius porro omnis architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.734738"], ["updated_at", "2020-05-05 18:34:05.734738"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dignissimos"], ["description", "Eaque quo quis praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.736235"], ["updated_at", "2020-05-05 18:34:05.736235"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Corporis atque sed nisi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.737522"], ["updated_at", "2020-05-05 18:34:05.737522"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Deena Lang"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oSWLrEbkFsLZlfLCIYGjDebU18RkunNgP0jiiNjn8MBArZUCNZ17W"], ["created_at", "2020-05-05 18:34:05.740272"], ["updated_at", "2020-05-05 18:34:05.740272"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.61ms) +Completed 200 OK in 7ms (Views: 5.1ms | ActiveRecord: 0.3ms | Allocations: 2845) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 3697) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quas"], ["description", "Tempore minima ut et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.766601"], ["updated_at", "2020-05-05 18:34:05.766601"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Ut tenetur adipisci dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.769595"], ["updated_at", "2020-05-05 18:34:05.769595"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Enim doloribus autem asperiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.771033"], ["updated_at", "2020-05-05 18:34:05.771033"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "alias"], ["description", "Corrupti provident nesciunt at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.772374"], ["updated_at", "2020-05-05 18:34:05.772374"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iure"], ["description", "Incidunt suscipit ut officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.773802"], ["updated_at", "2020-05-05 18:34:05.773802"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consectetur"], ["description", "Quasi repellat ut sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.775078"], ["updated_at", "2020-05-05 18:34:05.775078"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "inventore"], ["description", "Ab labore doloremque rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.776345"], ["updated_at", "2020-05-05 18:34:05.776345"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "asperiores"], ["description", "Ad odit rerum totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.777664"], ["updated_at", "2020-05-05 18:34:05.777664"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptates"], ["description", "Laboriosam ratione excepturi placeat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.779059"], ["updated_at", "2020-05-05 18:34:05.779059"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Nobis ab cum maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.780688"], ["updated_at", "2020-05-05 18:34:05.780688"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Glenn Boehm"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hO.mRi.JE8qLa21sJv1b6.hFQrcXsZSqYPvVZO0W7sah6LTD1M8ra"], ["created_at", "2020-05-05 18:34:05.784014"], ["updated_at", "2020-05-05 18:34:05.784014"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.14ms) +Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2842) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:34:05.794770"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 1043) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dicta"], ["description", "Architecto beatae et et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.804875"], ["updated_at", "2020-05-05 18:34:05.804875"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "recusandae"], ["description", "Ut culpa voluptas eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.807662"], ["updated_at", "2020-05-05 18:34:05.807662"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Illo qui sint odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.809138"], ["updated_at", "2020-05-05 18:34:05.809138"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Omnis incidunt iste commodi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.810415"], ["updated_at", "2020-05-05 18:34:05.810415"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Dolorum veniam magnam corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.811685"], ["updated_at", "2020-05-05 18:34:05.811685"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aperiam"], ["description", "Ipsum repellat qui alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.812999"], ["updated_at", "2020-05-05 18:34:05.812999"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Tenetur neque voluptate rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.814281"], ["updated_at", "2020-05-05 18:34:05.814281"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Fuga rerum suscipit sapiente."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.815553"], ["updated_at", "2020-05-05 18:34:05.815553"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odit"], ["description", "Similique sit reiciendis in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.816858"], ["updated_at", "2020-05-05 18:34:05.816858"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Minima ducimus omnis dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.818171"], ["updated_at", "2020-05-05 18:34:05.818171"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rosemarie Cremin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$L2CGq0gGvovVEls7K4QyYe7C2ErMJ78UnoQkiAHkMFCuvJeZ63hLi"], ["created_at", "2020-05-05 18:34:05.820818"], ["updated_at", "2020-05-05 18:34:05.820818"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.7ms | ActiveRecord: 0.2ms | Allocations: 2845) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:34:05.832779"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 999) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Exercitationem ipsum consectetur optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.843200"], ["updated_at", "2020-05-05 18:34:05.843200"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsum"], ["description", "Et iste provident beatae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.846056"], ["updated_at", "2020-05-05 18:34:05.846056"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "unde"], ["description", "Laborum rerum blanditiis occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.847480"], ["updated_at", "2020-05-05 18:34:05.847480"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nobis"], ["description", "Ducimus molestiae et aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.848833"], ["updated_at", "2020-05-05 18:34:05.848833"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloribus"], ["description", "Ea ut voluptatem totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.850106"], ["updated_at", "2020-05-05 18:34:05.850106"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "culpa"], ["description", "Doloremque omnis perspiciatis tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.851386"], ["updated_at", "2020-05-05 18:34:05.851386"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "itaque"], ["description", "Fugiat et exercitationem ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.852655"], ["updated_at", "2020-05-05 18:34:05.852655"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptates"], ["description", "Illo sit aut et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.853916"], ["updated_at", "2020-05-05 18:34:05.853916"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odio"], ["description", "Adipisci enim tenetur voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.855126"], ["updated_at", "2020-05-05 18:34:05.855126"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sapiente"], ["description", "Omnis expedita doloremque molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:05.856395"], ["updated_at", "2020-05-05 18:34:05.856395"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Julio O'Connell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hEqBXDsZsTFVmkmh0RYnXevdIi9Wl2fvkZEQ.znUvetGdICVxfPmm"], ["created_at", "2020-05-05 18:34:05.859067"], ["updated_at", "2020-05-05 18:34:05.859067"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.44ms) +Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1205) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (4.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Junior Haley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$x/A1NW/vnqTlkrIhONDxfuUa0IG3JnIpsMf95EOIxGon21FyGaELq"], ["created_at", "2020-05-05 18:34:05.881581"], ["updated_at", "2020-05-05 18:34:05.881581"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Barton D'Amore"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0y2ZQlIU7RWjp2rgoTmcKO.UYeeJDswPdu6XUuoEzLGUmKp6VkRoG"], ["created_at", "2020-05-05 18:34:05.886545"], ["updated_at", "2020-05-05 18:34:05.886545"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Reynaldo Price"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mz36VwH38vHP0tT8ytqfGO7RKE31K6vBvII4a/EbxLGcKJxmQE.eG"], ["created_at", "2020-05-05 18:34:05.889567"], ["updated_at", "2020-05-05 18:34:05.889567"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alison Langosh"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gGw3vP8rXwNZ6M0SugIP.Odk7etdORLn5s5f2Bi.sPQYVcjScVNvC"], ["created_at", "2020-05-05 18:34:05.892122"], ["updated_at", "2020-05-05 18:34:05.892122"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Sid Schaefer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ltxWMV0BfOumCuZksYNNr.NzDSVCw4IXpIn2XcenAZVj3cS1suTnO"], ["created_at", "2020-05-05 18:34:05.894529"], ["updated_at", "2020-05-05 18:34:05.894529"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Loren Towne"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TGSG0897jj4KOkMMktYR1ON1JL/.aGE.RyPY6FMl48PAOokWXhHoa"], ["created_at", "2020-05-05 18:34:05.896915"], ["updated_at", "2020-05-05 18:34:05.896915"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lilla Champlin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$EDNG/pRyqN.eFn0w8C96bupOzG9jGg65FxsP8IPNtccAtB9Pasrkq"], ["created_at", "2020-05-05 18:34:05.899291"], ["updated_at", "2020-05-05 18:34:05.899291"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Denver Skiles"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Z1oRVj9AnBiTchK9IkTHeuXmMGorl8papBfl7bCaYPOlB5ke.eLgW"], ["created_at", "2020-05-05 18:34:05.902002"], ["updated_at", "2020-05-05 18:34:05.902002"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Felton Parker"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$v6KQ.e38UKc10eFqnAL9P.jrRa.5EGsaLE0PUTWbioFQu1oyNLNrq"], ["created_at", "2020-05-05 18:34:05.905291"], ["updated_at", "2020-05-05 18:34:05.905291"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Melodee Lesch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$32woPORNemc5qqxdvRg7OeLDZZpf5JaVnzwDB7RvVR6L9FN3CYRHm"], ["created_at", "2020-05-05 18:34:05.908519"], ["updated_at", "2020-05-05 18:34:05.908519"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.91ms) +Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms | Allocations: 2345) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jeffry Brekke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HiHaDnxrA7TacxK7VJSYlu0brWZaUmqCSWjFfQZ85bjs0i8ro/q/K"], ["created_at", "2020-05-05 18:34:05.927486"], ["updated_at", "2020-05-05 18:34:05.927486"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Judith Cremin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZPj2uD5hSxLqHRCvS4htg.aYUDUojgUL5OlEb7TLrHqxXMSxUxmgW"], ["created_at", "2020-05-05 18:34:05.931447"], ["updated_at", "2020-05-05 18:34:05.931447"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sherry Reinger"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TzQ643n4x8EUbc4TTBTOsO5oE.yabMB9ueJWyn8/GZyrr4r9HbAWW"], ["created_at", "2020-05-05 18:34:05.934015"], ["updated_at", "2020-05-05 18:34:05.934015"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Enid Bergnaum IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YMF5vGFGl8Ly74TU/UNtzerqc7yxFAsuxOtGQnuvhGFf3iCBHXghK"], ["created_at", "2020-05-05 18:34:05.936426"], ["updated_at", "2020-05-05 18:34:05.936426"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Lauren Shields"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$K/O3xeItVAcAdmEL5ouw7.cps.0wc0o/xw5sUDUa4F4.6w/oEL3uu"], ["created_at", "2020-05-05 18:34:05.938897"], ["updated_at", "2020-05-05 18:34:05.938897"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Shad Gleason"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JYaItJlH2ZVm3PcNa4aFsOIAbP7CCfOcHoBhhZ8WjdLP2VMoc9Pmm"], ["created_at", "2020-05-05 18:34:05.941393"], ["updated_at", "2020-05-05 18:34:05.941393"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Breana Roberts"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dxpJI2XD1h4lPOdJ3BnBz.cwAjq5/Lmvur6vX2dsUvGMQOFdkKWye"], ["created_at", "2020-05-05 18:34:05.944234"], ["updated_at", "2020-05-05 18:34:05.944234"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Loni Blick"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OWYPRTH2.G4W7M9sFYeS/uDj.DL5FFd3nUyFJsDINR/X1Vyvolnv2"], ["created_at", "2020-05-05 18:34:05.947915"], ["updated_at", "2020-05-05 18:34:05.947915"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tonia Will"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$lWVUMQTZZL/s7qdLz8yhk.EN.klT4k7Rdgr7.LSRfm8xIYYvHg.1q"], ["created_at", "2020-05-05 18:34:05.950712"], ["updated_at", "2020-05-05 18:34:05.950712"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miyoko Grady"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$F8Hsll/bKfJK2lbn8MBKsO7o6yi587ad77lgwAmQbRzX3hu15.PhO"], ["created_at", "2020-05-05 18:34:05.952984"], ["updated_at", "2020-05-05 18:34:05.952984"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.06ms) +Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.1ms | Allocations: 2203) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Katerine Jones II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NaybtKL71MnXRDV5idADhuRFoyItmkQxc0OdfiYi3DskoBNWWpcxS"], ["created_at", "2020-05-05 18:34:05.969579"], ["updated_at", "2020-05-05 18:34:05.969579"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jules Ledner IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$icQ7cOkVrKlyKxF61QJ1su69VC0vkJgMv5L0blI2lHRK/umcVG7nm"], ["created_at", "2020-05-05 18:34:05.973649"], ["updated_at", "2020-05-05 18:34:05.973649"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jermaine Ward"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Xa/VbSbdHNWzR4xHFTUw/e5d3xwgfeIZRxDwmbL6JpVjLGmG3a9qe"], ["created_at", "2020-05-05 18:34:05.976328"], ["updated_at", "2020-05-05 18:34:05.976328"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alton Effertz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$G/wFyo92dGGT2.6YH5..iupOvK3OoFqqEmtP9NeLlwjYS2NuaaX2a"], ["created_at", "2020-05-05 18:34:05.978781"], ["updated_at", "2020-05-05 18:34:05.978781"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Coleman Hilpert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$N.Dp.H0cUXFdzMpLGLfZGOCVIbQrAvSTnJTr6C7eoi6pJ1j558vwm"], ["created_at", "2020-05-05 18:34:05.981276"], ["updated_at", "2020-05-05 18:34:05.981276"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Anglea Yundt"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HPWZcvJj2t9Qu2pQyYakh.duWHu1iZcp4x5jb/jtW58CF3gUvf14a"], ["created_at", "2020-05-05 18:34:05.984051"], ["updated_at", "2020-05-05 18:34:05.984051"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rickey Block"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VAuGg6UnY1iJ8dIi0DWCdOr3Uskz5OTB2qpLJi9lfcqgcBWpCTf72"], ["created_at", "2020-05-05 18:34:05.987182"], ["updated_at", "2020-05-05 18:34:05.987182"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Heather Simonis MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$eZSZvV0hH7Pqrsm7ReNNneVpHtO9ypFypBCOePPUyLTbXOg0Kxdee"], ["created_at", "2020-05-05 18:34:05.989779"], ["updated_at", "2020-05-05 18:34:05.989779"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mariam Schulist DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5gZ/NUB1X1lGrgzzwK3KheBu6ooXiGIbXwHOLghQiuxg.EjjOVflO"], ["created_at", "2020-05-05 18:34:05.992300"], ["updated_at", "2020-05-05 18:34:05.992300"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Raina Rippin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rEY7JgI6W7BnMq0bR3GeS.UKg.D6.HnxTpIq9nevkKBBXO0DURe.u"], ["created_at", "2020-05-05 18:34:05.994662"], ["updated_at", "2020-05-05 18:34:05.994662"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:34:05 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.75ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:34:06 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.35ms) +Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (40.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tracey Dooley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$M3dYLeGRKYEvUqXQr320Pep8yb9wyCF9okGmIMup3E.c7Oop.zUaa"], ["created_at", "2020-05-05 18:34:06.050363"], ["updated_at", "2020-05-05 18:34:06.050363"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Melania Rath"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Fd182GQgPttMsKLk9HZI5e8FXLqIpy1TPE5iYnZGDMr60LxcUVGGC"], ["created_at", "2020-05-05 18:34:06.055176"], ["updated_at", "2020-05-05 18:34:06.055176"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Stepanie Wisozk"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$L3Zm2uElA4NuNa1HIXrTMuf5mZswAACrxKjyP5BL8hUBrOsizi0YC"], ["created_at", "2020-05-05 18:34:06.058524"], ["updated_at", "2020-05-05 18:34:06.058524"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Han Lowe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xsE4x.QlKJ78GGa4e9QSQuyMr3qb1UugVP17osVwmm4rYHpeVKDgm"], ["created_at", "2020-05-05 18:34:06.061392"], ["updated_at", "2020-05-05 18:34:06.061392"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Katheleen Buckridge"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$sKjKMSIGIZjz/PgZghRMBOTbFEFpvVsmAqja/IhQHvOVCirEkmuE2"], ["created_at", "2020-05-05 18:34:06.065159"], ["updated_at", "2020-05-05 18:34:06.065159"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Maye Cremin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LgHvAU5GIdGJcM6GxwR5vuliTcKRlmnOBadDSChwDIjOGPgpIE72O"], ["created_at", "2020-05-05 18:34:06.068033"], ["updated_at", "2020-05-05 18:34:06.068033"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Toney Pollich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$AFCmq6oz2286kBAXchxv9er8MxlgVehyKqtVISBkoYCXcQ6yqs02q"], ["created_at", "2020-05-05 18:34:06.070634"], ["updated_at", "2020-05-05 18:34:06.070634"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Galina Borer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$od3fvhFwYK0OrsRkXb9g0Otce4voozeZUbqXBEkkutxlsBL0mC29O"], ["created_at", "2020-05-05 18:34:06.072954"], ["updated_at", "2020-05-05 18:34:06.072954"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Linwood Stokes"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TlowDtTSnqrF95zg.4orLON27cxf2FGj4aYOUrAYWUWOOdb.ecIQK"], ["created_at", "2020-05-05 18:34:06.075238"], ["updated_at", "2020-05-05 18:34:06.075238"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leonel Ondricka DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Btge6EuODDyJ0OmFgqSVoe9MmL6zmjfsq9dSMbE1wOukWfX8bxWFy"], ["created_at", "2020-05-05 18:34:06.077643"], ["updated_at", "2020-05-05 18:34:06.077643"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:34:06 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.99ms) +Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:34:06 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.48ms) +Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marilee Jast"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$f7Dr4RimN0mgOFNtOFc2zeT5qFuEGY6kxopcBDhOc19wmq53beQTG"], ["created_at", "2020-05-05 18:34:06.098198"], ["updated_at", "2020-05-05 18:34:06.098198"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Ileana Kozey"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Kz82MBGXx8WDRVwAmW//dOV8bKL4tZCtHPi4c8xRsZ4qNaYyt7nqC"], ["created_at", "2020-05-05 18:34:06.102138"], ["updated_at", "2020-05-05 18:34:06.102138"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jan MacGyver"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$cAwwPf59SxmoNom5XPskReCR8UNQ91YyZE8257O3pzP3fh8JkhmU."], ["created_at", "2020-05-05 18:34:06.105629"], ["updated_at", "2020-05-05 18:34:06.105629"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ardelia Bayer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WWlPOOrMQvL.IHOFc/T6LudU1tI4jn.hfPzCU6PkXgCy3IwZWLMw2"], ["created_at", "2020-05-05 18:34:06.108740"], ["updated_at", "2020-05-05 18:34:06.108740"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Lacy Kuvalis"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0dzjXfEJP1NZv6fDuoDzmOtTAr.AZUqiIMgdIGSZbCjgaLTf/DqDC"], ["created_at", "2020-05-05 18:34:06.111388"], ["updated_at", "2020-05-05 18:34:06.111388"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Araceli Rau"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$95k0ZCJ6LXFmpU7xNGk7Gui7.06kV6vAqEvs.UNuGk4t1jgAV2r7i"], ["created_at", "2020-05-05 18:34:06.113831"], ["updated_at", "2020-05-05 18:34:06.113831"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kaitlin Mertz DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JDo2RRs8RgB/HOSvIHgCt.LM/XmSL/.JHaHXRQG0elPsHLyDYSJD."], ["created_at", "2020-05-05 18:34:06.116224"], ["updated_at", "2020-05-05 18:34:06.116224"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dee Goyette Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WVWe1zdP.RMun5hfP8EDyOxar4OUMbQz/60NAfopb8mQczQkhPXNC"], ["created_at", "2020-05-05 18:34:06.118747"], ["updated_at", "2020-05-05 18:34:06.118747"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Anette Krajcik"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$It6G59.5fcB6xtixnlEFIePIikzzHdE92QAYi4.2x8RB5Su8CT.EC"], ["created_at", "2020-05-05 18:34:06.121443"], ["updated_at", "2020-05-05 18:34:06.121443"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Craig Boyer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WBcoW5AlNY022WAT2Gw0x.tev4RqMfSPmK6jh2IS5BOh5iqLmuFEi"], ["created_at", "2020-05-05 18:34:06.123980"], ["updated_at", "2020-05-05 18:34:06.123980"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:34:06 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.16ms) +Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:34:06 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bryon Emard"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$cPurE.2/2Gs5CPy.vrvU5Od..7R1QYwB15Prvf.aK4PWwlydBQJ3O"], ["created_at", "2020-05-05 18:34:06.147143"], ["updated_at", "2020-05-05 18:34:06.147143"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Monique Abernathy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$i2jGnhqqBqTpc9C5nYQ8BOp2fxaDLeB2ruHqXRYnoTh8N/Gy04nTG"], ["created_at", "2020-05-05 18:34:06.150889"], ["updated_at", "2020-05-05 18:34:06.150889"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Carlena Funk"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ojN1IbeUcvaEtG1aGXO/O.xkeJHVRZFyiQk3JrEsof9xr5T1qXUZ2"], ["created_at", "2020-05-05 18:34:06.153583"], ["updated_at", "2020-05-05 18:34:06.153583"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ulrike Romaguera III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pGEmH9VvtQOy8fTMlGaRoO4JBYa7rb0Bjatdxpf6HIn55GRJidvrK"], ["created_at", "2020-05-05 18:34:06.156112"], ["updated_at", "2020-05-05 18:34:06.156112"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Teodoro Rutherford"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$J2COsaxokcPmq6PTHEOWN.HMSfR4IhE1OPnkQErdgfX5BWG8T62yG"], ["created_at", "2020-05-05 18:34:06.158604"], ["updated_at", "2020-05-05 18:34:06.158604"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tegan Roob"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$EMX4O1A6BoXsqe3Zg2c1tuWOMJFeWikpRpppqPgzaoFWXuKP90n3K"], ["created_at", "2020-05-05 18:34:06.161029"], ["updated_at", "2020-05-05 18:34:06.161029"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Erline Lowe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Q.RjY23rwV6mHSmnMELLBe.xTXLUJWJj1PyIvEed6mFwnoIOuINTO"], ["created_at", "2020-05-05 18:34:06.163590"], ["updated_at", "2020-05-05 18:34:06.163590"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tamesha Zboncak"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6cLbQX8b.qh9XRzhoBajX.UJeGjq0/9jiT3UOEfUXmz8zTgnsCzxW"], ["created_at", "2020-05-05 18:34:06.166876"], ["updated_at", "2020-05-05 18:34:06.166876"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ta Koss"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZsL5HoCbS90mwuaoG28oUOKXwSkTNWIBYN5Ncrv2C4OUfikRx70DC"], ["created_at", "2020-05-05 18:34:06.169884"], ["updated_at", "2020-05-05 18:34:06.169884"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Berry Carroll"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$D431VvsEWbaHBtgEBOQy9uULBc6nTmmxj4/XIJ8rmq8P/s1fQqSmy"], ["created_at", "2020-05-05 18:34:06.172361"], ["updated_at", "2020-05-05 18:34:06.172361"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:34:06 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.09ms) +Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:34:06 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (4.4ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (141.4ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (75.3ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (123.0ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (85.1ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (98.0ms) DELETE FROM "conversations"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (88.8ms) DELETE FROM "messagems"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (97.4ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (4.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Adolfo Gutkowski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aG9y2ZBZyNY0VXnJp7yFLuxBRcmGINR01.XUegw29Oa8WsjEH/hje"], ["created_at", "2020-05-05 18:34:29.545944"], ["updated_at", "2020-05-05 18:34:29.545944"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magnam"], ["description", "Dolor nemo fugit dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:29.565564"], ["updated_at", "2020-05-05 18:34:29.565564"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum quis molestiae eveniet?"], ["description", "Ut est consequatur numquam."], ["date", "2020-05-06 18:34:29.587394"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.612916"], ["updated_at", "2020-05-05 18:34:29.612916"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui suscipit aliquam mollitia?"], ["description", "Nihil ratione ab rem."], ["date", "2020-05-06 18:34:29.614935"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.615811"], ["updated_at", "2020-05-05 18:34:29.615811"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem debitis fuga voluptas?"], ["description", "Est dolorem repellat facilis."], ["date", "2020-05-06 18:34:29.617321"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.618209"], ["updated_at", "2020-05-05 18:34:29.618209"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit praesentium molestiae deserunt?"], ["description", "Nihil sunt ut odit."], ["date", "2020-05-06 18:34:29.619669"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.620491"], ["updated_at", "2020-05-05 18:34:29.620491"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit eos doloribus qui?"], ["description", "Et nobis ea sit."], ["date", "2020-05-06 18:34:29.621895"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.622669"], ["updated_at", "2020-05-05 18:34:29.622669"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui quasi et odio?"], ["description", "Et et ut commodi."], ["date", "2020-05-06 18:34:29.623939"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.624675"], ["updated_at", "2020-05-05 18:34:29.624675"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi repellat et fugiat?"], ["description", "Omnis odio debitis et."], ["date", "2020-05-06 18:34:29.625906"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.626645"], ["updated_at", "2020-05-05 18:34:29.626645"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam sed assumenda deleniti?"], ["description", "Fuga expedita et quos."], ["date", "2020-05-06 18:34:29.627915"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.628722"], ["updated_at", "2020-05-05 18:34:29.628722"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero animi quo necessitatibus?"], ["description", "Laborum magni earum saepe."], ["date", "2020-05-06 18:34:29.629917"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.630645"], ["updated_at", "2020-05-05 18:34:29.630645"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est dolor atque hic?"], ["description", "Repellat autem fugit delectus."], ["date", "2020-05-06 18:34:29.632529"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.633369"], ["updated_at", "2020-05-05 18:34:29.633369"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur facilis est id?"], ["description", "Architecto ab eos optio."], ["date", "2020-05-06 18:34:29.634792"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.635620"], ["updated_at", "2020-05-05 18:34:29.635620"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro sint facilis error?"], ["description", "Quisquam fugiat suscipit quia."], ["date", "2020-05-06 18:34:29.637108"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.637896"], ["updated_at", "2020-05-05 18:34:29.637896"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem necessitatibus dolorem aut?"], ["description", "Distinctio delectus neque et."], ["date", "2020-05-06 18:34:29.639215"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.640005"], ["updated_at", "2020-05-05 18:34:29.640005"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam facilis quis et?"], ["description", "Ea qui id optio."], ["date", "2020-05-06 18:34:29.641233"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.641966"], ["updated_at", "2020-05-05 18:34:29.641966"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui culpa doloremque ut?"], ["description", "Odit est dolore vero."], ["date", "2020-05-06 18:34:29.643184"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.643911"], ["updated_at", "2020-05-05 18:34:29.643911"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias et quis mollitia?"], ["description", "Impedit tenetur quae non."], ["date", "2020-05-06 18:34:29.645113"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.645832"], ["updated_at", "2020-05-05 18:34:29.645832"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum voluptatem error laborum?"], ["description", "Sint delectus et ut."], ["date", "2020-05-06 18:34:29.647084"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.647816"], ["updated_at", "2020-05-05 18:34:29.647816"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor aperiam voluptatibus enim?"], ["description", "Omnis sint odio excepturi."], ["date", "2020-05-06 18:34:29.649113"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.649840"], ["updated_at", "2020-05-05 18:34:29.649840"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et cumque dolor quos?"], ["description", "Quibusdam enim dignissimos totam."], ["date", "2020-05-06 18:34:29.651220"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.651978"], ["updated_at", "2020-05-05 18:34:29.651978"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas nemo aliquid et?"], ["description", "Qui ea dolore sunt."], ["date", "2020-05-06 18:34:29.653264"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.654061"], ["updated_at", "2020-05-05 18:34:29.654061"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:34:29 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (7.7ms) +Completed 200 OK in 33ms (Views: 14.6ms | ActiveRecord: 0.5ms | Allocations: 8636) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Louie Farrell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NFzNi3zIy9Cu3bW/76WGreDz74e0OE2sKeRTQEIZ2MREJszY.aKRG"], ["created_at", "2020-05-05 18:34:29.735580"], ["updated_at", "2020-05-05 18:34:29.735580"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Ex accusamus ut qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:29.739846"], ["updated_at", "2020-05-05 18:34:29.739846"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum consectetur est odio?"], ["description", "Suscipit quaerat quo omnis."], ["date", "2020-05-06 18:34:29.741758"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.742916"], ["updated_at", "2020-05-05 18:34:29.742916"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo itaque et vel?"], ["description", "Et ut deserunt amet."], ["date", "2020-05-06 18:34:29.744481"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.745332"], ["updated_at", "2020-05-05 18:34:29.745332"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil iste eveniet rerum?"], ["description", "Magni quidem ipsum ipsa."], ["date", "2020-05-06 18:34:29.746628"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.747519"], ["updated_at", "2020-05-05 18:34:29.747519"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et eligendi neque consequatur?"], ["description", "Ad aut excepturi sit."], ["date", "2020-05-06 18:34:29.749024"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.750501"], ["updated_at", "2020-05-05 18:34:29.750501"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea nisi enim alias?"], ["description", "Illum qui molestias rerum."], ["date", "2020-05-06 18:34:29.751982"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.752777"], ["updated_at", "2020-05-05 18:34:29.752777"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut quis placeat sint?"], ["description", "Rerum placeat in dolorum."], ["date", "2020-05-06 18:34:29.753943"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.754730"], ["updated_at", "2020-05-05 18:34:29.754730"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur quis eum expedita?"], ["description", "Eos vel veniam odit."], ["date", "2020-05-06 18:34:29.755863"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.756620"], ["updated_at", "2020-05-05 18:34:29.756620"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore atque non quas?"], ["description", "Omnis et vitae totam."], ["date", "2020-05-06 18:34:29.757767"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.758519"], ["updated_at", "2020-05-05 18:34:29.758519"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error eum aut officia?"], ["description", "Qui aliquam dolorem sit."], ["date", "2020-05-06 18:34:29.759657"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.760327"], ["updated_at", "2020-05-05 18:34:29.760327"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta accusantium est tempora?"], ["description", "Unde commodi vel tenetur."], ["date", "2020-05-06 18:34:29.762199"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.763091"], ["updated_at", "2020-05-05 18:34:29.763091"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti aut sit qui?"], ["description", "At soluta dolor quam."], ["date", "2020-05-06 18:34:29.764442"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.765151"], ["updated_at", "2020-05-05 18:34:29.765151"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et sed occaecati modi?"], ["description", "Et omnis ex qui."], ["date", "2020-05-06 18:34:29.766312"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.766985"], ["updated_at", "2020-05-05 18:34:29.766985"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut et nemo rerum?"], ["description", "Molestiae voluptatem blanditiis libero."], ["date", "2020-05-06 18:34:29.768277"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.769022"], ["updated_at", "2020-05-05 18:34:29.769022"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio delectus dolores voluptatem?"], ["description", "Vero ut non fugit."], ["date", "2020-05-06 18:34:29.770235"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.770911"], ["updated_at", "2020-05-05 18:34:29.770911"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima dolorem velit illo?"], ["description", "Rerum ab amet aliquam."], ["date", "2020-05-06 18:34:29.772105"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.772815"], ["updated_at", "2020-05-05 18:34:29.772815"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum tenetur molestias deleniti?"], ["description", "Earum asperiores est quia."], ["date", "2020-05-06 18:34:29.774004"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.774681"], ["updated_at", "2020-05-05 18:34:29.774681"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque ut est magni?"], ["description", "Earum rem nemo commodi."], ["date", "2020-05-06 18:34:29.775867"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.776512"], ["updated_at", "2020-05-05 18:34:29.776512"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati sint voluptatem ut?"], ["description", "Est recusandae aut vitae."], ["date", "2020-05-06 18:34:29.777638"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.778370"], ["updated_at", "2020-05-05 18:34:29.778370"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam debitis exercitationem quidem?"], ["description", "Ad aliquid et voluptate."], ["date", "2020-05-06 18:34:29.779565"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.780272"], ["updated_at", "2020-05-05 18:34:29.780272"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam qui vel et?"], ["description", "In provident eos debitis."], ["date", "2020-05-06 18:34:29.781411"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.782109"], ["updated_at", "2020-05-05 18:34:29.782109"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:34:29 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (7.42ms) +Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.2ms | Allocations: 5508) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Antonia Stracke DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9yXS5RFCv62cs2trM7juR.vTbAPVdJu09dP01mFpq1P8DA4fmfIR2"], ["created_at", "2020-05-05 18:34:29.809299"], ["updated_at", "2020-05-05 18:34:29.809299"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minus"], ["description", "Doloremque quis repellat dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:29.812991"], ["updated_at", "2020-05-05 18:34:29.812991"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem tempore nostrum est?"], ["description", "Facilis recusandae est et."], ["date", "2020-05-06 18:34:29.814586"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.815561"], ["updated_at", "2020-05-05 18:34:29.815561"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam quod magni ut?"], ["description", "Molestias repellat sit accusamus."], ["date", "2020-05-06 18:34:29.816940"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.817739"], ["updated_at", "2020-05-05 18:34:29.817739"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem non necessitatibus earum?"], ["description", "Quam ut est eligendi."], ["date", "2020-05-06 18:34:29.818999"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.819709"], ["updated_at", "2020-05-05 18:34:29.819709"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum nostrum nesciunt omnis?"], ["description", "Accusamus quidem ut voluptatem."], ["date", "2020-05-06 18:34:29.820823"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.821548"], ["updated_at", "2020-05-05 18:34:29.821548"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint eligendi voluptas perspiciatis?"], ["description", "Inventore exercitationem hic iure."], ["date", "2020-05-06 18:34:29.823064"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.824256"], ["updated_at", "2020-05-05 18:34:29.824256"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit aut consequatur voluptate?"], ["description", "Iure alias in delectus."], ["date", "2020-05-06 18:34:29.826099"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.827018"], ["updated_at", "2020-05-05 18:34:29.827018"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia aut iure odio?"], ["description", "Nihil illum adipisci voluptatem."], ["date", "2020-05-06 18:34:29.828406"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.829204"], ["updated_at", "2020-05-05 18:34:29.829204"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi libero modi voluptatem?"], ["description", "Nam libero consequuntur minus."], ["date", "2020-05-06 18:34:29.830315"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.831019"], ["updated_at", "2020-05-05 18:34:29.831019"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis reprehenderit saepe ut?"], ["description", "Aut repellat hic dolorum."], ["date", "2020-05-06 18:34:29.832195"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.833033"], ["updated_at", "2020-05-05 18:34:29.833033"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo occaecati incidunt rerum?"], ["description", "Minus sint praesentium et."], ["date", "2020-05-06 18:34:29.834905"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.835760"], ["updated_at", "2020-05-05 18:34:29.835760"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos dicta earum quis?"], ["description", "Animi autem et ea."], ["date", "2020-05-06 18:34:29.837174"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.837999"], ["updated_at", "2020-05-05 18:34:29.837999"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et repudiandae commodi pariatur?"], ["description", "Id perferendis porro aut."], ["date", "2020-05-06 18:34:29.839265"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.857823"], ["updated_at", "2020-05-05 18:34:29.857823"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem quibusdam in beatae?"], ["description", "Reiciendis magni est quidem."], ["date", "2020-05-06 18:34:29.859546"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.860406"], ["updated_at", "2020-05-05 18:34:29.860406"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus blanditiis quas quidem?"], ["description", "Velit minima voluptate aliquam."], ["date", "2020-05-06 18:34:29.861680"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.862397"], ["updated_at", "2020-05-05 18:34:29.862397"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe eveniet debitis ut?"], ["description", "Optio ullam deserunt aut."], ["date", "2020-05-06 18:34:29.863798"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.864581"], ["updated_at", "2020-05-05 18:34:29.864581"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores soluta culpa natus?"], ["description", "Laudantium veniam est necessitatibus."], ["date", "2020-05-06 18:34:29.865733"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.866424"], ["updated_at", "2020-05-05 18:34:29.866424"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae id aliquam sunt?"], ["description", "Recusandae corrupti optio quo."], ["date", "2020-05-06 18:34:29.867637"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.868371"], ["updated_at", "2020-05-05 18:34:29.868371"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum eum sunt sint?"], ["description", "Est atque temporibus voluptas."], ["date", "2020-05-06 18:34:29.869675"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.870417"], ["updated_at", "2020-05-05 18:34:29.870417"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est quas ex velit?"], ["description", "Et ullam alias sed."], ["date", "2020-05-06 18:34:29.871583"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.872285"], ["updated_at", "2020-05-05 18:34:29.872285"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem hic qui deserunt?"], ["description", "Dicta vel qui architecto."], ["date", "2020-05-06 18:34:29.873473"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.874157"], ["updated_at", "2020-05-05 18:34:29.874157"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:34:29 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 404 Not Found in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms | Allocations: 866) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Pablo Johnston"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$p3P5yg3trEL.2Ehy12SSCu1BoNiDjSDhHWPkaL6abCCbcsaPJH5zu"], ["created_at", "2020-05-05 18:34:29.893100"], ["updated_at", "2020-05-05 18:34:29.893100"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corporis"], ["description", "Maxime provident ut sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:29.897073"], ["updated_at", "2020-05-05 18:34:29.897073"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem doloremque dignissimos aut?"], ["description", "Ratione voluptatem temporibus nostrum."], ["date", "2020-05-06 18:34:29.898817"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.899741"], ["updated_at", "2020-05-05 18:34:29.899741"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi recusandae enim qui?"], ["description", "Dolores minus quis tenetur."], ["date", "2020-05-06 18:34:29.901133"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.901895"], ["updated_at", "2020-05-05 18:34:29.901895"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem facere quae et?"], ["description", "Sit quo fugiat cupiditate."], ["date", "2020-05-06 18:34:29.903151"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.904014"], ["updated_at", "2020-05-05 18:34:29.904014"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus vel voluptatibus ea?"], ["description", "Hic facilis distinctio doloremque."], ["date", "2020-05-06 18:34:29.905574"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.906998"], ["updated_at", "2020-05-05 18:34:29.906998"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut sed reiciendis rerum?"], ["description", "Eligendi accusamus qui cum."], ["date", "2020-05-06 18:34:29.908575"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.909435"], ["updated_at", "2020-05-05 18:34:29.909435"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident cum quia a?"], ["description", "Dolores illum explicabo praesentium."], ["date", "2020-05-06 18:34:29.910663"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.911362"], ["updated_at", "2020-05-05 18:34:29.911362"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est temporibus quas tenetur?"], ["description", "Ipsum porro atque illum."], ["date", "2020-05-06 18:34:29.912479"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.913148"], ["updated_at", "2020-05-05 18:34:29.913148"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto velit rem neque?"], ["description", "Ratione a veniam consectetur."], ["date", "2020-05-06 18:34:29.914286"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.914964"], ["updated_at", "2020-05-05 18:34:29.914964"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi expedita sint ea?"], ["description", "Omnis recusandae provident ut."], ["date", "2020-05-06 18:34:29.916186"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.916964"], ["updated_at", "2020-05-05 18:34:29.916964"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum velit voluptatem dolorum?"], ["description", "Consequatur officia quam nesciunt."], ["date", "2020-05-06 18:34:29.918763"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.919649"], ["updated_at", "2020-05-05 18:34:29.919649"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro qui qui veritatis?"], ["description", "Voluptatem ut dolorem harum."], ["date", "2020-05-06 18:34:29.920972"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.921692"], ["updated_at", "2020-05-05 18:34:29.921692"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea dicta sit veritatis?"], ["description", "Veniam ipsa dolores dolor."], ["date", "2020-05-06 18:34:29.923033"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.923899"], ["updated_at", "2020-05-05 18:34:29.923899"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia delectus et non?"], ["description", "Aut tempore quia architecto."], ["date", "2020-05-06 18:34:29.925177"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.925916"], ["updated_at", "2020-05-05 18:34:29.925916"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit repellat occaecati quo?"], ["description", "Aut qui quae sunt."], ["date", "2020-05-06 18:34:29.927067"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.927804"], ["updated_at", "2020-05-05 18:34:29.927804"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit labore tempora natus?"], ["description", "Omnis et adipisci quidem."], ["date", "2020-05-06 18:34:29.929079"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.929802"], ["updated_at", "2020-05-05 18:34:29.929802"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum rerum unde et?"], ["description", "Totam id voluptatem harum."], ["date", "2020-05-06 18:34:29.930983"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.931696"], ["updated_at", "2020-05-05 18:34:29.931696"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat vero aliquid iure?"], ["description", "Necessitatibus magnam alias corporis."], ["date", "2020-05-06 18:34:29.932940"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.933695"], ["updated_at", "2020-05-05 18:34:29.933695"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam perspiciatis voluptatem magni?"], ["description", "Ipsam optio omnis placeat."], ["date", "2020-05-06 18:34:29.934971"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.935652"], ["updated_at", "2020-05-05 18:34:29.935652"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint quam reprehenderit sunt?"], ["description", "Occaecati iusto consequatur enim."], ["date", "2020-05-06 18:34:29.936937"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.937660"], ["updated_at", "2020-05-05 18:34:29.937660"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis voluptatibus veritatis est?"], ["description", "Voluptatem in dolorem temporibus."], ["date", "2020-05-06 18:34:29.938976"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.939666"], ["updated_at", "2020-05-05 18:34:29.939666"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:34:29 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Roma Barrows"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gd6hDFJ3jj3bEnL4RTZEWun6WQ9gXcJtGFcW2Qg2dYYVktJ6/uMLe"], ["created_at", "2020-05-05 18:34:29.957811"], ["updated_at", "2020-05-05 18:34:29.957811"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "delectus"], ["description", "Non maxime quia vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:29.960597"], ["updated_at", "2020-05-05 18:34:29.960597"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem ut velit deleniti?"], ["description", "Et officiis in maiores."], ["date", "2020-05-06 18:34:29.962050"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.962958"], ["updated_at", "2020-05-05 18:34:29.962958"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi nihil consequuntur sed?"], ["description", "Et laborum inventore praesentium."], ["date", "2020-05-06 18:34:29.964691"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.965822"], ["updated_at", "2020-05-05 18:34:29.965822"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur pariatur est consequuntur?"], ["description", "Consequatur tempora laudantium est."], ["date", "2020-05-06 18:34:29.968262"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.969485"], ["updated_at", "2020-05-05 18:34:29.969485"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est deserunt et accusantium?"], ["description", "Consequuntur dolor doloribus sit."], ["date", "2020-05-06 18:34:29.970981"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.971779"], ["updated_at", "2020-05-05 18:34:29.971779"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil hic dolore tenetur?"], ["description", "Dolorum omnis doloribus qui."], ["date", "2020-05-06 18:34:29.973019"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.973743"], ["updated_at", "2020-05-05 18:34:29.973743"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt suscipit est sunt?"], ["description", "Dolores dolorem et quaerat."], ["date", "2020-05-06 18:34:29.974856"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.975529"], ["updated_at", "2020-05-05 18:34:29.975529"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam voluptatem corrupti quo?"], ["description", "Velit quis corrupti accusamus."], ["date", "2020-05-06 18:34:29.976637"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.977379"], ["updated_at", "2020-05-05 18:34:29.977379"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate iste eveniet optio?"], ["description", "Voluptates alias commodi unde."], ["date", "2020-05-06 18:34:29.978790"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.979496"], ["updated_at", "2020-05-05 18:34:29.979496"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure quasi alias voluptas?"], ["description", "Eos nulla soluta consequatur."], ["date", "2020-05-06 18:34:29.980624"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.981308"], ["updated_at", "2020-05-05 18:34:29.981308"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente ex et et?"], ["description", "Ratione vitae fugit repudiandae."], ["date", "2020-05-06 18:34:29.983258"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.984251"], ["updated_at", "2020-05-05 18:34:29.984251"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus voluptate ullam sunt?"], ["description", "Dolorum repellendus ad qui."], ["date", "2020-05-06 18:34:29.985805"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.987080"], ["updated_at", "2020-05-05 18:34:29.987080"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque provident rerum molestias?"], ["description", "Omnis impedit odit perferendis."], ["date", "2020-05-06 18:34:29.988576"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.989420"], ["updated_at", "2020-05-05 18:34:29.989420"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint ea minima est?"], ["description", "Voluptatem earum quam quidem."], ["date", "2020-05-06 18:34:29.990556"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.991248"], ["updated_at", "2020-05-05 18:34:29.991248"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas reiciendis quidem dolore?"], ["description", "Odio beatae et magni."], ["date", "2020-05-06 18:34:29.992418"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.993111"], ["updated_at", "2020-05-05 18:34:29.993111"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum error repudiandae a?"], ["description", "Ut et tempore ea."], ["date", "2020-05-06 18:34:29.994304"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.995076"], ["updated_at", "2020-05-05 18:34:29.995076"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptate animi nam molestiae?"], ["description", "Optio error ut molestiae."], ["date", "2020-05-06 18:34:29.996223"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.996916"], ["updated_at", "2020-05-05 18:34:29.996916"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet neque ullam debitis?"], ["description", "Tempore est earum cumque."], ["date", "2020-05-06 18:34:29.998033"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:29.998741"], ["updated_at", "2020-05-05 18:34:29.998741"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis voluptatem praesentium possimus?"], ["description", "Occaecati soluta ut nulla."], ["date", "2020-05-06 18:34:29.999857"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.000534"], ["updated_at", "2020-05-05 18:34:30.000534"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam debitis consequuntur aspernatur?"], ["description", "Placeat voluptas explicabo ipsum."], ["date", "2020-05-06 18:34:30.001603"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.002295"], ["updated_at", "2020-05-05 18:34:30.002295"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem reiciendis dolore voluptas?"], ["description", "Exercitationem asperiores voluptatem voluptatum."], ["date", "2020-05-06 18:34:30.003481"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.004358"], ["updated_at", "2020-05-05 18:34:30.004358"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:34:30 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.5ms) +Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.3ms | Allocations: 1085) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Donnell Grant"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$iYmdy3ea6jaBog.Ni7QYWe6ZV8si3YLaPOkWVi0Wf09h8KpdZQxey"], ["created_at", "2020-05-05 18:34:30.021029"], ["updated_at", "2020-05-05 18:34:30.021029"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "Optio iste non aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.024115"], ["updated_at", "2020-05-05 18:34:30.024115"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem velit quo qui?"], ["description", "Quia molestias omnis ea."], ["date", "2020-05-06 18:34:30.026127"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.027894"], ["updated_at", "2020-05-05 18:34:30.027894"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui et esse at?"], ["description", "Necessitatibus quia quis facere."], ["date", "2020-05-06 18:34:30.029546"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.030466"], ["updated_at", "2020-05-05 18:34:30.030466"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias ut nostrum atque?"], ["description", "Natus minus eos facere."], ["date", "2020-05-06 18:34:30.031783"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.032668"], ["updated_at", "2020-05-05 18:34:30.032668"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas dicta ea repellat?"], ["description", "Qui et reiciendis saepe."], ["date", "2020-05-06 18:34:30.033773"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.034464"], ["updated_at", "2020-05-05 18:34:30.034464"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore voluptatem rerum sed?"], ["description", "Corporis impedit rerum accusamus."], ["date", "2020-05-06 18:34:30.035577"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.036265"], ["updated_at", "2020-05-05 18:34:30.036265"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus dolor ea quas?"], ["description", "Voluptatum et porro incidunt."], ["date", "2020-05-06 18:34:30.037387"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.038088"], ["updated_at", "2020-05-05 18:34:30.038088"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minus soluta id dolores?"], ["description", "Veritatis voluptatem nostrum pariatur."], ["date", "2020-05-06 18:34:30.039282"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.040016"], ["updated_at", "2020-05-05 18:34:30.040016"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor ut in assumenda?"], ["description", "Et quod incidunt et."], ["date", "2020-05-06 18:34:30.041167"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.041839"], ["updated_at", "2020-05-05 18:34:30.041839"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit odio recusandae neque?"], ["description", "Provident nam aliquid consectetur."], ["date", "2020-05-06 18:34:30.043087"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.043969"], ["updated_at", "2020-05-05 18:34:30.043969"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio et nam illum?"], ["description", "Voluptatem ad commodi quos."], ["date", "2020-05-06 18:34:30.046115"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.047254"], ["updated_at", "2020-05-05 18:34:30.047254"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum voluptatibus nostrum totam?"], ["description", "Laudantium soluta non tenetur."], ["date", "2020-05-06 18:34:30.049581"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.050565"], ["updated_at", "2020-05-05 18:34:30.050565"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui odio consequatur quia?"], ["description", "Dolore quos accusamus ipsa."], ["date", "2020-05-06 18:34:30.051862"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.052622"], ["updated_at", "2020-05-05 18:34:30.052622"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil doloribus placeat debitis?"], ["description", "Et molestiae ullam nam."], ["date", "2020-05-06 18:34:30.053815"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.054623"], ["updated_at", "2020-05-05 18:34:30.054623"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum deleniti quo velit?"], ["description", "Eius harum reiciendis at."], ["date", "2020-05-06 18:34:30.055992"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.056770"], ["updated_at", "2020-05-05 18:34:30.056770"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis itaque quia quia?"], ["description", "Voluptatem eveniet quis placeat."], ["date", "2020-05-06 18:34:30.058040"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.058812"], ["updated_at", "2020-05-05 18:34:30.058812"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio saepe inventore perferendis?"], ["description", "Expedita id inventore hic."], ["date", "2020-05-06 18:34:30.060001"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.060681"], ["updated_at", "2020-05-05 18:34:30.060681"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit officiis beatae dolor?"], ["description", "Laborum ipsam deleniti voluptatem."], ["date", "2020-05-06 18:34:30.061841"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.062651"], ["updated_at", "2020-05-05 18:34:30.062651"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas illum eveniet recusandae?"], ["description", "Et aperiam aspernatur sed."], ["date", "2020-05-06 18:34:30.063914"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.064772"], ["updated_at", "2020-05-05 18:34:30.064772"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint ut dolor quae?"], ["description", "Quisquam eos iure sunt."], ["date", "2020-05-06 18:34:30.066304"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.067347"], ["updated_at", "2020-05-05 18:34:30.067347"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus sit sunt ut?"], ["description", "Possimus molestiae ipsum perspiciatis."], ["date", "2020-05-06 18:34:30.068784"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.069610"], ["updated_at", "2020-05-05 18:34:30.069610"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:34:30 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.68ms) +Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.2ms | Allocations: 1057) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Taina Volkman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QjjH2gLxFP7O.sVyvuGcAeYY7YIuLTyMQ6Uiv0DFzQBV0CJrHSuOa"], ["created_at", "2020-05-05 18:34:30.086053"], ["updated_at", "2020-05-05 18:34:30.086053"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minus"], ["description", "Vitae ipsa ex placeat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.089935"], ["updated_at", "2020-05-05 18:34:30.089935"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A enim velit voluptas?"], ["description", "Dicta et quo enim."], ["date", "2020-05-06 18:34:30.091688"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.092733"], ["updated_at", "2020-05-05 18:34:30.092733"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est architecto consequatur voluptas?"], ["description", "Id asperiores vero rem."], ["date", "2020-05-06 18:34:30.094146"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.094861"], ["updated_at", "2020-05-05 18:34:30.094861"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est illo ex facilis?"], ["description", "Omnis at aut ab."], ["date", "2020-05-06 18:34:30.096053"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.096762"], ["updated_at", "2020-05-05 18:34:30.096762"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis incidunt sit reprehenderit?"], ["description", "Recusandae amet totam perferendis."], ["date", "2020-05-06 18:34:30.097945"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.098694"], ["updated_at", "2020-05-05 18:34:30.098694"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa rem maiores soluta?"], ["description", "Aut ipsam voluptatum quos."], ["date", "2020-05-06 18:34:30.099842"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.100513"], ["updated_at", "2020-05-05 18:34:30.100513"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et aut quia nostrum?"], ["description", "Atque harum est necessitatibus."], ["date", "2020-05-06 18:34:30.101772"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.102626"], ["updated_at", "2020-05-05 18:34:30.102626"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus ullam amet expedita?"], ["description", "Nihil ut quod iste."], ["date", "2020-05-06 18:34:30.104464"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.105546"], ["updated_at", "2020-05-05 18:34:30.105546"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt tenetur nostrum aut?"], ["description", "Cum pariatur beatae error."], ["date", "2020-05-06 18:34:30.107100"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.108308"], ["updated_at", "2020-05-05 18:34:30.108308"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum optio dolor ut?"], ["description", "Sed veniam aspernatur quas."], ["date", "2020-05-06 18:34:30.110422"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.111443"], ["updated_at", "2020-05-05 18:34:30.111443"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Hic impedit rerum soluta?"], ["description", "Voluptates occaecati nemo dolorem."], ["date", "2020-05-06 18:34:30.113518"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.114545"], ["updated_at", "2020-05-05 18:34:30.114545"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id consequatur temporibus sunt?"], ["description", "Dicta in libero sit."], ["date", "2020-05-06 18:34:30.116255"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.117449"], ["updated_at", "2020-05-05 18:34:30.117449"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut quisquam voluptas provident?"], ["description", "Eius maxime vel aliquid."], ["date", "2020-05-06 18:34:30.119041"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.119923"], ["updated_at", "2020-05-05 18:34:30.119923"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero ut quos vel?"], ["description", "Est nam et et."], ["date", "2020-05-06 18:34:30.121460"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.122454"], ["updated_at", "2020-05-05 18:34:30.122454"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et voluptatem fugit velit?"], ["description", "Consequatur nostrum fugiat eum."], ["date", "2020-05-06 18:34:30.124021"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.125665"], ["updated_at", "2020-05-05 18:34:30.125665"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et expedita iure vero?"], ["description", "Aut consectetur qui vel."], ["date", "2020-05-06 18:34:30.127639"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.128824"], ["updated_at", "2020-05-05 18:34:30.128824"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime accusantium voluptatem facere?"], ["description", "A sed vel ex."], ["date", "2020-05-06 18:34:30.130360"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.131311"], ["updated_at", "2020-05-05 18:34:30.131311"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est dolorem est dignissimos?"], ["description", "Sequi rerum repellendus rerum."], ["date", "2020-05-06 18:34:30.132566"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.133369"], ["updated_at", "2020-05-05 18:34:30.133369"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem non et laboriosam?"], ["description", "Mollitia placeat omnis exercitationem."], ["date", "2020-05-06 18:34:30.134611"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.135397"], ["updated_at", "2020-05-05 18:34:30.135397"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim quas ipsam suscipit?"], ["description", "Sunt nobis voluptas voluptate."], ["date", "2020-05-06 18:34:30.136641"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.137424"], ["updated_at", "2020-05-05 18:34:30.137424"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et eveniet porro totam?"], ["description", "Quia qui velit est."], ["date", "2020-05-06 18:34:30.138751"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.139613"], ["updated_at", "2020-05-05 18:34:30.139613"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:34:30 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 404 Not Found in 2ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 884) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Amber Cremin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6ET8Mtwi1cn1RF1HzflXMu5RlbY/TGk/VPQTS9dp3KTZEwpvKiLdi"], ["created_at", "2020-05-05 18:34:30.163853"], ["updated_at", "2020-05-05 18:34:30.163853"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Inventore distinctio itaque facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.167405"], ["updated_at", "2020-05-05 18:34:30.167405"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias ea totam iure?"], ["description", "Porro minus earum expedita."], ["date", "2020-05-06 18:34:30.169627"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.171502"], ["updated_at", "2020-05-05 18:34:30.171502"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut cumque aut soluta?"], ["description", "Et id provident est."], ["date", "2020-05-06 18:34:30.173897"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.174859"], ["updated_at", "2020-05-05 18:34:30.174859"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto sed iste error?"], ["description", "Perferendis velit dolor eos."], ["date", "2020-05-06 18:34:30.176048"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.176730"], ["updated_at", "2020-05-05 18:34:30.176730"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores veniam suscipit est?"], ["description", "Modi ipsam maiores vel."], ["date", "2020-05-06 18:34:30.178042"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.178882"], ["updated_at", "2020-05-05 18:34:30.178882"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati nemo animi fugit?"], ["description", "Eos non adipisci sint."], ["date", "2020-05-06 18:34:30.180173"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.180875"], ["updated_at", "2020-05-05 18:34:30.180875"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur esse est eligendi?"], ["description", "Unde sunt vero autem."], ["date", "2020-05-06 18:34:30.181954"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.182622"], ["updated_at", "2020-05-05 18:34:30.182622"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione sed sunt id?"], ["description", "Explicabo sapiente tempore qui."], ["date", "2020-05-06 18:34:30.183733"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.184411"], ["updated_at", "2020-05-05 18:34:30.184411"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae quos ea dolorem?"], ["description", "Omnis magnam repudiandae cupiditate."], ["date", "2020-05-06 18:34:30.185879"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.186814"], ["updated_at", "2020-05-05 18:34:30.186814"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In quis mollitia corporis?"], ["description", "Et et magnam ut."], ["date", "2020-05-06 18:34:30.188371"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.189635"], ["updated_at", "2020-05-05 18:34:30.189635"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur voluptatem ab incidunt?"], ["description", "Natus doloribus repellat non."], ["date", "2020-05-06 18:34:30.193068"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.194130"], ["updated_at", "2020-05-05 18:34:30.194130"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore officiis velit sint?"], ["description", "Nemo amet earum autem."], ["date", "2020-05-06 18:34:30.195568"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.196273"], ["updated_at", "2020-05-05 18:34:30.196273"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium ea accusantium nostrum?"], ["description", "Soluta suscipit qui culpa."], ["date", "2020-05-06 18:34:30.197482"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.198217"], ["updated_at", "2020-05-05 18:34:30.198217"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste veritatis aperiam vitae?"], ["description", "Quis totam deleniti voluptate."], ["date", "2020-05-06 18:34:30.199436"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.200104"], ["updated_at", "2020-05-05 18:34:30.200104"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias nisi omnis qui?"], ["description", "Sed non harum dicta."], ["date", "2020-05-06 18:34:30.201308"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.201992"], ["updated_at", "2020-05-05 18:34:30.201992"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut delectus dolorem ea?"], ["description", "Vero consequatur placeat aut."], ["date", "2020-05-06 18:34:30.203175"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.203909"], ["updated_at", "2020-05-05 18:34:30.203909"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas aliquam voluptas laudantium?"], ["description", "Porro exercitationem accusamus sit."], ["date", "2020-05-06 18:34:30.205577"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.206712"], ["updated_at", "2020-05-05 18:34:30.206712"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia quia qui quis?"], ["description", "Enim eaque suscipit nihil."], ["date", "2020-05-06 18:34:30.208446"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.209525"], ["updated_at", "2020-05-05 18:34:30.209525"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus culpa beatae et?"], ["description", "Aliquam maxime qui tenetur."], ["date", "2020-05-06 18:34:30.211029"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.211911"], ["updated_at", "2020-05-05 18:34:30.211911"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem omnis distinctio dolorem?"], ["description", "Et libero non laudantium."], ["date", "2020-05-06 18:34:30.213159"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.213882"], ["updated_at", "2020-05-05 18:34:30.213882"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae ipsa ducimus quasi?"], ["description", "Animi tenetur accusantium non."], ["date", "2020-05-06 18:34:30.215058"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.215750"], ["updated_at", "2020-05-05 18:34:30.215750"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:34:30 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["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: 867) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jillian Cummings MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DWJLUNMS5qXYod42dT1tP.O.mr8HqOrqvWGgMqSUrHU4rb.EJpRqG"], ["created_at", "2020-05-05 18:34:30.231710"], ["updated_at", "2020-05-05 18:34:30.231710"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "hic"], ["description", "Eum modi non voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.234511"], ["updated_at", "2020-05-05 18:34:30.234511"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et et quaerat minus?"], ["description", "Porro consectetur nam rerum."], ["date", "2020-05-06 18:34:30.236048"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.236979"], ["updated_at", "2020-05-05 18:34:30.236979"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi voluptatem odio quasi?"], ["description", "Porro aliquid aut nemo."], ["date", "2020-05-06 18:34:30.238459"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.239224"], ["updated_at", "2020-05-05 18:34:30.239224"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure provident dolor non?"], ["description", "Quo minus quia dolorum."], ["date", "2020-05-06 18:34:30.240447"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.241150"], ["updated_at", "2020-05-05 18:34:30.241150"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis et quia ea?"], ["description", "Sapiente quibusdam aperiam provident."], ["date", "2020-05-06 18:34:30.242311"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.242977"], ["updated_at", "2020-05-05 18:34:30.242977"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est maxime illum quis?"], ["description", "Nam et ex repellat."], ["date", "2020-05-06 18:34:30.244108"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.244816"], ["updated_at", "2020-05-05 18:34:30.244816"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et occaecati exercitationem dolor?"], ["description", "Dolorem sit repellendus ea."], ["date", "2020-05-06 18:34:30.246395"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.247389"], ["updated_at", "2020-05-05 18:34:30.247389"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum quas id quia?"], ["description", "Repudiandae repellendus rerum inventore."], ["date", "2020-05-06 18:34:30.248971"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.250017"], ["updated_at", "2020-05-05 18:34:30.250017"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui omnis et molestiae?"], ["description", "Minus non est et."], ["date", "2020-05-06 18:34:30.252825"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.253981"], ["updated_at", "2020-05-05 18:34:30.253981"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum iste rerum voluptatem?"], ["description", "Repellendus ab quia dolore."], ["date", "2020-05-06 18:34:30.255367"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.256040"], ["updated_at", "2020-05-05 18:34:30.256040"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id deserunt ut dicta?"], ["description", "Quod reiciendis laudantium adipisci."], ["date", "2020-05-06 18:34:30.258216"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.259058"], ["updated_at", "2020-05-05 18:34:30.259058"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi recusandae deleniti error?"], ["description", "Placeat quibusdam est corrupti."], ["date", "2020-05-06 18:34:30.260544"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.261411"], ["updated_at", "2020-05-05 18:34:30.261411"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi totam quod quia?"], ["description", "Consequuntur dolores fugit amet."], ["date", "2020-05-06 18:34:30.262729"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.263440"], ["updated_at", "2020-05-05 18:34:30.263440"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est eius aliquid et?"], ["description", "Facilis blanditiis asperiores dolores."], ["date", "2020-05-06 18:34:30.264740"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.265919"], ["updated_at", "2020-05-05 18:34:30.265919"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque rem fuga quidem?"], ["description", "Officia sunt reiciendis voluptas."], ["date", "2020-05-06 18:34:30.267784"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.268751"], ["updated_at", "2020-05-05 18:34:30.268751"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis deserunt neque vel?"], ["description", "Et et qui harum."], ["date", "2020-05-06 18:34:30.270143"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.271006"], ["updated_at", "2020-05-05 18:34:30.271006"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est quasi aut dolore?"], ["description", "Et natus voluptas et."], ["date", "2020-05-06 18:34:30.272617"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.273622"], ["updated_at", "2020-05-05 18:34:30.273622"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias illum quod non?"], ["description", "Asperiores magnam culpa molestiae."], ["date", "2020-05-06 18:34:30.275123"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.276051"], ["updated_at", "2020-05-05 18:34:30.276051"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae eum maiores veniam?"], ["description", "Sequi assumenda nesciunt eveniet."], ["date", "2020-05-06 18:34:30.277318"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.278029"], ["updated_at", "2020-05-05 18:34:30.278029"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum labore et minus?"], ["description", "Quia ullam totam animi."], ["date", "2020-05-06 18:34:30.279192"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.279901"], ["updated_at", "2020-05-05 18:34:30.279901"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reiciendis qui veniam vero?"], ["description", "Voluptatibus doloribus alias repellat."], ["date", "2020-05-06 18:34:30.281115"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.281814"], ["updated_at", "2020-05-05 18:34:30.281814"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:34:30 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"title"=>"Visit Narnia", "description"=>"false", "date"=>"2020-05-06 15:34:30 -0300", "link"=>"https://zoom.com/fakelink", "meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Visit Narnia"], ["description", "false"], ["date", "2020-05-06 18:34:30"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.300975"], ["updated_at", "2020-05-05 18:34:30.300975"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.54ms) +Completed 201 Created in 5ms (Views: 1.1ms | ActiveRecord: 0.4ms | Allocations: 1664) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Jerome Cassin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CsAJ1xalwybbIUrl2rWTwunIBLvUC9YyvCCzkrJPrq3l0.BGjqOw."], ["created_at", "2020-05-05 18:34:30.314916"], ["updated_at", "2020-05-05 18:34:30.314916"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "mollitia"], ["description", "Veniam vero eaque aliquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.318540"], ["updated_at", "2020-05-05 18:34:30.318540"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut corrupti quas ut?"], ["description", "Nam incidunt consequuntur ipsam."], ["date", "2020-05-06 18:34:30.320159"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.321075"], ["updated_at", "2020-05-05 18:34:30.321075"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore adipisci ratione rerum?"], ["description", "Dolores quo non aperiam."], ["date", "2020-05-06 18:34:30.322404"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.323102"], ["updated_at", "2020-05-05 18:34:30.323102"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia dolores laboriosam autem?"], ["description", "Iste nostrum officia ut."], ["date", "2020-05-06 18:34:30.324300"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.325025"], ["updated_at", "2020-05-05 18:34:30.325025"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reiciendis consectetur nisi molestias?"], ["description", "Illo tempore optio vitae."], ["date", "2020-05-06 18:34:30.326778"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.327873"], ["updated_at", "2020-05-05 18:34:30.327873"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse fugiat molestiae et?"], ["description", "A numquam delectus aut."], ["date", "2020-05-06 18:34:30.329853"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.330786"], ["updated_at", "2020-05-05 18:34:30.330786"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum ut blanditiis dolor?"], ["description", "Sit tenetur eaque quos."], ["date", "2020-05-06 18:34:30.331966"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.332663"], ["updated_at", "2020-05-05 18:34:30.332663"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores quisquam amet quasi?"], ["description", "Hic magni necessitatibus numquam."], ["date", "2020-05-06 18:34:30.333788"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.334455"], ["updated_at", "2020-05-05 18:34:30.334455"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores beatae neque magni?"], ["description", "Neque temporibus ad dignissimos."], ["date", "2020-05-06 18:34:30.335540"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.336211"], ["updated_at", "2020-05-05 18:34:30.336211"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et vel nemo ratione?"], ["description", "Sunt quae sed enim."], ["date", "2020-05-06 18:34:30.337332"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.338096"], ["updated_at", "2020-05-05 18:34:30.338096"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil molestiae labore delectus?"], ["description", "In temporibus laboriosam minima."], ["date", "2020-05-06 18:34:30.340096"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.340942"], ["updated_at", "2020-05-05 18:34:30.340942"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum aliquam dicta magnam?"], ["description", "Ratione id consectetur nam."], ["date", "2020-05-06 18:34:30.342166"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.342839"], ["updated_at", "2020-05-05 18:34:30.342839"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit voluptatem ipsum et?"], ["description", "Perspiciatis unde quis voluptate."], ["date", "2020-05-06 18:34:30.343959"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.344601"], ["updated_at", "2020-05-05 18:34:30.344601"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis doloribus rerum voluptate?"], ["description", "Aliquid dolorem earum soluta."], ["date", "2020-05-06 18:34:30.345877"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.346738"], ["updated_at", "2020-05-05 18:34:30.346738"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum rerum unde mollitia?"], ["description", "Et minus odit similique."], ["date", "2020-05-06 18:34:30.348205"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.349005"], ["updated_at", "2020-05-05 18:34:30.349005"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et veniam nobis mollitia?"], ["description", "Molestias animi ut maiores."], ["date", "2020-05-06 18:34:30.350429"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.351309"], ["updated_at", "2020-05-05 18:34:30.351309"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis veritatis alias sapiente?"], ["description", "Officiis ab quas consequatur."], ["date", "2020-05-06 18:34:30.352866"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.353743"], ["updated_at", "2020-05-05 18:34:30.353743"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia ratione laborum quidem?"], ["description", "Repellat consequatur occaecati aspernatur."], ["date", "2020-05-06 18:34:30.355016"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.355725"], ["updated_at", "2020-05-05 18:34:30.355725"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit quas deserunt atque?"], ["description", "Sint a ut quia."], ["date", "2020-05-06 18:34:30.356875"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.357630"], ["updated_at", "2020-05-05 18:34:30.357630"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa vel vitae sit?"], ["description", "Nesciunt magnam repudiandae aliquam."], ["date", "2020-05-06 18:34:30.358810"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.359485"], ["updated_at", "2020-05-05 18:34:30.359485"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias autem earum ex?"], ["description", "Eos tenetur quam dolores."], ["date", "2020-05-06 18:34:30.360676"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.361405"], ["updated_at", "2020-05-05 18:34:30.361405"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:34:30 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3010) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Charolette Paucek"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$H.Kka1DeolrCpOLZ.BHCxOI4aA8Gg5Ynax4OzBARb0ikBJ/OPSe9S"], ["created_at", "2020-05-05 18:34:30.380143"], ["updated_at", "2020-05-05 18:34:30.380143"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Voluptatem nulla et cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.383135"], ["updated_at", "2020-05-05 18:34:30.383135"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat velit itaque est?"], ["description", "Nihil consequuntur unde veniam."], ["date", "2020-05-06 18:34:30.384628"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.385569"], ["updated_at", "2020-05-05 18:34:30.385569"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta aut quia architecto?"], ["description", "Rerum rem ullam adipisci."], ["date", "2020-05-06 18:34:30.387281"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.388721"], ["updated_at", "2020-05-05 18:34:30.388721"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam itaque laboriosam est?"], ["description", "Autem corporis quis magni."], ["date", "2020-05-06 18:34:30.390622"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.391510"], ["updated_at", "2020-05-05 18:34:30.391510"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis quod molestiae ut?"], ["description", "Quos quia veniam quaerat."], ["date", "2020-05-06 18:34:30.392686"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.393380"], ["updated_at", "2020-05-05 18:34:30.393380"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus totam aspernatur et?"], ["description", "Rerum eos quaerat iure."], ["date", "2020-05-06 18:34:30.394553"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.395238"], ["updated_at", "2020-05-05 18:34:30.395238"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo impedit dolorem iste?"], ["description", "Quia culpa voluptatibus ipsam."], ["date", "2020-05-06 18:34:30.396437"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.397128"], ["updated_at", "2020-05-05 18:34:30.397128"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae quis dolores ducimus?"], ["description", "Incidunt molestias voluptatibus nobis."], ["date", "2020-05-06 18:34:30.398417"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.399103"], ["updated_at", "2020-05-05 18:34:30.399103"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos quibusdam voluptas aut?"], ["description", "Perferendis ad facere placeat."], ["date", "2020-05-06 18:34:30.400258"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.400964"], ["updated_at", "2020-05-05 18:34:30.400964"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit iste est et?"], ["description", "Odio nesciunt dolorem sit."], ["date", "2020-05-06 18:34:30.402110"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.402784"], ["updated_at", "2020-05-05 18:34:30.402784"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores voluptas sint officia?"], ["description", "Molestias et voluptates rerum."], ["date", "2020-05-06 18:34:30.404600"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.405511"], ["updated_at", "2020-05-05 18:34:30.405511"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit nihil ut amet?"], ["description", "Praesentium voluptate dicta ipsum."], ["date", "2020-05-06 18:34:30.407029"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.408257"], ["updated_at", "2020-05-05 18:34:30.408257"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam sed facere aut?"], ["description", "Labore rerum nihil vel."], ["date", "2020-05-06 18:34:30.410208"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.411327"], ["updated_at", "2020-05-05 18:34:30.411327"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam id dolore non?"], ["description", "Dolores beatae ea est."], ["date", "2020-05-06 18:34:30.412784"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.413652"], ["updated_at", "2020-05-05 18:34:30.413652"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis error in dolores?"], ["description", "Impedit fugiat voluptate error."], ["date", "2020-05-06 18:34:30.414865"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.415577"], ["updated_at", "2020-05-05 18:34:30.415577"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum ea aut iste?"], ["description", "Et molestiae sunt labore."], ["date", "2020-05-06 18:34:30.416642"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.417302"], ["updated_at", "2020-05-05 18:34:30.417302"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut molestiae fugit dolorem?"], ["description", "Odit harum est ut."], ["date", "2020-05-06 18:34:30.418473"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.419266"], ["updated_at", "2020-05-05 18:34:30.419266"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt blanditiis et aut?"], ["description", "Eveniet est dignissimos accusantium."], ["date", "2020-05-06 18:34:30.420388"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.421061"], ["updated_at", "2020-05-05 18:34:30.421061"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia incidunt ex eligendi?"], ["description", "Qui nulla laborum eos."], ["date", "2020-05-06 18:34:30.422255"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.422929"], ["updated_at", "2020-05-05 18:34:30.422929"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima rerum aut et?"], ["description", "Sit aut quidem commodi."], ["date", "2020-05-06 18:34:30.424042"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.424782"], ["updated_at", "2020-05-05 18:34:30.424782"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus accusamus cumque commodi?"], ["description", "Earum aut sed maiores."], ["date", "2020-05-06 18:34:30.426328"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.427298"], ["updated_at", "2020-05-05 18:34:30.427298"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:34:30 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 2707) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Maybelle Schneider"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$b0e/zbwQa.hjsWWh6L7LQ.bX19u4SsW61.78di./VbEFN5vZ2F4Zi"], ["created_at", "2020-05-05 18:34:30.459648"], ["updated_at", "2020-05-05 18:34:30.459648"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Dolorem aut qui at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.462643"], ["updated_at", "2020-05-05 18:34:30.462643"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae possimus enim voluptates?"], ["description", "Doloremque consequatur laudantium aliquid."], ["date", "2020-05-06 18:34:30.464306"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.465245"], ["updated_at", "2020-05-05 18:34:30.465245"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis optio ipsa esse?"], ["description", "Consectetur et tenetur qui."], ["date", "2020-05-06 18:34:30.466733"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.467713"], ["updated_at", "2020-05-05 18:34:30.467713"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non similique vitae veritatis?"], ["description", "Et repellendus doloremque ipsum."], ["date", "2020-05-06 18:34:30.469342"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.470658"], ["updated_at", "2020-05-05 18:34:30.470658"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis eligendi incidunt deserunt?"], ["description", "Quasi consequatur deleniti voluptates."], ["date", "2020-05-06 18:34:30.472226"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.473058"], ["updated_at", "2020-05-05 18:34:30.473058"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo ullam pariatur et?"], ["description", "Vero aperiam sit consequatur."], ["date", "2020-05-06 18:34:30.474430"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.475271"], ["updated_at", "2020-05-05 18:34:30.475271"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed cumque voluptas et?"], ["description", "Ut iure perferendis iusto."], ["date", "2020-05-06 18:34:30.476468"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.477202"], ["updated_at", "2020-05-05 18:34:30.477202"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit dolorum omnis qui?"], ["description", "Praesentium aut alias aut."], ["date", "2020-05-06 18:34:30.478417"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.479145"], ["updated_at", "2020-05-05 18:34:30.479145"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo aspernatur molestias atque?"], ["description", "Magnam numquam officiis ab."], ["date", "2020-05-06 18:34:30.480300"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.481007"], ["updated_at", "2020-05-05 18:34:30.481007"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum ea cumque deleniti?"], ["description", "Eum molestiae perspiciatis fugit."], ["date", "2020-05-06 18:34:30.482145"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.482820"], ["updated_at", "2020-05-05 18:34:30.482820"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id voluptatibus sapiente doloremque?"], ["description", "Nulla voluptatem dolores repellat."], ["date", "2020-05-06 18:34:30.484600"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.485346"], ["updated_at", "2020-05-05 18:34:30.485346"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A ut tenetur animi?"], ["description", "Vel porro maxime voluptatem."], ["date", "2020-05-06 18:34:30.486927"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.488144"], ["updated_at", "2020-05-05 18:34:30.488144"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et qui qui consequatur?"], ["description", "Rerum assumenda consequatur odio."], ["date", "2020-05-06 18:34:30.489791"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.491280"], ["updated_at", "2020-05-05 18:34:30.491280"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi dolor porro nam?"], ["description", "Corrupti et sapiente et."], ["date", "2020-05-06 18:34:30.492798"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.493598"], ["updated_at", "2020-05-05 18:34:30.493598"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est ex facilis quis?"], ["description", "Dolorem et sed veritatis."], ["date", "2020-05-06 18:34:30.494847"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.495549"], ["updated_at", "2020-05-05 18:34:30.495549"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis cum dolorem temporibus?"], ["description", "Voluptas nisi deleniti non."], ["date", "2020-05-06 18:34:30.496797"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.497516"], ["updated_at", "2020-05-05 18:34:30.497516"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit similique nulla quae?"], ["description", "At vero quo fugiat."], ["date", "2020-05-06 18:34:30.498901"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.499683"], ["updated_at", "2020-05-05 18:34:30.499683"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed adipisci laboriosam dolores?"], ["description", "Ducimus veniam et consequatur."], ["date", "2020-05-06 18:34:30.500859"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.501556"], ["updated_at", "2020-05-05 18:34:30.501556"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non qui eius eum?"], ["description", "Velit praesentium cumque illum."], ["date", "2020-05-06 18:34:30.502726"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.503435"], ["updated_at", "2020-05-05 18:34:30.503435"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium voluptates tempore illum?"], ["description", "Ea aut similique unde."], ["date", "2020-05-06 18:34:30.504616"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.505290"], ["updated_at", "2020-05-05 18:34:30.505290"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae quia cum voluptates?"], ["description", "Sed aut dolores autem."], ["date", "2020-05-06 18:34:30.506598"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.507680"], ["updated_at", "2020-05-05 18:34:30.507680"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:34:30 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.1ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:34:30.512585"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1397) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Janiece Gerlach"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8zDRgSDtltQSYn/rHogOxOsl.te60KRFynjBlKvFe84TeARhPxrcO"], ["created_at", "2020-05-05 18:34:30.524473"], ["updated_at", "2020-05-05 18:34:30.524473"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minima"], ["description", "Iusto repellat nostrum maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.527562"], ["updated_at", "2020-05-05 18:34:30.527562"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque deleniti iure nobis?"], ["description", "Quis omnis non voluptas."], ["date", "2020-05-06 18:34:30.529488"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.531047"], ["updated_at", "2020-05-05 18:34:30.531047"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit alias ratione est?"], ["description", "Incidunt aliquid voluptas est."], ["date", "2020-05-06 18:34:30.532654"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.533467"], ["updated_at", "2020-05-05 18:34:30.533467"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur corporis occaecati rerum?"], ["description", "Perspiciatis dolor enim veniam."], ["date", "2020-05-06 18:34:30.534643"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.535420"], ["updated_at", "2020-05-05 18:34:30.535420"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam deserunt alias voluptate?"], ["description", "Voluptate vero atque dignissimos."], ["date", "2020-05-06 18:34:30.536665"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.537394"], ["updated_at", "2020-05-05 18:34:30.537394"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima sequi quibusdam non?"], ["description", "Cumque eum ea necessitatibus."], ["date", "2020-05-06 18:34:30.538571"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.539253"], ["updated_at", "2020-05-05 18:34:30.539253"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut omnis quis provident?"], ["description", "Aut ut numquam aut."], ["date", "2020-05-06 18:34:30.540365"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.541033"], ["updated_at", "2020-05-05 18:34:30.541033"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore beatae ea odit?"], ["description", "Et sit distinctio voluptatem."], ["date", "2020-05-06 18:34:30.542106"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.542777"], ["updated_at", "2020-05-05 18:34:30.542777"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum cum qui quasi?"], ["description", "Est adipisci error quis."], ["date", "2020-05-06 18:34:30.543854"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.544522"], ["updated_at", "2020-05-05 18:34:30.544522"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut explicabo dolor nihil?"], ["description", "Ut sit et dolore."], ["date", "2020-05-06 18:34:30.545668"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.546376"], ["updated_at", "2020-05-05 18:34:30.546376"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut facere incidunt error?"], ["description", "Voluptas sed est id."], ["date", "2020-05-06 18:34:30.548791"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.549822"], ["updated_at", "2020-05-05 18:34:30.549822"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia voluptatem dolore tenetur?"], ["description", "Nihil beatae aliquam asperiores."], ["date", "2020-05-06 18:34:30.551758"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.552686"], ["updated_at", "2020-05-05 18:34:30.552686"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum ut officiis sit?"], ["description", "Repellendus qui provident totam."], ["date", "2020-05-06 18:34:30.553975"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.554734"], ["updated_at", "2020-05-05 18:34:30.554734"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id dolorum ut commodi?"], ["description", "Et dolorum ut omnis."], ["date", "2020-05-06 18:34:30.555938"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.556642"], ["updated_at", "2020-05-05 18:34:30.556642"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio qui nisi ad?"], ["description", "Nesciunt veritatis cum corrupti."], ["date", "2020-05-06 18:34:30.557866"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.558593"], ["updated_at", "2020-05-05 18:34:30.558593"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut id provident laborum?"], ["description", "Qui esse optio quidem."], ["date", "2020-05-06 18:34:30.559810"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.560539"], ["updated_at", "2020-05-05 18:34:30.560539"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore ex consequatur accusamus?"], ["description", "Quae et voluptas accusamus."], ["date", "2020-05-06 18:34:30.561757"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.562462"], ["updated_at", "2020-05-05 18:34:30.562462"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem cupiditate eum deleniti?"], ["description", "Sed iusto asperiores ea."], ["date", "2020-05-06 18:34:30.563647"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.564404"], ["updated_at", "2020-05-05 18:34:30.564404"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id odit vitae eligendi?"], ["description", "Exercitationem sed hic aut."], ["date", "2020-05-06 18:34:30.565739"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.566490"], ["updated_at", "2020-05-05 18:34:30.566490"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur culpa non sed?"], ["description", "Iusto tempore a odio."], ["date", "2020-05-06 18:34:30.568127"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.569124"], ["updated_at", "2020-05-05 18:34:30.569124"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem aut ea quae?"], ["description", "Eum cumque occaecati architecto."], ["date", "2020-05-06 18:34:30.570408"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.571133"], ["updated_at", "2020-05-05 18:34:30.571133"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:34:30 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.0ms) SAVEPOINT active_record_2 + Meeting Update (0.1ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:34:30.575322"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1321) + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Valrie Lang"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$j34rsBbur3mGQXEJL0VCWuYYAirSweUKedyJHlPkBlelpiKFKg2xK"], ["created_at", "2020-05-05 18:34:30.588429"], ["updated_at", "2020-05-05 18:34:30.588429"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Placeat consequatur numquam eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.592026"], ["updated_at", "2020-05-05 18:34:30.592026"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores est non et?"], ["description", "Ut ratione praesentium rerum."], ["date", "2020-05-06 18:34:30.593629"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.594597"], ["updated_at", "2020-05-05 18:34:30.594597"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt perspiciatis eveniet nihil?"], ["description", "Reprehenderit aliquid voluptate excepturi."], ["date", "2020-05-06 18:34:30.595927"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.596701"], ["updated_at", "2020-05-05 18:34:30.596701"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo dolore reprehenderit occaecati?"], ["description", "Doloribus consequatur dolores quod."], ["date", "2020-05-06 18:34:30.597908"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.598638"], ["updated_at", "2020-05-05 18:34:30.598638"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et voluptatem et accusantium?"], ["description", "Neque asperiores consequatur ut."], ["date", "2020-05-06 18:34:30.599755"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.600445"], ["updated_at", "2020-05-05 18:34:30.600445"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error quia saepe repudiandae?"], ["description", "Est dolores voluptatum et."], ["date", "2020-05-06 18:34:30.601578"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.602262"], ["updated_at", "2020-05-05 18:34:30.602262"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi quas cupiditate qui?"], ["description", "Aut ea ut dolore."], ["date", "2020-05-06 18:34:30.603385"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.604052"], ["updated_at", "2020-05-05 18:34:30.604052"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis quam voluptates et?"], ["description", "Consequuntur quia quam dolor."], ["date", "2020-05-06 18:34:30.605168"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.605864"], ["updated_at", "2020-05-05 18:34:30.605864"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam commodi maxime dolore?"], ["description", "Sapiente magni quia cupiditate."], ["date", "2020-05-06 18:34:30.607060"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.608006"], ["updated_at", "2020-05-05 18:34:30.608006"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore delectus et nobis?"], ["description", "Expedita optio iste dolores."], ["date", "2020-05-06 18:34:30.609661"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.610688"], ["updated_at", "2020-05-05 18:34:30.610688"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque repudiandae recusandae aperiam?"], ["description", "Fugiat nemo est delectus."], ["date", "2020-05-06 18:34:30.613051"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.613961"], ["updated_at", "2020-05-05 18:34:30.613961"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem et nobis occaecati?"], ["description", "Fuga at enim architecto."], ["date", "2020-05-06 18:34:30.615172"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.615866"], ["updated_at", "2020-05-05 18:34:30.615866"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae neque est doloribus?"], ["description", "Nulla hic deleniti perspiciatis."], ["date", "2020-05-06 18:34:30.617051"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.617818"], ["updated_at", "2020-05-05 18:34:30.617818"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab non dicta et?"], ["description", "Praesentium et eius reiciendis."], ["date", "2020-05-06 18:34:30.619047"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.619766"], ["updated_at", "2020-05-05 18:34:30.619766"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut a et repudiandae?"], ["description", "Nemo repudiandae nostrum sit."], ["date", "2020-05-06 18:34:30.621007"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.621735"], ["updated_at", "2020-05-05 18:34:30.621735"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore ut saepe excepturi?"], ["description", "Sed id non sequi."], ["date", "2020-05-06 18:34:30.622956"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.623658"], ["updated_at", "2020-05-05 18:34:30.623658"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error fugit autem alias?"], ["description", "Vitae id libero illum."], ["date", "2020-05-06 18:34:30.624797"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.625457"], ["updated_at", "2020-05-05 18:34:30.625457"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit hic est delectus?"], ["description", "Ut ullam placeat ea."], ["date", "2020-05-06 18:34:30.626554"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.627257"], ["updated_at", "2020-05-05 18:34:30.627257"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui necessitatibus quia est?"], ["description", "Molestiae temporibus et odit."], ["date", "2020-05-06 18:34:30.628824"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.629692"], ["updated_at", "2020-05-05 18:34:30.629692"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur similique occaecati possimus?"], ["description", "Voluptas atque necessitatibus est."], ["date", "2020-05-06 18:34:30.630907"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.631587"], ["updated_at", "2020-05-05 18:34:30.631587"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae consequatur et dolorem?"], ["description", "Qui molestiae quis quis."], ["date", "2020-05-06 18:34:30.632748"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.633498"], ["updated_at", "2020-05-05 18:34:30.633498"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:34:30 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Daine Lowe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VTMWLeqIFMzLnHkww1ZI9ulq5ieY5KuvyEPxSbU/Pzp7uCLZj8CEO"], ["created_at", "2020-05-05 18:34:30.648544"], ["updated_at", "2020-05-05 18:34:30.648544"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laborum"], ["description", "Quis temporibus libero fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.651382"], ["updated_at", "2020-05-05 18:34:30.651382"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi unde animi accusantium?"], ["description", "Rem et ut in."], ["date", "2020-05-06 18:34:30.652802"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.653734"], ["updated_at", "2020-05-05 18:34:30.653734"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse saepe minima praesentium?"], ["description", "Perspiciatis nobis qui illo."], ["date", "2020-05-06 18:34:30.654920"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.655701"], ["updated_at", "2020-05-05 18:34:30.655701"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem sed minus praesentium?"], ["description", "Voluptas voluptas suscipit quia."], ["date", "2020-05-06 18:34:30.656856"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.657616"], ["updated_at", "2020-05-05 18:34:30.657616"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et provident cum totam?"], ["description", "Nihil nisi sint voluptatum."], ["date", "2020-05-06 18:34:30.658780"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.659484"], ["updated_at", "2020-05-05 18:34:30.659484"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia eveniet corporis veritatis?"], ["description", "Qui et nihil porro."], ["date", "2020-05-06 18:34:30.660553"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.661227"], ["updated_at", "2020-05-05 18:34:30.661227"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam eligendi sit explicabo?"], ["description", "Vitae repellendus et quibusdam."], ["date", "2020-05-06 18:34:30.662256"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.662930"], ["updated_at", "2020-05-05 18:34:30.662930"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit vel voluptate alias?"], ["description", "Quidem provident non velit."], ["date", "2020-05-06 18:34:30.663965"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.664648"], ["updated_at", "2020-05-05 18:34:30.664648"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed sit id omnis?"], ["description", "Enim nulla totam consequuntur."], ["date", "2020-05-06 18:34:30.665658"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.666323"], ["updated_at", "2020-05-05 18:34:30.666323"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae praesentium aut assumenda?"], ["description", "Cum aut consequatur excepturi."], ["date", "2020-05-06 18:34:30.667399"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.668168"], ["updated_at", "2020-05-05 18:34:30.668168"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque est ad incidunt?"], ["description", "Molestiae earum voluptatum necessitatibus."], ["date", "2020-05-06 18:34:30.670155"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.671066"], ["updated_at", "2020-05-05 18:34:30.671066"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem nesciunt officia fugit?"], ["description", "Vel sint laboriosam voluptas."], ["date", "2020-05-06 18:34:30.672501"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.673572"], ["updated_at", "2020-05-05 18:34:30.673572"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui qui eos et?"], ["description", "Sit ea dignissimos et."], ["date", "2020-05-06 18:34:30.675209"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.677067"], ["updated_at", "2020-05-05 18:34:30.677067"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus ipsum atque sed?"], ["description", "Itaque rerum voluptates maiores."], ["date", "2020-05-06 18:34:30.679836"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.680860"], ["updated_at", "2020-05-05 18:34:30.680860"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia laboriosam itaque modi?"], ["description", "Expedita minima debitis provident."], ["date", "2020-05-06 18:34:30.682155"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.682870"], ["updated_at", "2020-05-05 18:34:30.682870"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti omnis assumenda ad?"], ["description", "Sunt consequatur numquam id."], ["date", "2020-05-06 18:34:30.684021"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.684709"], ["updated_at", "2020-05-05 18:34:30.684709"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit quibusdam eveniet totam?"], ["description", "Qui velit assumenda eius."], ["date", "2020-05-06 18:34:30.685908"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.686589"], ["updated_at", "2020-05-05 18:34:30.686589"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et eligendi veniam est?"], ["description", "Consequuntur eveniet sed vitae."], ["date", "2020-05-06 18:34:30.687908"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.689356"], ["updated_at", "2020-05-05 18:34:30.689356"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem sit repellat et?"], ["description", "Enim aut deserunt quisquam."], ["date", "2020-05-06 18:34:30.691117"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.692084"], ["updated_at", "2020-05-05 18:34:30.692084"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo aut voluptatibus et?"], ["description", "Fugit quisquam voluptas qui."], ["date", "2020-05-06 18:34:30.693392"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.694108"], ["updated_at", "2020-05-05 18:34:30.694108"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis necessitatibus et aut?"], ["description", "Qui ut in dolores."], ["date", "2020-05-06 18:34:30.695328"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.696021"], ["updated_at", "2020-05-05 18:34:30.696021"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:34:30 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Michiko Veum"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$71NKXeXDeEAmoFg.7tZiu.wr5mu7BwYXvpuguJ3etH.ZW438bC4jm"], ["created_at", "2020-05-05 18:34:30.711099"], ["updated_at", "2020-05-05 18:34:30.711099"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Iure delectus quasi soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.714257"], ["updated_at", "2020-05-05 18:34:30.714257"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet error et non?"], ["description", "Atque consequuntur nostrum itaque."], ["date", "2020-05-06 18:34:30.715776"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.716703"], ["updated_at", "2020-05-05 18:34:30.716703"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi vel aspernatur nisi?"], ["description", "Quod ut ut esse."], ["date", "2020-05-06 18:34:30.718003"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.718750"], ["updated_at", "2020-05-05 18:34:30.718750"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae in eligendi ipsum?"], ["description", "Soluta dolorem repellendus eos."], ["date", "2020-05-06 18:34:30.719922"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.720651"], ["updated_at", "2020-05-05 18:34:30.720651"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias distinctio voluptatibus officia?"], ["description", "Debitis ut quaerat maiores."], ["date", "2020-05-06 18:34:30.721775"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.722443"], ["updated_at", "2020-05-05 18:34:30.722443"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque saepe quaerat fugit?"], ["description", "Natus sed aut eius."], ["date", "2020-05-06 18:34:30.723563"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.724226"], ["updated_at", "2020-05-05 18:34:30.724226"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui nostrum fugiat porro?"], ["description", "Accusamus dolor voluptatem neque."], ["date", "2020-05-06 18:34:30.725339"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.726003"], ["updated_at", "2020-05-05 18:34:30.726003"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem et est voluptatem?"], ["description", "Qui accusantium porro et."], ["date", "2020-05-06 18:34:30.727206"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.728036"], ["updated_at", "2020-05-05 18:34:30.728036"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum odit officiis excepturi?"], ["description", "Maxime voluptatem error maiores."], ["date", "2020-05-06 18:34:30.729847"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.730912"], ["updated_at", "2020-05-05 18:34:30.730912"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur aut aut ea?"], ["description", "Voluptatem et numquam sapiente."], ["date", "2020-05-06 18:34:30.733164"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.734303"], ["updated_at", "2020-05-05 18:34:30.734303"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut fugiat sapiente autem?"], ["description", "Voluptate quia excepturi dolore."], ["date", "2020-05-06 18:34:30.736305"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.737078"], ["updated_at", "2020-05-05 18:34:30.737078"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit amet eos qui?"], ["description", "Expedita illo repellendus aut."], ["date", "2020-05-06 18:34:30.738500"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.739294"], ["updated_at", "2020-05-05 18:34:30.739294"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea minima omnis totam?"], ["description", "Nesciunt unde error commodi."], ["date", "2020-05-06 18:34:30.740493"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.741163"], ["updated_at", "2020-05-05 18:34:30.741163"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam quia qui sit?"], ["description", "Nihil qui et error."], ["date", "2020-05-06 18:34:30.742302"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.742996"], ["updated_at", "2020-05-05 18:34:30.742996"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum non corrupti ullam?"], ["description", "Nihil ullam dolorem voluptatem."], ["date", "2020-05-06 18:34:30.744187"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.744885"], ["updated_at", "2020-05-05 18:34:30.744885"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est voluptate reprehenderit beatae?"], ["description", "Quis in aperiam aspernatur."], ["date", "2020-05-06 18:34:30.746336"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.747036"], ["updated_at", "2020-05-05 18:34:30.747036"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et corrupti velit consequatur?"], ["description", "Enim quia dignissimos libero."], ["date", "2020-05-06 18:34:30.748754"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.749796"], ["updated_at", "2020-05-05 18:34:30.749796"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam laborum ipsum reiciendis?"], ["description", "Ipsam nulla dolore sint."], ["date", "2020-05-06 18:34:30.751102"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.751830"], ["updated_at", "2020-05-05 18:34:30.751830"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque deserunt suscipit eius?"], ["description", "Et et numquam aperiam."], ["date", "2020-05-06 18:34:30.753018"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.753738"], ["updated_at", "2020-05-05 18:34:30.753738"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod itaque et ut?"], ["description", "Sit asperiores alias reiciendis."], ["date", "2020-05-06 18:34:30.754915"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.755622"], ["updated_at", "2020-05-05 18:34:30.755622"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae perferendis occaecati est?"], ["description", "Officiis aut vero rem."], ["date", "2020-05-06 18:34:30.756875"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:34:30.757594"], ["updated_at", "2020-05-05 18:34:30.757594"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:34:30 -0300 +Processing by MeetingsController#destroy as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + UserMeeting Load (0.1ms) SELECT "user_meetings".* FROM "user_meetings" WHERE "user_meetings"."meeting_id" = ? [["meeting_id", 1]] + Meeting Destroy (0.1ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 7ms (ActiveRecord: 0.8ms | Allocations: 2317) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cumque"], ["description", "Repellendus rem adipisci perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.777160"], ["updated_at", "2020-05-05 18:34:30.777160"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "unde"], ["description", "Quidem aut quia illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.780085"], ["updated_at", "2020-05-05 18:34:30.780085"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Quidem voluptas provident magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.781597"], ["updated_at", "2020-05-05 18:34:30.781597"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Ut blanditiis quo incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.782922"], ["updated_at", "2020-05-05 18:34:30.782922"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Velit voluptatem commodi nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.784468"], ["updated_at", "2020-05-05 18:34:30.784468"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quos"], ["description", "Aut consequatur odit autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.785778"], ["updated_at", "2020-05-05 18:34:30.785778"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "In labore impedit ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.787067"], ["updated_at", "2020-05-05 18:34:30.787067"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Consequatur id eos mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.788610"], ["updated_at", "2020-05-05 18:34:30.788610"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "labore"], ["description", "Optio consequatur quibusdam et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.790296"], ["updated_at", "2020-05-05 18:34:30.790296"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "reiciendis"], ["description", "Doloremque mollitia necessitatibus tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.792091"], ["updated_at", "2020-05-05 18:34:30.792091"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Salena Davis"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vmAjLkrC1qdOatP.lPi3yOfdSJn2f3x5brou7P0.F02rZHdFjzyAW"], ["created_at", "2020-05-05 18:34:30.795896"], ["updated_at", "2020-05-05 18:34:30.795896"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:30 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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: 2914) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "culpa"], ["description", "Dolor dolores laudantium consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.816006"], ["updated_at", "2020-05-05 18:34:30.816006"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempora"], ["description", "Qui minima repudiandae qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.819079"], ["updated_at", "2020-05-05 18:34:30.819079"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellendus"], ["description", "Modi animi eum laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.820498"], ["updated_at", "2020-05-05 18:34:30.820498"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Aliquid non inventore reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.821768"], ["updated_at", "2020-05-05 18:34:30.821768"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "beatae"], ["description", "Pariatur ipsum omnis non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.823007"], ["updated_at", "2020-05-05 18:34:30.823007"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Eos odio numquam quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.824450"], ["updated_at", "2020-05-05 18:34:30.824450"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vero"], ["description", "Ut minima quidem quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.825797"], ["updated_at", "2020-05-05 18:34:30.825797"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "esse"], ["description", "Et reiciendis impedit quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.827046"], ["updated_at", "2020-05-05 18:34:30.827046"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minima"], ["description", "Mollitia ut molestias recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.828454"], ["updated_at", "2020-05-05 18:34:30.828454"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Vel ut qui minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.830260"], ["updated_at", "2020-05-05 18:34:30.830260"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Erin Corkery"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hakGqQCGo.tCSep6W7LJee1OPcKykrMUvbOdd9Vj0FeDRBAti2vVe"], ["created_at", "2020-05-05 18:34:30.833691"], ["updated_at", "2020-05-05 18:34:30.833691"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:30 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.12ms) +Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2843) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Veritatis enim sapiente libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.850779"], ["updated_at", "2020-05-05 18:34:30.850779"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ullam"], ["description", "Vitae omnis animi nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.853589"], ["updated_at", "2020-05-05 18:34:30.853589"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "Et ut enim repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.855036"], ["updated_at", "2020-05-05 18:34:30.855036"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laudantium"], ["description", "Ut asperiores rerum laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.856338"], ["updated_at", "2020-05-05 18:34:30.856338"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Quos autem officia reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.857618"], ["updated_at", "2020-05-05 18:34:30.857618"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Cum asperiores ut maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.858938"], ["updated_at", "2020-05-05 18:34:30.858938"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "esse"], ["description", "Et ducimus et cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.860208"], ["updated_at", "2020-05-05 18:34:30.860208"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "similique"], ["description", "Quibusdam sapiente deleniti iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.861532"], ["updated_at", "2020-05-05 18:34:30.861532"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "architecto"], ["description", "Animi est maiores quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.862810"], ["updated_at", "2020-05-05 18:34:30.862810"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aperiam"], ["description", "Veniam ut amet qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.864201"], ["updated_at", "2020-05-05 18:34:30.864201"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Normand Miller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$h8tW9TWLRKS9Ve.teTWPb.GvjoqnS3esp4c/V7SUa4Zxgg1acbFG2"], ["created_at", "2020-05-05 18:34:30.866763"], ["updated_at", "2020-05-05 18:34:30.866763"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:30 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.64ms) +Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms | Allocations: 2841) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:34:30 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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: 1242) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "debitis"], ["description", "Animi porro et numquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.888956"], ["updated_at", "2020-05-05 18:34:30.888956"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Consequatur vitae fugit ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.892271"], ["updated_at", "2020-05-05 18:34:30.892271"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Dolorum sit quae qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.893774"], ["updated_at", "2020-05-05 18:34:30.893774"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Sunt est deserunt laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.895162"], ["updated_at", "2020-05-05 18:34:30.895162"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Iusto qui quia et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.896477"], ["updated_at", "2020-05-05 18:34:30.896477"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officia"], ["description", "Molestiae minus et consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.897784"], ["updated_at", "2020-05-05 18:34:30.897784"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "necessitatibus"], ["description", "Inventore sit est soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.899195"], ["updated_at", "2020-05-05 18:34:30.899195"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "architecto"], ["description", "Reiciendis repudiandae est aperiam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.900482"], ["updated_at", "2020-05-05 18:34:30.900482"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minima"], ["description", "Mollitia tempore doloribus recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.901766"], ["updated_at", "2020-05-05 18:34:30.901766"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Est ipsa quis fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.903031"], ["updated_at", "2020-05-05 18:34:30.903031"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jenise Lakin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$d/WkWux27sMzuDAB7W85QueYxhsIvU7G5bKR.QcT17.jxja3cisPi"], ["created_at", "2020-05-05 18:34:30.905601"], ["updated_at", "2020-05-05 18:34:30.905601"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:30 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.88ms) +Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:34:30 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.52ms) +Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.3ms | Allocations: 1239) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quidem"], ["description", "Culpa et id deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.928120"], ["updated_at", "2020-05-05 18:34:30.928120"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "modi"], ["description", "Tempora et illum minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.931434"], ["updated_at", "2020-05-05 18:34:30.931434"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quibusdam"], ["description", "Optio impedit modi et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.933589"], ["updated_at", "2020-05-05 18:34:30.933589"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempora"], ["description", "Totam sint omnis eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.935839"], ["updated_at", "2020-05-05 18:34:30.935839"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Debitis qui quas et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.937346"], ["updated_at", "2020-05-05 18:34:30.937346"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quas"], ["description", "Saepe nihil dolorem aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.938682"], ["updated_at", "2020-05-05 18:34:30.938682"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nisi"], ["description", "Natus omnis rerum minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.940022"], ["updated_at", "2020-05-05 18:34:30.940022"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "numquam"], ["description", "Deserunt fuga pariatur voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.941279"], ["updated_at", "2020-05-05 18:34:30.941279"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Cum dolores numquam enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.942600"], ["updated_at", "2020-05-05 18:34:30.942600"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "explicabo"], ["description", "Alias aspernatur neque saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.943880"], ["updated_at", "2020-05-05 18:34:30.943880"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Cliff Zulauf"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5f5vfI5Lpg7vHRptTxpZTOO1Yl0XMfjqAq2jgDd1iDDoVHciyfBJ6"], ["created_at", "2020-05-05 18:34:30.946624"], ["updated_at", "2020-05-05 18:34:30.946624"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:30 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.58ms) +Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:34:30 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (16.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Asperiores laboriosam dicta eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.978244"], ["updated_at", "2020-05-05 18:34:30.978244"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "debitis"], ["description", "Assumenda sapiente velit reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.981029"], ["updated_at", "2020-05-05 18:34:30.981029"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sapiente"], ["description", "Porro assumenda consequatur officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.982497"], ["updated_at", "2020-05-05 18:34:30.982497"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "pariatur"], ["description", "Error et unde vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.983785"], ["updated_at", "2020-05-05 18:34:30.983785"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magni"], ["description", "Dolore totam aut qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.985061"], ["updated_at", "2020-05-05 18:34:30.985061"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Labore molestias nesciunt sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.986465"], ["updated_at", "2020-05-05 18:34:30.986465"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Aut ut assumenda minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.987777"], ["updated_at", "2020-05-05 18:34:30.987777"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "debitis"], ["description", "Velit sit consequatur accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.989086"], ["updated_at", "2020-05-05 18:34:30.989086"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laudantium"], ["description", "Ipsa dolores consequatur aliquid."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.990738"], ["updated_at", "2020-05-05 18:34:30.990738"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Sequi tempore voluptatem id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:30.992436"], ["updated_at", "2020-05-05 18:34:30.992436"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Billi Waelchi"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4jBQUEOH1tKJHYjlcz0/zeaFxPMwRex/CpIPVCZIBm.YwSmNL/yZm"], ["created_at", "2020-05-05 18:34:30.996088"], ["updated_at", "2020-05-05 18:34:30.996088"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:30 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (17.04ms) +Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.1ms | Allocations: 2846) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:34:31 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Sed provident magnam sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.029487"], ["updated_at", "2020-05-05 18:34:31.029487"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "optio"], ["description", "Enim vel voluptatem eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.033338"], ["updated_at", "2020-05-05 18:34:31.033338"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quisquam"], ["description", "Quam quis nulla nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.035659"], ["updated_at", "2020-05-05 18:34:31.035659"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laudantium"], ["description", "Eos dignissimos sint velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.037528"], ["updated_at", "2020-05-05 18:34:31.037528"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sequi"], ["description", "Dolores omnis ab libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.038974"], ["updated_at", "2020-05-05 18:34:31.038974"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officia"], ["description", "Est aspernatur natus dolore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.040303"], ["updated_at", "2020-05-05 18:34:31.040303"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquid"], ["description", "Et quibusdam veritatis provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.041631"], ["updated_at", "2020-05-05 18:34:31.041631"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Et ipsam et architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.042916"], ["updated_at", "2020-05-05 18:34:31.042916"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veritatis"], ["description", "Assumenda ut odio enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.044221"], ["updated_at", "2020-05-05 18:34:31.044221"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "pariatur"], ["description", "Voluptate pariatur enim repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.045549"], ["updated_at", "2020-05-05 18:34:31.045549"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shad Hills"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HmEUFfGqirf22iCUw8Q7F.zGhU0NTCJ0ptTjeU1gQdT25w/ut552q"], ["created_at", "2020-05-05 18:34:31.048191"], ["updated_at", "2020-05-05 18:34:31.048191"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:31 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.75ms) +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 15:34:31 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:34:31.073168"], ["updated_at", "2020-05-05 18:34:31.073168"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.64ms) +Completed 201 Created in 22ms (Views: 1.1ms | ActiveRecord: 1.1ms | Allocations: 6207) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Voluptatem est cumque temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.088594"], ["updated_at", "2020-05-05 18:34:31.088594"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Distinctio enim sit ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.091668"], ["updated_at", "2020-05-05 18:34:31.091668"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Eum rerum autem omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.093561"], ["updated_at", "2020-05-05 18:34:31.093561"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Maxime natus dolor veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.096179"], ["updated_at", "2020-05-05 18:34:31.096179"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Nostrum ea voluptatem dignissimos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.097960"], ["updated_at", "2020-05-05 18:34:31.097960"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quae"], ["description", "Non voluptas enim cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.099450"], ["updated_at", "2020-05-05 18:34:31.099450"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Suscipit et corporis quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.100769"], ["updated_at", "2020-05-05 18:34:31.100769"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Voluptatem voluptatum nisi quas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.102185"], ["updated_at", "2020-05-05 18:34:31.102185"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ab"], ["description", "Non qui rerum quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.103490"], ["updated_at", "2020-05-05 18:34:31.103490"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Nam et nisi porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.104777"], ["updated_at", "2020-05-05 18:34:31.104777"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Terrance Friesen II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$K/uAx9jORIQw.BBeruHdrOgBR/8dXdkmk07srv/xBY433Gpjmk4Ia"], ["created_at", "2020-05-05 18:34:31.107365"], ["updated_at", "2020-05-05 18:34:31.107365"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:31 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2842) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:34:31 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:34:31.119522"], ["updated_at", "2020-05-05 18:34:31.119522"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.56ms) +Completed 201 Created in 5ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 2251) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Voluptas aut minima voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.133887"], ["updated_at", "2020-05-05 18:34:31.133887"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Est inventore neque illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.136689"], ["updated_at", "2020-05-05 18:34:31.136689"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quas"], ["description", "Facere nobis molestiae voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.138199"], ["updated_at", "2020-05-05 18:34:31.138199"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Laboriosam quos qui atque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.139546"], ["updated_at", "2020-05-05 18:34:31.139546"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Illum voluptatem sit sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.141135"], ["updated_at", "2020-05-05 18:34:31.141135"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Quia natus blanditiis atque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.142635"], ["updated_at", "2020-05-05 18:34:31.142635"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tenetur"], ["description", "Debitis et laboriosam qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.144380"], ["updated_at", "2020-05-05 18:34:31.144380"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Rem ab quis enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.145961"], ["updated_at", "2020-05-05 18:34:31.145961"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "In sunt sed et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.147325"], ["updated_at", "2020-05-05 18:34:31.147325"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "praesentium"], ["description", "Suscipit velit perspiciatis vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.148701"], ["updated_at", "2020-05-05 18:34:31.148701"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hang Daniel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gN0IYmmhu44fQLcZIeldkuwcxTCXn5FzcCA8qtOj6VhrS4Cero5/q"], ["created_at", "2020-05-05 18:34:31.151494"], ["updated_at", "2020-05-05 18:34:31.151494"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:31 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.45ms) +Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:34:31 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 4006) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Reprehenderit accusamus illum sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.177240"], ["updated_at", "2020-05-05 18:34:31.177240"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quas"], ["description", "Et ipsam aut dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.180600"], ["updated_at", "2020-05-05 18:34:31.180600"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corporis"], ["description", "Dolorum aut quo autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.182118"], ["updated_at", "2020-05-05 18:34:31.182118"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quas"], ["description", "Aperiam unde autem vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.183458"], ["updated_at", "2020-05-05 18:34:31.183458"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "expedita"], ["description", "Non quia cum sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.184874"], ["updated_at", "2020-05-05 18:34:31.184874"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Magnam sint qui rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.186339"], ["updated_at", "2020-05-05 18:34:31.186339"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Nihil eius dolores aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.187844"], ["updated_at", "2020-05-05 18:34:31.187844"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Tenetur aut atque tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.189467"], ["updated_at", "2020-05-05 18:34:31.189467"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sequi"], ["description", "Minima quia pariatur magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.191487"], ["updated_at", "2020-05-05 18:34:31.191487"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "asperiores"], ["description", "Natus consequuntur omnis laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.193370"], ["updated_at", "2020-05-05 18:34:31.193370"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ed Schumm"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$K0zgQlhpagUPZ6XkcnurwOlQKTZsc75V0DFFiwaat.uiECXjmtzXa"], ["created_at", "2020-05-05 18:34:31.197546"], ["updated_at", "2020-05-05 18:34:31.197546"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:31 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.6ms | ActiveRecord: 0.2ms | Allocations: 2841) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:34:31 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 3697) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "earum"], ["description", "Ratione ea omnis iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.223039"], ["updated_at", "2020-05-05 18:34:31.223039"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officia"], ["description", "Rem iste quis voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.226247"], ["updated_at", "2020-05-05 18:34:31.226247"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Sed repudiandae id amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.227930"], ["updated_at", "2020-05-05 18:34:31.227930"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repudiandae"], ["description", "Ducimus iure voluptatem blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.229611"], ["updated_at", "2020-05-05 18:34:31.229611"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Aspernatur non quasi est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.231699"], ["updated_at", "2020-05-05 18:34:31.231699"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perspiciatis"], ["description", "Officiis inventore dolores recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.234025"], ["updated_at", "2020-05-05 18:34:31.234025"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "mollitia"], ["description", "Facilis omnis vel excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.237564"], ["updated_at", "2020-05-05 18:34:31.237564"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Excepturi sit incidunt quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.240710"], ["updated_at", "2020-05-05 18:34:31.240710"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cumque"], ["description", "Dolor odit officia perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.242524"], ["updated_at", "2020-05-05 18:34:31.242524"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Harum culpa tenetur excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.244026"], ["updated_at", "2020-05-05 18:34:31.244026"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Geoffrey Dietrich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9CUgwPVP1rDhLwXk6dAQNu2qHyKGRhbwrE29X/KMszuM/xNPhKxKi"], ["created_at", "2020-05-05 18:34:31.246808"], ["updated_at", "2020-05-05 18:34:31.246808"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:31 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.42ms) +Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms | Allocations: 2845) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:34:31 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:34:31.258684"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1043) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Explicabo ut ut et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.268317"], ["updated_at", "2020-05-05 18:34:31.268317"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellat"], ["description", "Iure eos atque iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.271489"], ["updated_at", "2020-05-05 18:34:31.271489"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Praesentium consequatur et modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.273680"], ["updated_at", "2020-05-05 18:34:31.273680"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Et quos corporis qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.276126"], ["updated_at", "2020-05-05 18:34:31.276126"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Impedit dicta deleniti minus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.277752"], ["updated_at", "2020-05-05 18:34:31.277752"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Vel ab id eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.279180"], ["updated_at", "2020-05-05 18:34:31.279180"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Ut et id perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.280564"], ["updated_at", "2020-05-05 18:34:31.280564"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Nobis atque ipsa provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.281876"], ["updated_at", "2020-05-05 18:34:31.281876"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "earum"], ["description", "Sunt ducimus iste qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.283198"], ["updated_at", "2020-05-05 18:34:31.283198"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Natus vero accusantium incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.284537"], ["updated_at", "2020-05-05 18:34:31.284537"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lucie Kuhn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3ZifRa3691WMKfzWtAu7UurqO/N4pNkelvTcLBTou/LiE1FUmUaTW"], ["created_at", "2020-05-05 18:34:31.287212"], ["updated_at", "2020-05-05 18:34:31.287212"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:31 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.08ms) +Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.2ms | Allocations: 2840) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:34:31 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:34:31.299808"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 981) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quibusdam"], ["description", "Reprehenderit consequatur rerum aliquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.310181"], ["updated_at", "2020-05-05 18:34:31.310181"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eius"], ["description", "Iusto enim dolorem sapiente."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.313891"], ["updated_at", "2020-05-05 18:34:31.313891"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Velit consequatur voluptatem repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.316544"], ["updated_at", "2020-05-05 18:34:31.316544"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Quia in minus aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.319006"], ["updated_at", "2020-05-05 18:34:31.319006"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Laborum facere consequatur enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.320595"], ["updated_at", "2020-05-05 18:34:31.320595"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Accusamus mollitia cupiditate omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.322000"], ["updated_at", "2020-05-05 18:34:31.322000"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veniam"], ["description", "Voluptatem amet expedita deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.323385"], ["updated_at", "2020-05-05 18:34:31.323385"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsum"], ["description", "Et quasi nostrum voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.324759"], ["updated_at", "2020-05-05 18:34:31.324759"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "labore"], ["description", "Repudiandae tenetur laudantium provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.326089"], ["updated_at", "2020-05-05 18:34:31.326089"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laudantium"], ["description", "Voluptate deleniti quasi rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:34:31.327532"], ["updated_at", "2020-05-05 18:34:31.327532"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Barton Champlin V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$f4F/uk3rGNCwjU8bgwdQB.V5h387ty9hmZ0t2QkJr7yDMitXgrtnu"], ["created_at", "2020-05-05 18:34:31.330497"], ["updated_at", "2020-05-05 18:34:31.330497"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:34:31 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.42ms) +Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.3ms | Allocations: 2845) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:34:31 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1205) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Raguel Lakin II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Dg4SeukdI5wTOTDBJIp60u6L7lc47Zr9xaxFLxBDLHTvsgvhd.3ZO"], ["created_at", "2020-05-05 18:34:31.355948"], ["updated_at", "2020-05-05 18:34:31.355948"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Jordon Witting"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oDtpObVS7V3e95GQRJlBk.HjhaoxT2nrscZW7cH2x/Mp9B/POZbTa"], ["created_at", "2020-05-05 18:34:31.360322"], ["updated_at", "2020-05-05 18:34:31.360322"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mabelle Shields II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XB9TSCvUkQnnFQS7icpqKunzCXdbv95rXgCwBr0rSCp5UgG1hVef2"], ["created_at", "2020-05-05 18:34:31.363586"], ["updated_at", "2020-05-05 18:34:31.363586"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Peg Powlowski DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jcxicyAHh503UtXePB.8ou3yxRhK39akkBG2KwPvNflDwxwK00i6q"], ["created_at", "2020-05-05 18:34:31.366396"], ["updated_at", "2020-05-05 18:34:31.366396"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Brandy Leannon"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ljCcTTXinCSqt5EAvtpnwe2gipSmMAFg1Cp4gYaMbiUF91luR/ulO"], ["created_at", "2020-05-05 18:34:31.369144"], ["updated_at", "2020-05-05 18:34:31.369144"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elodia Wilkinson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4AMblRiLrUmLKmn2W6tJneFNQEbUCAj8o3BFXhpVgnWvBzK0XGxJa"], ["created_at", "2020-05-05 18:34:31.372301"], ["updated_at", "2020-05-05 18:34:31.372301"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Connie Halvorson I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/l55Tw0ggKo8ko8HwvGg6.8OKj5XgHknwm7cShK0hdAnilDBdnXni"], ["created_at", "2020-05-05 18:34:31.376035"], ["updated_at", "2020-05-05 18:34:31.376035"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Anton Roberts"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ol.RYOKtKsOotcGTlo1pwe.aonJBtyyq9MzLqI0xbbAfI83zkuCka"], ["created_at", "2020-05-05 18:34:31.380681"], ["updated_at", "2020-05-05 18:34:31.380681"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Teressa Nitzsche"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oNJSXzaQnf5jekrSte7O6.rsYL79/VbbfOIeLMtQfBCk1n.dxpvfW"], ["created_at", "2020-05-05 18:34:31.383768"], ["updated_at", "2020-05-05 18:34:31.383768"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mariam Wolf"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XEkvKXQrYmbIZ4glEzFOiOscmle899lmfNlVZzqcgp1AnRQLau3.m"], ["created_at", "2020-05-05 18:34:31.386635"], ["updated_at", "2020-05-05 18:34:31.386635"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:34:31 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.06ms) +Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms | Allocations: 2345) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elli Hamill"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$IuFapbEClFzoecqYTxccPOfMOcKcPFlCRB3eD/ZDkFGdmLET2EV9."], ["created_at", "2020-05-05 18:34:31.407543"], ["updated_at", "2020-05-05 18:34:31.407543"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miles Wolff"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$p5beZOouHq6iCzcUXODS1efiiIY5cBJfrjhlYjSMEQ3.zaeUtWF/e"], ["created_at", "2020-05-05 18:34:31.411562"], ["updated_at", "2020-05-05 18:34:31.411562"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Earle Haag"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0nomVPBmbECNnOq.UsSZNO2akK1xQj9jb6.syS4O8OUGpb5zlyrAu"], ["created_at", "2020-05-05 18:34:31.414864"], ["updated_at", "2020-05-05 18:34:31.414864"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lynelle Kemmer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5RBQB2Q.zSA0NTw1H9maw.c/o1Tnd/pewPMTOgCWUvTOuaTsFmBw."], ["created_at", "2020-05-05 18:34:31.419435"], ["updated_at", "2020-05-05 18:34:31.419435"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Scarlet Haley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$O6I3JehK/xItTF5JZ2FbYuxeGJUaPISXDe0H3XHi/F64f.rVSGTCy"], ["created_at", "2020-05-05 18:34:31.422369"], ["updated_at", "2020-05-05 18:34:31.422369"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Mona Murray"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gKVcscjrMI3Qj/9RszdkWOSowhoiQhnMLSELXhz1M7BKc/T8W9h7m"], ["created_at", "2020-05-05 18:34:31.424770"], ["updated_at", "2020-05-05 18:34:31.424770"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cristie Parker DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7tOD8oJilHxl8480qoaLHuum7p/3BZREuua2aBCVUGzWLY5RhyNwy"], ["created_at", "2020-05-05 18:34:31.427147"], ["updated_at", "2020-05-05 18:34:31.427147"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Shelby Cole"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NTPeRS39gO61iOzrST6XouFDJztBkx/j4/DOGnJZ/3SF733UWZf5i"], ["created_at", "2020-05-05 18:34:31.429716"], ["updated_at", "2020-05-05 18:34:31.429716"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ewa Kemmer Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5/z3srwTXZsiM7wxTzxCUeK90kfxY9l6h3wMNv1mRWwJIE2vkdzaW"], ["created_at", "2020-05-05 18:34:31.432430"], ["updated_at", "2020-05-05 18:34:31.432430"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Dean Ortiz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SbipnJ4saG/7IL3n/Uvvje8CWN931D5DE47xkLUTHZCYS1xFP7kZa"], ["created_at", "2020-05-05 18:34:31.435553"], ["updated_at", "2020-05-05 18:34:31.435553"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:34:31 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.85ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms | Allocations: 2203) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Israel Abernathy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pNua61FLJZMJlBz3N7Bm7utkTavfDHrM39wH6hJXOx8f85CIEKHz."], ["created_at", "2020-05-05 18:34:31.453217"], ["updated_at", "2020-05-05 18:34:31.453217"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Horace Harvey"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SrRB9FtrW5CHXHRbuEPMQOz4Si06yMNNQ/PTV8g6ABX2Vt8irTXHW"], ["created_at", "2020-05-05 18:34:31.458678"], ["updated_at", "2020-05-05 18:34:31.458678"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Derrick Harris"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$V1TdHWYyQip8uO6raKUi4u.76LS.OsVNmZ4FKaVE4Zl5v1Ht1tq8q"], ["created_at", "2020-05-05 18:34:31.461695"], ["updated_at", "2020-05-05 18:34:31.461695"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Isaias Orn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jsTcR3/8XGgQICfYgD9VKOFS7EpA2bmWAugU2Z2dHldbu14PIIIOW"], ["created_at", "2020-05-05 18:34:31.464118"], ["updated_at", "2020-05-05 18:34:31.464118"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kendall Gleichner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$AvD9EuYJz0TeQNXfjnw1wOffeomcHoNqkHsLuPhpKj/mwIu1YygkG"], ["created_at", "2020-05-05 18:34:31.466524"], ["updated_at", "2020-05-05 18:34:31.466524"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Darell Romaguera"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QzBH/0jDdZU36499gGAq8e3wJD5DkWVAjPrxCzrVGH2hBtuAb7Z7e"], ["created_at", "2020-05-05 18:34:31.468999"], ["updated_at", "2020-05-05 18:34:31.468999"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Young Nitzsche"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$EtWPXbPWJ6Rj8z8FIGJHFeHzdQgDD55tOz2xDMtLFpEbgxP2GoAse"], ["created_at", "2020-05-05 18:34:31.475139"], ["updated_at", "2020-05-05 18:34:31.475139"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marg DuBuque"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NlQPdyF8Af/7UdRXmOv5MeNEWM3DZ3jxmx2Vni8wAuRmGE3iiOOky"], ["created_at", "2020-05-05 18:34:31.478754"], ["updated_at", "2020-05-05 18:34:31.478754"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jacinto Heaney MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kQXFPv.5etWimNI.KBd2cOiPk7V6MQCCZjIbwABwTLrDMblo2uJma"], ["created_at", "2020-05-05 18:34:31.481713"], ["updated_at", "2020-05-05 18:34:31.481713"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Louie Wiegand"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/OGZMnOMmJaGiugMQkXc/uhYMsA2bmRbEjCc31W7m8Oyw81z8ILnm"], ["created_at", "2020-05-05 18:34:31.484201"], ["updated_at", "2020-05-05 18:34:31.484201"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:34:31 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.9ms) +Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:34:31 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.39ms) +Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (4.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Consuela Huel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$s7o5zE.TefKtVI7e1JQEceXaGj2EtMhcPPvkJip3L.Tkn.7aoiiem"], ["created_at", "2020-05-05 18:34:31.504594"], ["updated_at", "2020-05-05 18:34:31.504594"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mel Batz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qFQ1C59.PUwQVC87JdRRa.nEkdeMtFwDOazilZ4v9va4/2mqtN97q"], ["created_at", "2020-05-05 18:34:31.508466"], ["updated_at", "2020-05-05 18:34:31.508466"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Glinda Douglas"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YnYYSR6inSrkDt/OSmlPVuAnCPqNtBPTBzxTgeThHi47.MkgNpMd2"], ["created_at", "2020-05-05 18:34:31.511304"], ["updated_at", "2020-05-05 18:34:31.511304"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Helga Ortiz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Z5uBtrpC4dG2NKDUJjkbIOOtXrxeE2OEqDtgtg8sq0IvsPcZJt85G"], ["created_at", "2020-05-05 18:34:31.513927"], ["updated_at", "2020-05-05 18:34:31.513927"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Paris Weissnat Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TEkm7KVFTHgiZpUGc6ZLK.AAhmJwSgPoxjMVIEMLSpfyisZy3s.8O"], ["created_at", "2020-05-05 18:34:31.517047"], ["updated_at", "2020-05-05 18:34:31.517047"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lilia Lockman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KLPvDrHlfua8POeovqrEu.nv9DeSn3ugimJIu9PXYz6JsJtl7Rt.m"], ["created_at", "2020-05-05 18:34:31.519942"], ["updated_at", "2020-05-05 18:34:31.519942"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Art Emmerich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$f1XcShVSDRyHp.XKYgZxWOurzOvcTvBz45WB1tMBbzjqDgTkRRwRO"], ["created_at", "2020-05-05 18:34:31.522374"], ["updated_at", "2020-05-05 18:34:31.522374"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Fumiko Wiegand"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SFHw0uKmQhlP12mn3bnyBeQSX48WZBa70xskvggLQ5SZsOWR4n/4q"], ["created_at", "2020-05-05 18:34:31.524707"], ["updated_at", "2020-05-05 18:34:31.524707"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ronny Mante"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UpSNM5RV1.fQwM8.JkUQquSgwc1oGeaWD8rqy7x3Zvly9RM2jC8ee"], ["created_at", "2020-05-05 18:34:31.527056"], ["updated_at", "2020-05-05 18:34:31.527056"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rema Becker"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$upmIjx1SmwWjoo7YyvLXaOqmpmbmX0quU1eGhmbf9brCKup4JD9dy"], ["created_at", "2020-05-05 18:34:31.529655"], ["updated_at", "2020-05-05 18:34:31.529655"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:34:31 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.92ms) +Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:34:31 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.48ms) +Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jeffrey Strosin PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$U1eRmB5l6xe.v3rPDMsCkODfZ4pymM.t7wGPXBv5fq9PqPDQH5Kmy"], ["created_at", "2020-05-05 18:34:31.549627"], ["updated_at", "2020-05-05 18:34:31.549627"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ruthe Cronin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0XhokS6YpzYo1cZWLqldI.HR1g4AxEujeZhim3ReSbap42WqCdTv."], ["created_at", "2020-05-05 18:34:31.555628"], ["updated_at", "2020-05-05 18:34:31.555628"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Perry Murray"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FmvLvUvJh5zEcAUH0y119OzBfywJdfktONi54Hk2NYojdF7SCG1Be"], ["created_at", "2020-05-05 18:34:31.558738"], ["updated_at", "2020-05-05 18:34:31.558738"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tomas Howe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dydsuVv/jtbSCRUSN6ZTVuxiAhkWc5tO2EnNLsuICV7FUTDLIVllK"], ["created_at", "2020-05-05 18:34:31.562115"], ["updated_at", "2020-05-05 18:34:31.562115"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Adam Kuhn PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YP47iGbCwsQzwVdXcun43.8Tuhe0Nu4uIttZWAVCdI8FZ1lx0aBlK"], ["created_at", "2020-05-05 18:34:31.565018"], ["updated_at", "2020-05-05 18:34:31.565018"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Fredia Gleason"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0NArphjsBksE8rkTPIYDYOsvyb.A6epTW.vfBgY.wOP/pt/EEDZaa"], ["created_at", "2020-05-05 18:34:31.567516"], ["updated_at", "2020-05-05 18:34:31.567516"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Claud MacGyver"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XT6C1pzvy5AbVG1HMjqSouS6NTw/GYNkvyJdofpZhXZbwKaW5Dzgm"], ["created_at", "2020-05-05 18:34:31.569934"], ["updated_at", "2020-05-05 18:34:31.569934"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Lenora Miller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZEnit7N.6Cu.T074fgNmnevDXsVWb9C7QGwmWuseI/61JuxnOZYOW"], ["created_at", "2020-05-05 18:34:31.572330"], ["updated_at", "2020-05-05 18:34:31.572330"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Eliz Gleichner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$j206.NMrgwHoiDM8m8joTu96PLhDPzAMXxBxuDDNRdEindDocmomy"], ["created_at", "2020-05-05 18:34:31.574997"], ["updated_at", "2020-05-05 18:34:31.574997"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Murray Windler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VjBTGYS8kcDjNf1IvVl4WO734SB1Q7zAhmaUXYytzoVQ5VvoFzQGa"], ["created_at", "2020-05-05 18:34:31.577357"], ["updated_at", "2020-05-05 18:34:31.577357"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:34:31 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.88ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:34:31 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dana Reichel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/aUcX6PTCXmpuT2VLUkLg.5hQp5WK3wMRelYst/WAssXsG2CjVZWa"], ["created_at", "2020-05-05 18:34:31.596096"], ["updated_at", "2020-05-05 18:34:31.596096"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Herschel Connelly"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2zPMrdEudfAIMbsuQfGkRe4XwE.0r0xyCN0do3iT6XKLkUQHJKDFW"], ["created_at", "2020-05-05 18:34:31.600252"], ["updated_at", "2020-05-05 18:34:31.600252"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Merrill Terry"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fIdhKgbAJF5YRe1rQ.15aOfEkBeqsKYGoydwVH6WX5XPMHoG6NSJe"], ["created_at", "2020-05-05 18:34:31.602871"], ["updated_at", "2020-05-05 18:34:31.602871"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Efren Ernser"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Ba5Zi8.FSZ6QouBwARH6Ru2Tals2ISGSHmZsbRNIeZdEH/drJvKL2"], ["created_at", "2020-05-05 18:34:31.605303"], ["updated_at", "2020-05-05 18:34:31.605303"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Carl VonRueden"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CX6pxQWJvclTsrgWn6KIO.cN/1BqImf755z5fXGJqaPPtDyf.eMy2"], ["created_at", "2020-05-05 18:34:31.607688"], ["updated_at", "2020-05-05 18:34:31.607688"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Moises Kub"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$t71xm/Cp9iBg06mHAVozTek3r9PR3MFwc8BIsH/e4GyIwadtsMsSi"], ["created_at", "2020-05-05 18:34:31.610267"], ["updated_at", "2020-05-05 18:34:31.610267"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Synthia Dickinson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Hnd5C3gbhHJFIn0K6AyOeuE0R9MgSc88susLNoTsLtru9YObKbdyi"], ["created_at", "2020-05-05 18:34:31.612641"], ["updated_at", "2020-05-05 18:34:31.612641"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Oscar Kris PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aKy3QUEpLHoNW7Hplqr4qOwT.EA.GKU/3e77wi63tRlQywqP7SpOO"], ["created_at", "2020-05-05 18:34:31.615327"], ["updated_at", "2020-05-05 18:34:31.615327"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Lucius Harris"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1mKYiyIjijSJCxFNB/nh2umn39szzU3BtjF45dU6nkiaQlw2XJkeG"], ["created_at", "2020-05-05 18:34:31.618721"], ["updated_at", "2020-05-05 18:34:31.618721"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jacinda Ledner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$A25AsYPltFZumv5LVyI3EejqMrxehl8RnH9E/iM2jIZ7OlfrZ8wTS"], ["created_at", "2020-05-05 18:34:31.621342"], ["updated_at", "2020-05-05 18:34:31.621342"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:34:31 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.9ms) +Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:34:31 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (4.4ms) SELECT sqlite_version(*) +  (0.6ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (117.3ms) DELETE FROM "meetings"; +  (1.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (136.7ms) DELETE FROM "user_meets"; +  (1.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.8ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (85.7ms) DELETE FROM "user_meetings"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (80.4ms) DELETE FROM "meets"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (136.3ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (120.9ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (138.2ms) DELETE FROM "users"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marci Bernhard I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QivB7PRebe0Jwpk//1N.oOgs4LgU7ro3Y3jmnLWMJRnNv6qCZ8bnC"], ["created_at", "2020-05-05 18:36:44.589224"], ["updated_at", "2020-05-05 18:36:44.589224"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magni"], ["description", "Aspernatur amet nam ipsum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:44.606247"], ["updated_at", "2020-05-05 18:36:44.606247"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea eaque inventore sed?"], ["description", "Fuga vero debitis quo."], ["date", "2020-05-06 18:36:44.631224"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.658872"], ["updated_at", "2020-05-05 18:36:44.658872"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque qui tenetur sequi?"], ["description", "Aut quos iusto rem."], ["date", "2020-05-06 18:36:44.660617"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.661419"], ["updated_at", "2020-05-05 18:36:44.661419"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio sed et rerum?"], ["description", "Illo velit itaque rerum."], ["date", "2020-05-06 18:36:44.663339"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.665617"], ["updated_at", "2020-05-05 18:36:44.665617"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet dolores itaque quia?"], ["description", "Sunt aperiam debitis ab."], ["date", "2020-05-06 18:36:44.667939"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.669113"], ["updated_at", "2020-05-05 18:36:44.669113"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et vel impedit molestiae?"], ["description", "Porro harum aliquid aut."], ["date", "2020-05-06 18:36:44.670520"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.671206"], ["updated_at", "2020-05-05 18:36:44.671206"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit dolores repellat possimus?"], ["description", "Est dolorem qui debitis."], ["date", "2020-05-06 18:36:44.672383"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.673067"], ["updated_at", "2020-05-05 18:36:44.673067"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint harum rem nemo?"], ["description", "Ipsa iusto nihil corporis."], ["date", "2020-05-06 18:36:44.674434"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.675118"], ["updated_at", "2020-05-05 18:36:44.675118"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos labore rem eum?"], ["description", "Exercitationem impedit hic cumque."], ["date", "2020-05-06 18:36:44.676283"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.676977"], ["updated_at", "2020-05-05 18:36:44.676977"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex dolorum autem quidem?"], ["description", "Pariatur aut est et."], ["date", "2020-05-06 18:36:44.678872"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.680161"], ["updated_at", "2020-05-05 18:36:44.680161"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum aut magni minima?"], ["description", "Necessitatibus a laborum est."], ["date", "2020-05-06 18:36:44.682374"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.683495"], ["updated_at", "2020-05-05 18:36:44.683495"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit sed soluta dignissimos?"], ["description", "Veniam omnis animi voluptas."], ["date", "2020-05-06 18:36:44.686147"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.688636"], ["updated_at", "2020-05-05 18:36:44.688636"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus fugiat vel qui?"], ["description", "Et repellendus doloremque cum."], ["date", "2020-05-06 18:36:44.691166"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.692330"], ["updated_at", "2020-05-05 18:36:44.692330"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et nihil nulla corporis?"], ["description", "Atque quam dolorem deleniti."], ["date", "2020-05-06 18:36:44.693882"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.697045"], ["updated_at", "2020-05-05 18:36:44.697045"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non autem necessitatibus aut?"], ["description", "Fuga qui voluptate est."], ["date", "2020-05-06 18:36:44.700564"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.701576"], ["updated_at", "2020-05-05 18:36:44.701576"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente dolorem sint minima?"], ["description", "Nesciunt ut voluptas placeat."], ["date", "2020-05-06 18:36:44.703151"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.704483"], ["updated_at", "2020-05-05 18:36:44.704483"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro laborum et ut?"], ["description", "Omnis accusantium similique officia."], ["date", "2020-05-06 18:36:44.706765"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.708863"], ["updated_at", "2020-05-05 18:36:44.708863"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur corrupti quo voluptate?"], ["description", "Vel ullam voluptatibus nihil."], ["date", "2020-05-06 18:36:44.710567"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.712009"], ["updated_at", "2020-05-05 18:36:44.712009"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et aut sint voluptas?"], ["description", "Blanditiis alias nisi facere."], ["date", "2020-05-06 18:36:44.713769"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.714577"], ["updated_at", "2020-05-05 18:36:44.714577"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae voluptates nam rerum?"], ["description", "Aut sit repellat nihil."], ["date", "2020-05-06 18:36:44.715991"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.716747"], ["updated_at", "2020-05-05 18:36:44.716747"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur voluptate ut dolorum?"], ["description", "Dolor amet veniam rerum."], ["date", "2020-05-06 18:36:44.718363"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.719210"], ["updated_at", "2020-05-05 18:36:44.719210"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:36:44 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (19.95ms) +Completed 200 OK in 50ms (Views: 30.1ms | ActiveRecord: 0.5ms | Allocations: 8639) +  (0.7ms) ROLLBACK TO SAVEPOINT active_record_1 +  (43.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Michaela Streich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$G4fLxXsHS.TKA7HI8NFtw.j4z0ugEmnck.eba2Tq7BqRy09tcQIxa"], ["created_at", "2020-05-05 18:36:44.871487"], ["updated_at", "2020-05-05 18:36:44.871487"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Atque occaecati illo qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:44.876222"], ["updated_at", "2020-05-05 18:36:44.876222"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores amet et omnis?"], ["description", "Iusto quas voluptatem vitae."], ["date", "2020-05-06 18:36:44.878356"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.880862"], ["updated_at", "2020-05-05 18:36:44.880862"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam et ut cupiditate?"], ["description", "Dolores reprehenderit omnis quos."], ["date", "2020-05-06 18:36:44.882976"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.884114"], ["updated_at", "2020-05-05 18:36:44.884114"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum rerum et aperiam?"], ["description", "Animi voluptate consequatur aut."], ["date", "2020-05-06 18:36:44.886288"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.888236"], ["updated_at", "2020-05-05 18:36:44.888236"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reiciendis iste doloremque voluptate?"], ["description", "Vel eligendi rem nobis."], ["date", "2020-05-06 18:36:44.889806"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.890826"], ["updated_at", "2020-05-05 18:36:44.890826"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis cupiditate et dignissimos?"], ["description", "Adipisci earum ullam quod."], ["date", "2020-05-06 18:36:44.892249"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.893275"], ["updated_at", "2020-05-05 18:36:44.893275"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum asperiores reiciendis et?"], ["description", "Non modi nemo provident."], ["date", "2020-05-06 18:36:44.895489"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.896938"], ["updated_at", "2020-05-05 18:36:44.896938"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae aut ut recusandae?"], ["description", "Eius odit alias aut."], ["date", "2020-05-06 18:36:44.898745"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.899900"], ["updated_at", "2020-05-05 18:36:44.899900"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit quia minus labore?"], ["description", "Voluptatem velit tenetur architecto."], ["date", "2020-05-06 18:36:44.901416"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.902288"], ["updated_at", "2020-05-05 18:36:44.902288"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam dolor consequuntur atque?"], ["description", "Odio optio officiis magni."], ["date", "2020-05-06 18:36:44.903576"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.904662"], ["updated_at", "2020-05-05 18:36:44.904662"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia nulla officia debitis?"], ["description", "Rerum assumenda quibusdam similique."], ["date", "2020-05-06 18:36:44.908253"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.909341"], ["updated_at", "2020-05-05 18:36:44.909341"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et velit id molestias?"], ["description", "Et id facere consequuntur."], ["date", "2020-05-06 18:36:44.910940"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.912802"], ["updated_at", "2020-05-05 18:36:44.912802"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis labore id ut?"], ["description", "Repellendus nam ab corporis."], ["date", "2020-05-06 18:36:44.915317"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.916493"], ["updated_at", "2020-05-05 18:36:44.916493"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid officia fugit quis?"], ["description", "Odio blanditiis quam est."], ["date", "2020-05-06 18:36:44.918153"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.919163"], ["updated_at", "2020-05-05 18:36:44.919163"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam architecto incidunt est?"], ["description", "Iusto similique libero dolore."], ["date", "2020-05-06 18:36:44.920682"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.921799"], ["updated_at", "2020-05-05 18:36:44.921799"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et exercitationem sed vero?"], ["description", "Iste id laboriosam tempora."], ["date", "2020-05-06 18:36:44.923567"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.924844"], ["updated_at", "2020-05-05 18:36:44.924844"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis dolorem qui nihil?"], ["description", "Itaque praesentium dolores quis."], ["date", "2020-05-06 18:36:44.927695"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.928942"], ["updated_at", "2020-05-05 18:36:44.928942"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem dolores dolorem aliquam?"], ["description", "Sunt nobis officiis repudiandae."], ["date", "2020-05-06 18:36:44.930584"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.931705"], ["updated_at", "2020-05-05 18:36:44.931705"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo itaque quam debitis?"], ["description", "Iure aliquid dolores placeat."], ["date", "2020-05-06 18:36:44.933546"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.934655"], ["updated_at", "2020-05-05 18:36:44.934655"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A qui sed animi?"], ["description", "Minus amet ut doloremque."], ["date", "2020-05-06 18:36:44.936486"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.937794"], ["updated_at", "2020-05-05 18:36:44.937794"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur consequatur autem ratione?"], ["description", "Ex quis maiores et."], ["date", "2020-05-06 18:36:44.939568"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:44.940723"], ["updated_at", "2020-05-05 18:36:44.940723"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:36:44 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.4ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.19ms) +Completed 200 OK in 14ms (Views: 11.6ms | ActiveRecord: 0.6ms | Allocations: 5519) +  (0.6ms) ROLLBACK TO SAVEPOINT active_record_1 +  (20.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (18.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Suk Heathcote"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Ehk0saX.goKQGoiLTXIqoeAbEmsXcjHqgbg7kXQr9GjBXA9uuruK6"], ["created_at", "2020-05-05 18:36:44.991256"], ["updated_at", "2020-05-05 18:36:44.991256"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quod"], ["description", "Facere qui dolorem nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:45.012207"], ["updated_at", "2020-05-05 18:36:45.012207"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur dicta fugiat expedita?"], ["description", "Quod rem sequi quis."], ["date", "2020-05-06 18:36:45.014911"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.016202"], ["updated_at", "2020-05-05 18:36:45.016202"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate iste error aut?"], ["description", "Quidem aut repellendus quia."], ["date", "2020-05-06 18:36:45.018012"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.019191"], ["updated_at", "2020-05-05 18:36:45.019191"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea praesentium aut est?"], ["description", "Et ipsum facilis nihil."], ["date", "2020-05-06 18:36:45.020887"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.022072"], ["updated_at", "2020-05-05 18:36:45.022072"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut velit voluptates facere?"], ["description", "Suscipit est optio voluptas."], ["date", "2020-05-06 18:36:45.023819"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.024995"], ["updated_at", "2020-05-05 18:36:45.024995"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non qui sequi tempore?"], ["description", "Assumenda libero dolorem nulla."], ["date", "2020-05-06 18:36:45.027460"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.029631"], ["updated_at", "2020-05-05 18:36:45.029631"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et iure laborum iusto?"], ["description", "Beatae ab aliquid dolor."], ["date", "2020-05-06 18:36:45.031520"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.032724"], ["updated_at", "2020-05-05 18:36:45.032724"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi dignissimos ad ut?"], ["description", "Velit est nihil repellat."], ["date", "2020-05-06 18:36:45.034413"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.035499"], ["updated_at", "2020-05-05 18:36:45.035499"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus quas voluptatem qui?"], ["description", "Blanditiis minus voluptatem vitae."], ["date", "2020-05-06 18:36:45.037332"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.038480"], ["updated_at", "2020-05-05 18:36:45.038480"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid et animi quia?"], ["description", "Amet alias et beatae."], ["date", "2020-05-06 18:36:45.040062"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.041179"], ["updated_at", "2020-05-05 18:36:45.041179"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor modi suscipit nemo?"], ["description", "Corporis et et neque."], ["date", "2020-05-06 18:36:45.072668"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.074322"], ["updated_at", "2020-05-05 18:36:45.074322"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut molestias est temporibus?"], ["description", "Ratione quisquam sed nisi."], ["date", "2020-05-06 18:36:45.076169"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.077136"], ["updated_at", "2020-05-05 18:36:45.077136"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam enim vero minus?"], ["description", "Consequatur itaque odio non."], ["date", "2020-05-06 18:36:45.078823"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.079896"], ["updated_at", "2020-05-05 18:36:45.079896"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam aut minima ipsum?"], ["description", "Mollitia expedita assumenda rerum."], ["date", "2020-05-06 18:36:45.081248"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.081954"], ["updated_at", "2020-05-05 18:36:45.081954"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi est ad nostrum?"], ["description", "Non quia tempora occaecati."], ["date", "2020-05-06 18:36:45.083215"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.083893"], ["updated_at", "2020-05-05 18:36:45.083893"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod adipisci enim eos?"], ["description", "Ratione voluptatem ut culpa."], ["date", "2020-05-06 18:36:45.085129"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.085912"], ["updated_at", "2020-05-05 18:36:45.085912"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint repudiandae ut dolores?"], ["description", "Harum cumque minus quia."], ["date", "2020-05-06 18:36:45.087904"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.088969"], ["updated_at", "2020-05-05 18:36:45.088969"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est explicabo rem maxime?"], ["description", "Ut facere id optio."], ["date", "2020-05-06 18:36:45.090407"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.091148"], ["updated_at", "2020-05-05 18:36:45.091148"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam quod sequi nostrum?"], ["description", "Ut voluptatem numquam voluptate."], ["date", "2020-05-06 18:36:45.092357"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.093049"], ["updated_at", "2020-05-05 18:36:45.093049"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates ratione veniam voluptas?"], ["description", "Minima mollitia quisquam ea."], ["date", "2020-05-06 18:36:45.094267"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.094971"], ["updated_at", "2020-05-05 18:36:45.094971"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio incidunt accusamus quo?"], ["description", "Nostrum molestiae cum et."], ["date", "2020-05-06 18:36:45.096168"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.097539"], ["updated_at", "2020-05-05 18:36:45.097539"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:36:45 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 404 Not Found in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms | Allocations: 866) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (11.0ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Vickie Schmeler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jrcx/ImG530u4dq0s6pYu./Py1JwyXnk8iNtyiyWShD.uFPDCfhRi"], ["created_at", "2020-05-05 18:36:45.118117"], ["updated_at", "2020-05-05 18:36:45.118117"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aspernatur"], ["description", "Aperiam dolorem eos voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:45.131116"], ["updated_at", "2020-05-05 18:36:45.131116"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem deleniti quod nemo?"], ["description", "Enim voluptas aut eius."], ["date", "2020-05-06 18:36:45.132638"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.133539"], ["updated_at", "2020-05-05 18:36:45.133539"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod eius iusto soluta?"], ["description", "Dolorem unde et ea."], ["date", "2020-05-06 18:36:45.134862"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.135578"], ["updated_at", "2020-05-05 18:36:45.135578"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At sunt unde qui?"], ["description", "In dolorem consequatur consectetur."], ["date", "2020-05-06 18:36:45.136764"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.137506"], ["updated_at", "2020-05-05 18:36:45.137506"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta et ipsum autem?"], ["description", "Molestias omnis voluptas minima."], ["date", "2020-05-06 18:36:45.138726"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.139444"], ["updated_at", "2020-05-05 18:36:45.139444"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit dolorem quo sit?"], ["description", "Quo occaecati dolores repellendus."], ["date", "2020-05-06 18:36:45.140570"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.141258"], ["updated_at", "2020-05-05 18:36:45.141258"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam beatae et et?"], ["description", "Error sed rem nam."], ["date", "2020-05-06 18:36:45.142411"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.143086"], ["updated_at", "2020-05-05 18:36:45.143086"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui voluptatum illo error?"], ["description", "Sit quibusdam voluptatum quidem."], ["date", "2020-05-06 18:36:45.144215"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.145128"], ["updated_at", "2020-05-05 18:36:45.145128"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint nisi et et?"], ["description", "Eos nam aut consequatur."], ["date", "2020-05-06 18:36:45.147450"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.148790"], ["updated_at", "2020-05-05 18:36:45.148790"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates omnis repudiandae omnis?"], ["description", "Voluptas odio tempore deleniti."], ["date", "2020-05-06 18:36:45.150247"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.151035"], ["updated_at", "2020-05-05 18:36:45.151035"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis voluptatum voluptas amet?"], ["description", "Adipisci praesentium sunt aliquid."], ["date", "2020-05-06 18:36:45.152918"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.153669"], ["updated_at", "2020-05-05 18:36:45.153669"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero dolor eos nostrum?"], ["description", "In est at quibusdam."], ["date", "2020-05-06 18:36:45.154880"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.155591"], ["updated_at", "2020-05-05 18:36:45.155591"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae ex quia velit?"], ["description", "Magnam nemo dicta porro."], ["date", "2020-05-06 18:36:45.156802"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.157523"], ["updated_at", "2020-05-05 18:36:45.157523"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt consequatur sit et?"], ["description", "Ut quia omnis corrupti."], ["date", "2020-05-06 18:36:45.158755"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.159511"], ["updated_at", "2020-05-05 18:36:45.159511"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore officia nostrum et?"], ["description", "Et maxime dolore repellendus."], ["date", "2020-05-06 18:36:45.160729"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.161416"], ["updated_at", "2020-05-05 18:36:45.161416"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non voluptatum sed perferendis?"], ["description", "Consectetur iure ipsam dicta."], ["date", "2020-05-06 18:36:45.162706"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.163739"], ["updated_at", "2020-05-05 18:36:45.163739"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe dolor assumenda id?"], ["description", "Deserunt consequatur eius nihil."], ["date", "2020-05-06 18:36:45.165324"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.166289"], ["updated_at", "2020-05-05 18:36:45.166289"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil reiciendis aut voluptatem?"], ["description", "Nam quasi est et."], ["date", "2020-05-06 18:36:45.168571"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.169603"], ["updated_at", "2020-05-05 18:36:45.169603"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ducimus sit omnis harum?"], ["description", "Veniam voluptatibus harum natus."], ["date", "2020-05-06 18:36:45.171130"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.171922"], ["updated_at", "2020-05-05 18:36:45.171922"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum totam et deserunt?"], ["description", "Amet aliquid quidem incidunt."], ["date", "2020-05-06 18:36:45.173285"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.174014"], ["updated_at", "2020-05-05 18:36:45.174014"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda id sit rerum?"], ["description", "Facilis est beatae tenetur."], ["date", "2020-05-06 18:36:45.175255"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.175933"], ["updated_at", "2020-05-05 18:36:45.175933"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:36:45 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.14ms) +Completed 404 Not Found in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 509) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Daniel Conn V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Lc7lUX81.kJ/s5S1Fo3SLeSHsr9cFVoxd3A/Y/QsBcYxdP5LaTwVi"], ["created_at", "2020-05-05 18:36:45.195403"], ["updated_at", "2020-05-05 18:36:45.195403"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Ad totam ut atque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:45.198211"], ["updated_at", "2020-05-05 18:36:45.198211"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero hic in quod?"], ["description", "Ut eligendi consequatur quos."], ["date", "2020-05-06 18:36:45.199740"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.200721"], ["updated_at", "2020-05-05 18:36:45.200721"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus dignissimos in recusandae?"], ["description", "Consequatur corrupti molestiae ut."], ["date", "2020-05-06 18:36:45.202013"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.202736"], ["updated_at", "2020-05-05 18:36:45.202736"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id natus enim reiciendis?"], ["description", "Est nemo sed dolores."], ["date", "2020-05-06 18:36:45.203883"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.204559"], ["updated_at", "2020-05-05 18:36:45.204559"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil et ex veritatis?"], ["description", "Temporibus adipisci et tempore."], ["date", "2020-05-06 18:36:45.205664"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.206372"], ["updated_at", "2020-05-05 18:36:45.206372"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam quia sed animi?"], ["description", "Autem doloribus at modi."], ["date", "2020-05-06 18:36:45.208760"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.209841"], ["updated_at", "2020-05-05 18:36:45.209841"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut harum rerum ut?"], ["description", "Impedit laudantium sint modi."], ["date", "2020-05-06 18:36:45.211174"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.211927"], ["updated_at", "2020-05-05 18:36:45.211927"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni est quia molestiae?"], ["description", "Atque omnis doloribus ut."], ["date", "2020-05-06 18:36:45.213604"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.214547"], ["updated_at", "2020-05-05 18:36:45.214547"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reiciendis qui nihil est?"], ["description", "Et suscipit assumenda velit."], ["date", "2020-05-06 18:36:45.215822"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.216565"], ["updated_at", "2020-05-05 18:36:45.216565"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et non quis quas?"], ["description", "Aut iste sapiente et."], ["date", "2020-05-06 18:36:45.217822"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.218558"], ["updated_at", "2020-05-05 18:36:45.218558"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Hic quis et eum?"], ["description", "Ratione suscipit aperiam fuga."], ["date", "2020-05-06 18:36:45.220425"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.221256"], ["updated_at", "2020-05-05 18:36:45.221256"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos totam et libero?"], ["description", "Nihil omnis explicabo ex."], ["date", "2020-05-06 18:36:45.222612"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.223308"], ["updated_at", "2020-05-05 18:36:45.223308"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit illum deserunt cupiditate?"], ["description", "Cupiditate tempora sapiente ut."], ["date", "2020-05-06 18:36:45.224514"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.225191"], ["updated_at", "2020-05-05 18:36:45.225191"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit et illo vero?"], ["description", "Laudantium totam unde quibusdam."], ["date", "2020-05-06 18:36:45.226306"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.227426"], ["updated_at", "2020-05-05 18:36:45.227426"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore in quis voluptas?"], ["description", "Provident rerum cumque illum."], ["date", "2020-05-06 18:36:45.229730"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.231220"], ["updated_at", "2020-05-05 18:36:45.231220"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit unde distinctio est?"], ["description", "Est est error porro."], ["date", "2020-05-06 18:36:45.232894"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.233732"], ["updated_at", "2020-05-05 18:36:45.233732"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel iure non consequuntur?"], ["description", "Accusantium et consequuntur dolorem."], ["date", "2020-05-06 18:36:45.234925"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.235607"], ["updated_at", "2020-05-05 18:36:45.235607"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia et dolorem deserunt?"], ["description", "Aut molestiae porro iste."], ["date", "2020-05-06 18:36:45.236744"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.237473"], ["updated_at", "2020-05-05 18:36:45.237473"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut eos occaecati accusantium?"], ["description", "Et iste sit quas."], ["date", "2020-05-06 18:36:45.238758"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.239488"], ["updated_at", "2020-05-05 18:36:45.239488"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem sit voluptas provident?"], ["description", "Voluptatibus quod molestias alias."], ["date", "2020-05-06 18:36:45.240677"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.241376"], ["updated_at", "2020-05-05 18:36:45.241376"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit sapiente debitis doloremque?"], ["description", "Id ut quae quaerat."], ["date", "2020-05-06 18:36:45.242687"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.243380"], ["updated_at", "2020-05-05 18:36:45.243380"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:36:45 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.69ms) +Completed 200 OK in 5ms (Views: 1.1ms | ActiveRecord: 0.5ms | Allocations: 1085) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (19.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (19.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Stanford Jones"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9JMI5WztMlL6nauj4T193OUGLd53Kjd5Vme7coJL5jGSpFXlBHXaa"], ["created_at", "2020-05-05 18:36:45.302802"], ["updated_at", "2020-05-05 18:36:45.302802"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempore"], ["description", "Voluptatem voluptatem omnis rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:45.323888"], ["updated_at", "2020-05-05 18:36:45.323888"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque aspernatur ut at?"], ["description", "Occaecati asperiores cumque non."], ["date", "2020-05-06 18:36:45.325486"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.326433"], ["updated_at", "2020-05-05 18:36:45.326433"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit deleniti in dignissimos?"], ["description", "Neque ut nemo laboriosam."], ["date", "2020-05-06 18:36:45.328220"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.330344"], ["updated_at", "2020-05-05 18:36:45.330344"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati suscipit et quaerat?"], ["description", "Ut molestias id ipsum."], ["date", "2020-05-06 18:36:45.332056"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.332953"], ["updated_at", "2020-05-05 18:36:45.332953"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed vero aspernatur consequatur?"], ["description", "Natus praesentium et explicabo."], ["date", "2020-05-06 18:36:45.334140"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.334843"], ["updated_at", "2020-05-05 18:36:45.334843"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur quam omnis doloribus?"], ["description", "Molestiae autem minima non."], ["date", "2020-05-06 18:36:45.335963"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.336676"], ["updated_at", "2020-05-05 18:36:45.336676"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis voluptates ut a?"], ["description", "Ipsum tempora voluptate dolorem."], ["date", "2020-05-06 18:36:45.337864"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.338579"], ["updated_at", "2020-05-05 18:36:45.338579"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quia molestiae quis?"], ["description", "Enim eius fuga est."], ["date", "2020-05-06 18:36:45.339768"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.340468"], ["updated_at", "2020-05-05 18:36:45.340468"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem harum amet quod?"], ["description", "Voluptatum similique iusto reprehenderit."], ["date", "2020-05-06 18:36:45.341638"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.342314"], ["updated_at", "2020-05-05 18:36:45.342314"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem perferendis in qui?"], ["description", "Unde quam ut rem."], ["date", "2020-05-06 18:36:45.343433"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.344166"], ["updated_at", "2020-05-05 18:36:45.344166"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut omnis inventore asperiores?"], ["description", "Aperiam est ad ab."], ["date", "2020-05-06 18:36:45.346442"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.348165"], ["updated_at", "2020-05-05 18:36:45.348165"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam ut perspiciatis provident?"], ["description", "Autem exercitationem quia rerum."], ["date", "2020-05-06 18:36:45.350140"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.351116"], ["updated_at", "2020-05-05 18:36:45.351116"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non sed repellendus laborum?"], ["description", "Soluta consequatur necessitatibus enim."], ["date", "2020-05-06 18:36:45.352488"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.353192"], ["updated_at", "2020-05-05 18:36:45.353192"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et minima et corporis?"], ["description", "Non velit vero illum."], ["date", "2020-05-06 18:36:45.354342"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.355026"], ["updated_at", "2020-05-05 18:36:45.355026"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis numquam est labore?"], ["description", "A distinctio voluptate voluptatem."], ["date", "2020-05-06 18:36:45.356256"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.357016"], ["updated_at", "2020-05-05 18:36:45.357016"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem nihil id in?"], ["description", "Dolore nam aliquid impedit."], ["date", "2020-05-06 18:36:45.358172"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.358882"], ["updated_at", "2020-05-05 18:36:45.358882"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas odit sit autem?"], ["description", "Possimus beatae quaerat pariatur."], ["date", "2020-05-06 18:36:45.360044"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.360708"], ["updated_at", "2020-05-05 18:36:45.360708"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem vero voluptatem at?"], ["description", "Ipsam optio voluptas doloremque."], ["date", "2020-05-06 18:36:45.361825"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.362575"], ["updated_at", "2020-05-05 18:36:45.362575"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique ut dolorem beatae?"], ["description", "Eligendi voluptas et eveniet."], ["date", "2020-05-06 18:36:45.364371"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.365380"], ["updated_at", "2020-05-05 18:36:45.365380"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos perspiciatis non suscipit?"], ["description", "Fugit quibusdam ullam impedit."], ["date", "2020-05-06 18:36:45.366816"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.367670"], ["updated_at", "2020-05-05 18:36:45.367670"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt id voluptas dicta?"], ["description", "Amet fuga quas unde."], ["date", "2020-05-06 18:36:45.369864"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.370897"], ["updated_at", "2020-05-05 18:36:45.370897"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:36:45 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.67ms) +Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.2ms | Allocations: 1058) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (11.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Erin Pagac"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fULy1yKl6E9Kw9U.TLF3..GAi2Qh8.cxMIomln1Xvcv7MfN1.4TEG"], ["created_at", "2020-05-05 18:36:45.387787"], ["updated_at", "2020-05-05 18:36:45.387787"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Ducimus rerum sed nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:45.401632"], ["updated_at", "2020-05-05 18:36:45.401632"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque id dolores nostrum?"], ["description", "A rem quia temporibus."], ["date", "2020-05-06 18:36:45.403136"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.404050"], ["updated_at", "2020-05-05 18:36:45.404050"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut inventore quo voluptatum?"], ["description", "Placeat est aliquam modi."], ["date", "2020-05-06 18:36:45.405324"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.406063"], ["updated_at", "2020-05-05 18:36:45.406063"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur recusandae omnis fugit?"], ["description", "Ipsum mollitia suscipit aut."], ["date", "2020-05-06 18:36:45.407355"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.408258"], ["updated_at", "2020-05-05 18:36:45.408258"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem quam veritatis earum?"], ["description", "Dolores dicta voluptatem minus."], ["date", "2020-05-06 18:36:45.410044"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.411050"], ["updated_at", "2020-05-05 18:36:45.411050"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam doloremque ut aliquam?"], ["description", "Quisquam quasi qui impedit."], ["date", "2020-05-06 18:36:45.412328"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.413115"], ["updated_at", "2020-05-05 18:36:45.413115"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum eligendi harum velit?"], ["description", "Iste laudantium possimus voluptas."], ["date", "2020-05-06 18:36:45.415038"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.416011"], ["updated_at", "2020-05-05 18:36:45.416011"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi inventore nisi dolore?"], ["description", "Rerum molestiae corporis a."], ["date", "2020-05-06 18:36:45.417731"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.418689"], ["updated_at", "2020-05-05 18:36:45.418689"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum doloremque quia fugiat?"], ["description", "Veritatis ducimus quas quia."], ["date", "2020-05-06 18:36:45.419949"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.420638"], ["updated_at", "2020-05-05 18:36:45.420638"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum assumenda labore temporibus?"], ["description", "Eius id occaecati qui."], ["date", "2020-05-06 18:36:45.421768"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.422436"], ["updated_at", "2020-05-05 18:36:45.422436"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est consequuntur cupiditate sit?"], ["description", "Sapiente soluta dolor voluptatum."], ["date", "2020-05-06 18:36:45.424360"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.425110"], ["updated_at", "2020-05-05 18:36:45.425110"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora dolorem dicta animi?"], ["description", "Dolores omnis et eveniet."], ["date", "2020-05-06 18:36:45.426500"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.427424"], ["updated_at", "2020-05-05 18:36:45.427424"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus animi nobis sint?"], ["description", "Tempora in voluptas harum."], ["date", "2020-05-06 18:36:45.429290"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.430609"], ["updated_at", "2020-05-05 18:36:45.430609"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laudantium modi debitis dolore?"], ["description", "Et non et incidunt."], ["date", "2020-05-06 18:36:45.432069"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.432810"], ["updated_at", "2020-05-05 18:36:45.432810"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores nihil repellendus assumenda?"], ["description", "Nihil modi eaque quia."], ["date", "2020-05-06 18:36:45.433979"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.434676"], ["updated_at", "2020-05-05 18:36:45.434676"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut ad et molestias?"], ["description", "Molestias debitis aut animi."], ["date", "2020-05-06 18:36:45.435883"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.436624"], ["updated_at", "2020-05-05 18:36:45.436624"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat mollitia qui voluptas?"], ["description", "Et hic vel perferendis."], ["date", "2020-05-06 18:36:45.437842"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.438545"], ["updated_at", "2020-05-05 18:36:45.438545"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto quia incidunt reprehenderit?"], ["description", "Voluptatibus praesentium occaecati et."], ["date", "2020-05-06 18:36:45.439727"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.440449"], ["updated_at", "2020-05-05 18:36:45.440449"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id aliquid omnis praesentium?"], ["description", "Aut provident est ullam."], ["date", "2020-05-06 18:36:45.441639"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.442358"], ["updated_at", "2020-05-05 18:36:45.442358"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis et sint eius?"], ["description", "Qui voluptas in voluptatem."], ["date", "2020-05-06 18:36:45.443653"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.444326"], ["updated_at", "2020-05-05 18:36:45.444326"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae tenetur dolorem facere?"], ["description", "Aut praesentium id eligendi."], ["date", "2020-05-06 18:36:45.445613"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.446739"], ["updated_at", "2020-05-05 18:36:45.446739"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:36:45 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 884) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rebbeca Durgan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$icbbP22jKvCSFwl9sdMINOA8cwP4vEdpGFEg4d2GvWsJpChGZjb5q"], ["created_at", "2020-05-05 18:36:45.463612"], ["updated_at", "2020-05-05 18:36:45.463612"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "recusandae"], ["description", "Debitis qui eius illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:45.467231"], ["updated_at", "2020-05-05 18:36:45.467231"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos autem veritatis libero?"], ["description", "Temporibus quia velit dolor."], ["date", "2020-05-06 18:36:45.469282"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.470763"], ["updated_at", "2020-05-05 18:36:45.470763"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste eum quo et?"], ["description", "Officiis consequuntur omnis ea."], ["date", "2020-05-06 18:36:45.472378"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.473187"], ["updated_at", "2020-05-05 18:36:45.473187"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus porro aliquid eligendi?"], ["description", "Sequi numquam nihil expedita."], ["date", "2020-05-06 18:36:45.474393"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.475088"], ["updated_at", "2020-05-05 18:36:45.475088"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum nulla similique unde?"], ["description", "Voluptatem officiis aperiam aut."], ["date", "2020-05-06 18:36:45.476235"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.476955"], ["updated_at", "2020-05-05 18:36:45.476955"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae molestias ipsam mollitia?"], ["description", "Repellendus ullam et voluptatem."], ["date", "2020-05-06 18:36:45.478073"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.479039"], ["updated_at", "2020-05-05 18:36:45.479039"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea qui atque necessitatibus?"], ["description", "Dolor laboriosam quia ad."], ["date", "2020-05-06 18:36:45.480815"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.481717"], ["updated_at", "2020-05-05 18:36:45.481717"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam praesentium odit animi?"], ["description", "Placeat iure voluptatem dolorum."], ["date", "2020-05-06 18:36:45.482956"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.483661"], ["updated_at", "2020-05-05 18:36:45.483661"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores laudantium quod cumque?"], ["description", "Itaque velit ut quia."], ["date", "2020-05-06 18:36:45.484803"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.485480"], ["updated_at", "2020-05-05 18:36:45.485480"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab mollitia odio aut?"], ["description", "Doloremque velit distinctio sit."], ["date", "2020-05-06 18:36:45.486581"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.487370"], ["updated_at", "2020-05-05 18:36:45.487370"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi dolorem voluptas qui?"], ["description", "Qui enim deserunt ducimus."], ["date", "2020-05-06 18:36:45.489895"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.491112"], ["updated_at", "2020-05-05 18:36:45.491112"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi vel ut eaque?"], ["description", "Ad illum optio rerum."], ["date", "2020-05-06 18:36:45.492627"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.493351"], ["updated_at", "2020-05-05 18:36:45.493351"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus minus velit accusamus?"], ["description", "Sed hic debitis sit."], ["date", "2020-05-06 18:36:45.494540"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.495214"], ["updated_at", "2020-05-05 18:36:45.495214"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni molestiae est incidunt?"], ["description", "Asperiores voluptatem quisquam accusamus."], ["date", "2020-05-06 18:36:45.496729"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.497829"], ["updated_at", "2020-05-05 18:36:45.497829"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti voluptates qui et?"], ["description", "Qui libero doloremque iusto."], ["date", "2020-05-06 18:36:45.499330"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.500092"], ["updated_at", "2020-05-05 18:36:45.500092"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum ut facere nihil?"], ["description", "Nemo ipsa delectus quis."], ["date", "2020-05-06 18:36:45.501410"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.502090"], ["updated_at", "2020-05-05 18:36:45.502090"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium illo atque et?"], ["description", "Vel sed blanditiis incidunt."], ["date", "2020-05-06 18:36:45.503277"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.503999"], ["updated_at", "2020-05-05 18:36:45.503999"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt nihil deserunt excepturi?"], ["description", "Illum quia aspernatur vel."], ["date", "2020-05-06 18:36:45.505173"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.505894"], ["updated_at", "2020-05-05 18:36:45.505894"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos nemo aut reiciendis?"], ["description", "Et consectetur recusandae nihil."], ["date", "2020-05-06 18:36:45.507025"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.507755"], ["updated_at", "2020-05-05 18:36:45.507755"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et consequatur quaerat magni?"], ["description", "Et occaecati est doloribus."], ["date", "2020-05-06 18:36:45.509270"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.510518"], ["updated_at", "2020-05-05 18:36:45.510518"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis tenetur omnis quae?"], ["description", "Odit exercitationem sapiente incidunt."], ["date", "2020-05-06 18:36:45.511950"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.512822"], ["updated_at", "2020-05-05 18:36:45.512822"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:36:45 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 867) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Terrance Gleason"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$EH8NR2Vs.edj9ufvWhB5wO2nOg0cCvUOkZIa0ij98zMtVoFhoALcK"], ["created_at", "2020-05-05 18:36:45.529425"], ["updated_at", "2020-05-05 18:36:45.529425"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Enim velit enim nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:45.533366"], ["updated_at", "2020-05-05 18:36:45.533366"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo eos corporis ut?"], ["description", "Corrupti veniam iste debitis."], ["date", "2020-05-06 18:36:45.534932"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.535960"], ["updated_at", "2020-05-05 18:36:45.535960"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi veniam voluptatem vitae?"], ["description", "Eaque iste totam natus."], ["date", "2020-05-06 18:36:45.537337"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.538185"], ["updated_at", "2020-05-05 18:36:45.538185"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit aspernatur deserunt asperiores?"], ["description", "Et sapiente ut id."], ["date", "2020-05-06 18:36:45.539351"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.540041"], ["updated_at", "2020-05-05 18:36:45.540041"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate rerum atque veniam?"], ["description", "Aut non consectetur veritatis."], ["date", "2020-05-06 18:36:45.541164"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.541902"], ["updated_at", "2020-05-05 18:36:45.541902"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia et est nisi?"], ["description", "Sequi qui repellendus voluptatem."], ["date", "2020-05-06 18:36:45.543123"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.543808"], ["updated_at", "2020-05-05 18:36:45.543808"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis veritatis aut ea?"], ["description", "Iste quidem reiciendis nisi."], ["date", "2020-05-06 18:36:45.544946"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.545729"], ["updated_at", "2020-05-05 18:36:45.545729"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit rerum dolore dignissimos?"], ["description", "Quibusdam earum ut aliquid."], ["date", "2020-05-06 18:36:45.547487"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.548439"], ["updated_at", "2020-05-05 18:36:45.548439"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo non aut nobis?"], ["description", "Iusto odio sed ipsum."], ["date", "2020-05-06 18:36:45.550125"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.551369"], ["updated_at", "2020-05-05 18:36:45.551369"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi officiis est suscipit?"], ["description", "Et illo perferendis architecto."], ["date", "2020-05-06 18:36:45.552779"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.553513"], ["updated_at", "2020-05-05 18:36:45.553513"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus similique modi quo?"], ["description", "Sapiente ducimus vel sint."], ["date", "2020-05-06 18:36:45.555368"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.556155"], ["updated_at", "2020-05-05 18:36:45.556155"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam voluptas recusandae voluptas?"], ["description", "Omnis officiis molestiae nemo."], ["date", "2020-05-06 18:36:45.557501"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.558208"], ["updated_at", "2020-05-05 18:36:45.558208"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente recusandae quo asperiores?"], ["description", "Saepe in qui deleniti."], ["date", "2020-05-06 18:36:45.559361"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.560013"], ["updated_at", "2020-05-05 18:36:45.560013"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit est deleniti et?"], ["description", "Molestiae eum ipsam eos."], ["date", "2020-05-06 18:36:45.561149"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.562101"], ["updated_at", "2020-05-05 18:36:45.562101"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit aliquam omnis voluptas?"], ["description", "Qui odit nam aut."], ["date", "2020-05-06 18:36:45.563842"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.564815"], ["updated_at", "2020-05-05 18:36:45.564815"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem quam perferendis ipsum?"], ["description", "Voluptas eaque quo repellendus."], ["date", "2020-05-06 18:36:45.566238"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.567076"], ["updated_at", "2020-05-05 18:36:45.567076"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque eaque voluptas distinctio?"], ["description", "Esse sed reiciendis dolor."], ["date", "2020-05-06 18:36:45.568230"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.568998"], ["updated_at", "2020-05-05 18:36:45.568998"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore modi perferendis voluptas?"], ["description", "Suscipit culpa illum optio."], ["date", "2020-05-06 18:36:45.570886"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.571960"], ["updated_at", "2020-05-05 18:36:45.571960"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut omnis rerum odio?"], ["description", "Consequatur ex ab et."], ["date", "2020-05-06 18:36:45.573251"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.573925"], ["updated_at", "2020-05-05 18:36:45.573925"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut voluptas et inventore?"], ["description", "Blanditiis ut distinctio commodi."], ["date", "2020-05-06 18:36:45.575075"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.575778"], ["updated_at", "2020-05-05 18:36:45.575778"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam enim dignissimos at?"], ["description", "Odio eos voluptatibus officia."], ["date", "2020-05-06 18:36:45.577016"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.577844"], ["updated_at", "2020-05-05 18:36:45.577844"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:36:45 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"title"=>"Visit Narnia", "description"=>"false", "date"=>"2020-05-06 15:36:45 -0300", "link"=>"https://zoom.com/fakelink", "meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Visit Narnia"], ["description", "false"], ["date", "2020-05-06 18:36:45"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.598489"], ["updated_at", "2020-05-05 18:36:45.598489"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.55ms) +Completed 201 Created in 5ms (Views: 1.1ms | ActiveRecord: 0.5ms | Allocations: 1698) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ty Lemke V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$i6/o3eWUqjrHH6uPrRgzp.6eQgluEfrGBjl7Z8afwxLfMTtbZrJfO"], ["created_at", "2020-05-05 18:36:45.613149"], ["updated_at", "2020-05-05 18:36:45.613149"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Aut illo quia ullam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:45.616554"], ["updated_at", "2020-05-05 18:36:45.616554"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta tenetur ipsam accusantium?"], ["description", "Amet dolores illo excepturi."], ["date", "2020-05-06 18:36:45.618131"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.619062"], ["updated_at", "2020-05-05 18:36:45.619062"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore sit impedit dolores?"], ["description", "Quia sit error eveniet."], ["date", "2020-05-06 18:36:45.620380"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.621084"], ["updated_at", "2020-05-05 18:36:45.621084"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et commodi necessitatibus ut?"], ["description", "Aut libero dolorum laborum."], ["date", "2020-05-06 18:36:45.622238"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.622914"], ["updated_at", "2020-05-05 18:36:45.622914"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem porro neque necessitatibus?"], ["description", "Ex eaque similique dolores."], ["date", "2020-05-06 18:36:45.624062"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.624882"], ["updated_at", "2020-05-05 18:36:45.624882"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam nam et tempora?"], ["description", "Maiores assumenda vel sint."], ["date", "2020-05-06 18:36:45.626021"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.626777"], ["updated_at", "2020-05-05 18:36:45.626777"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum quam fuga magni?"], ["description", "Cupiditate maxime sed non."], ["date", "2020-05-06 18:36:45.628646"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.629952"], ["updated_at", "2020-05-05 18:36:45.629952"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est quo eveniet ut?"], ["description", "Nam atque non voluptatem."], ["date", "2020-05-06 18:36:45.631775"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.632723"], ["updated_at", "2020-05-05 18:36:45.632723"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam rerum vel explicabo?"], ["description", "Aut sunt distinctio quasi."], ["date", "2020-05-06 18:36:45.633992"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.634670"], ["updated_at", "2020-05-05 18:36:45.634670"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut ea est atque?"], ["description", "Dolorem dignissimos consequuntur sunt."], ["date", "2020-05-06 18:36:45.635794"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.636465"], ["updated_at", "2020-05-05 18:36:45.636465"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui eligendi consequatur deleniti?"], ["description", "Temporibus facere beatae et."], ["date", "2020-05-06 18:36:45.638517"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.639345"], ["updated_at", "2020-05-05 18:36:45.639345"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque voluptates debitis atque?"], ["description", "Sit voluptatem laborum est."], ["date", "2020-05-06 18:36:45.640632"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.641317"], ["updated_at", "2020-05-05 18:36:45.641317"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo accusantium non aut?"], ["description", "Et neque voluptatibus est."], ["date", "2020-05-06 18:36:45.642531"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.643199"], ["updated_at", "2020-05-05 18:36:45.643199"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil quas aut reprehenderit?"], ["description", "Ratione repudiandae voluptas vitae."], ["date", "2020-05-06 18:36:45.644347"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.645136"], ["updated_at", "2020-05-05 18:36:45.645136"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas tempora dolore corporis?"], ["description", "Nihil omnis vel eos."], ["date", "2020-05-06 18:36:45.647308"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.648322"], ["updated_at", "2020-05-05 18:36:45.648322"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam hic commodi ducimus?"], ["description", "Consequatur eligendi eos illo."], ["date", "2020-05-06 18:36:45.650099"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.651480"], ["updated_at", "2020-05-05 18:36:45.651480"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati blanditiis architecto est?"], ["description", "Voluptatibus repellat excepturi aut."], ["date", "2020-05-06 18:36:45.653227"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.654204"], ["updated_at", "2020-05-05 18:36:45.654204"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia minima perferendis aut?"], ["description", "Ut in porro quisquam."], ["date", "2020-05-06 18:36:45.655462"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.656142"], ["updated_at", "2020-05-05 18:36:45.656142"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reiciendis et distinctio dolor?"], ["description", "Soluta odit assumenda aut."], ["date", "2020-05-06 18:36:45.657360"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.658055"], ["updated_at", "2020-05-05 18:36:45.658055"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet beatae ipsum rerum?"], ["description", "Ut rerum est consectetur."], ["date", "2020-05-06 18:36:45.659331"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.660006"], ["updated_at", "2020-05-05 18:36:45.660006"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum vel omnis illum?"], ["description", "Cum voluptate necessitatibus odit."], ["date", "2020-05-06 18:36:45.661102"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.661772"], ["updated_at", "2020-05-05 18:36:45.661772"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:36:45 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3010) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shayne Bergstrom MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aBVFBgWNFivS2wVCxgQNgOQQbHOnNd1R6oqZz6oABLcaHv34FISGm"], ["created_at", "2020-05-05 18:36:45.681534"], ["updated_at", "2020-05-05 18:36:45.681534"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Temporibus sit blanditiis ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:45.684451"], ["updated_at", "2020-05-05 18:36:45.684451"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit nulla reprehenderit numquam?"], ["description", "Provident voluptatum distinctio nihil."], ["date", "2020-05-06 18:36:45.685972"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.686962"], ["updated_at", "2020-05-05 18:36:45.686962"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut unde enim sapiente?"], ["description", "Facere inventore eveniet animi."], ["date", "2020-05-06 18:36:45.688473"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.689455"], ["updated_at", "2020-05-05 18:36:45.689455"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem velit sed vel?"], ["description", "Officia et voluptatibus culpa."], ["date", "2020-05-06 18:36:45.693208"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.694348"], ["updated_at", "2020-05-05 18:36:45.694348"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit qui velit rem?"], ["description", "Delectus sit ut doloremque."], ["date", "2020-05-06 18:36:45.696666"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.698664"], ["updated_at", "2020-05-05 18:36:45.698664"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore quibusdam nostrum dolor?"], ["description", "Corporis qui nemo fugiat."], ["date", "2020-05-06 18:36:45.700411"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.701376"], ["updated_at", "2020-05-05 18:36:45.701376"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab in ut at?"], ["description", "Eos est facilis totam."], ["date", "2020-05-06 18:36:45.702926"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.703824"], ["updated_at", "2020-05-05 18:36:45.703824"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique id sit exercitationem?"], ["description", "Eius ullam id occaecati."], ["date", "2020-05-06 18:36:45.705190"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.706007"], ["updated_at", "2020-05-05 18:36:45.706007"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem vero est voluptate?"], ["description", "Sit reiciendis id aliquam."], ["date", "2020-05-06 18:36:45.708206"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.709395"], ["updated_at", "2020-05-05 18:36:45.709395"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi sed expedita esse?"], ["description", "Omnis exercitationem in quo."], ["date", "2020-05-06 18:36:45.712283"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.715612"], ["updated_at", "2020-05-05 18:36:45.715612"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur et qui omnis?"], ["description", "Aut atque perferendis deleniti."], ["date", "2020-05-06 18:36:45.718030"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.719029"], ["updated_at", "2020-05-05 18:36:45.719029"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit animi nam ut?"], ["description", "Veritatis dolores dolor ex."], ["date", "2020-05-06 18:36:45.720710"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.721713"], ["updated_at", "2020-05-05 18:36:45.721713"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut doloremque facilis voluptas?"], ["description", "Qui consequatur ea et."], ["date", "2020-05-06 18:36:45.723263"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.724114"], ["updated_at", "2020-05-05 18:36:45.724114"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis dignissimos quod quia?"], ["description", "Ipsam minima repudiandae eum."], ["date", "2020-05-06 18:36:45.725330"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.726043"], ["updated_at", "2020-05-05 18:36:45.726043"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint cum rerum nemo?"], ["description", "Voluptates odio necessitatibus voluptatem."], ["date", "2020-05-06 18:36:45.727511"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.728371"], ["updated_at", "2020-05-05 18:36:45.728371"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et et nam voluptates?"], ["description", "Ab quia magni deleniti."], ["date", "2020-05-06 18:36:45.729773"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.731939"], ["updated_at", "2020-05-05 18:36:45.731939"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi velit assumenda corrupti?"], ["description", "Sapiente excepturi recusandae consequatur."], ["date", "2020-05-06 18:36:45.748772"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.750098"], ["updated_at", "2020-05-05 18:36:45.750098"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum ex ut animi?"], ["description", "Iste odio occaecati aut."], ["date", "2020-05-06 18:36:45.752941"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.754085"], ["updated_at", "2020-05-05 18:36:45.754085"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut id quia velit?"], ["description", "Ut provident omnis assumenda."], ["date", "2020-05-06 18:36:45.755639"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.756491"], ["updated_at", "2020-05-05 18:36:45.756491"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae impedit fuga numquam?"], ["description", "Itaque voluptas est velit."], ["date", "2020-05-06 18:36:45.757852"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.758634"], ["updated_at", "2020-05-05 18:36:45.758634"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam doloribus at laboriosam?"], ["description", "Sunt ipsa nostrum ut."], ["date", "2020-05-06 18:36:45.759818"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.760515"], ["updated_at", "2020-05-05 18:36:45.760515"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:36:45 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 2705) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hilma Lehner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$g2pNke78h7AZDrBJ23o15.lXUuBpkmG.GQJR88e050/8pqodql4UK"], ["created_at", "2020-05-05 18:36:45.779175"], ["updated_at", "2020-05-05 18:36:45.779175"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quam"], ["description", "Sunt consequatur assumenda natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:45.782311"], ["updated_at", "2020-05-05 18:36:45.782311"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur excepturi sed dolores?"], ["description", "Voluptatem eum deserunt sed."], ["date", "2020-05-06 18:36:45.783758"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.784688"], ["updated_at", "2020-05-05 18:36:45.784688"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut consequatur expedita et?"], ["description", "Voluptas ut asperiores molestiae."], ["date", "2020-05-06 18:36:45.786032"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.786917"], ["updated_at", "2020-05-05 18:36:45.786917"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut quo ea nihil?"], ["description", "Aut est distinctio quia."], ["date", "2020-05-06 18:36:45.788256"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.789064"], ["updated_at", "2020-05-05 18:36:45.789064"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit esse facilis excepturi?"], ["description", "Officiis quis et in."], ["date", "2020-05-06 18:36:45.790640"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.791967"], ["updated_at", "2020-05-05 18:36:45.791967"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam dignissimos minus aut?"], ["description", "Nisi culpa totam possimus."], ["date", "2020-05-06 18:36:45.793639"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.794508"], ["updated_at", "2020-05-05 18:36:45.794508"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et voluptate sed ab?"], ["description", "Consequatur earum et deserunt."], ["date", "2020-05-06 18:36:45.795705"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.796869"], ["updated_at", "2020-05-05 18:36:45.796869"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem error consequatur ut?"], ["description", "Nesciunt pariatur et ut."], ["date", "2020-05-06 18:36:45.798363"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.799260"], ["updated_at", "2020-05-05 18:36:45.799260"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Adipisci sed est doloribus?"], ["description", "Fugit praesentium est et."], ["date", "2020-05-06 18:36:45.800592"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.801361"], ["updated_at", "2020-05-05 18:36:45.801361"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia dolorum ipsa rerum?"], ["description", "Recusandae commodi nemo tenetur."], ["date", "2020-05-06 18:36:45.802542"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.803222"], ["updated_at", "2020-05-05 18:36:45.803222"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel et aut at?"], ["description", "Velit porro est omnis."], ["date", "2020-05-06 18:36:45.805002"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.805736"], ["updated_at", "2020-05-05 18:36:45.805736"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat dolorum eos placeat?"], ["description", "Autem quis voluptatem assumenda."], ["date", "2020-05-06 18:36:45.807125"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.808067"], ["updated_at", "2020-05-05 18:36:45.808067"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut eum est modi?"], ["description", "Aperiam dicta asperiores nihil."], ["date", "2020-05-06 18:36:45.809303"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.810000"], ["updated_at", "2020-05-05 18:36:45.810000"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut quae quisquam amet?"], ["description", "Autem ut quo inventore."], ["date", "2020-05-06 18:36:45.812324"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.813983"], ["updated_at", "2020-05-05 18:36:45.813983"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi eos maiores soluta?"], ["description", "Delectus ducimus officiis aspernatur."], ["date", "2020-05-06 18:36:45.815421"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.816162"], ["updated_at", "2020-05-05 18:36:45.816162"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem dolor illum autem?"], ["description", "Dignissimos enim doloribus tempora."], ["date", "2020-05-06 18:36:45.817503"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.818268"], ["updated_at", "2020-05-05 18:36:45.818268"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut corrupti qui aliquid?"], ["description", "Maxime autem commodi quaerat."], ["date", "2020-05-06 18:36:45.819421"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.820107"], ["updated_at", "2020-05-05 18:36:45.820107"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur fugiat et eos?"], ["description", "Placeat odio id quo."], ["date", "2020-05-06 18:36:45.821176"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.821832"], ["updated_at", "2020-05-05 18:36:45.821832"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet saepe quasi laborum?"], ["description", "Sunt expedita quo sint."], ["date", "2020-05-06 18:36:45.822880"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.823574"], ["updated_at", "2020-05-05 18:36:45.823574"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis sint ullam officiis?"], ["description", "Voluptas quo aut quia."], ["date", "2020-05-06 18:36:45.824753"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.825471"], ["updated_at", "2020-05-05 18:36:45.825471"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et qui qui repudiandae?"], ["description", "Velit reiciendis nulla perspiciatis."], ["date", "2020-05-06 18:36:45.826678"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.827600"], ["updated_at", "2020-05-05 18:36:45.827600"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:36:45 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.2ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:36:45.833325"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 4ms (ActiveRecord: 0.5ms | Allocations: 1397) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Dillon Kohler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KZNOeVlUV5w.WYBmTb.Vye.RPf3AdlNEavRstd41vMHaCa5oepyPa"], ["created_at", "2020-05-05 18:36:45.844379"], ["updated_at", "2020-05-05 18:36:45.844379"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Aut eveniet et delectus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:45.848510"], ["updated_at", "2020-05-05 18:36:45.848510"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem nesciunt ut fugit?"], ["description", "Et voluptas deleniti accusantium."], ["date", "2020-05-06 18:36:45.850341"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.851822"], ["updated_at", "2020-05-05 18:36:45.851822"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Unde maxime necessitatibus molestiae?"], ["description", "Doloremque dolorum cumque repellendus."], ["date", "2020-05-06 18:36:45.853819"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.854751"], ["updated_at", "2020-05-05 18:36:45.854751"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique molestiae tenetur incidunt?"], ["description", "Recusandae dicta est rerum."], ["date", "2020-05-06 18:36:45.856007"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.856725"], ["updated_at", "2020-05-05 18:36:45.856725"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error iusto ea tempora?"], ["description", "Eaque saepe rerum voluptas."], ["date", "2020-05-06 18:36:45.857837"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.858535"], ["updated_at", "2020-05-05 18:36:45.858535"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod enim ex dolorem?"], ["description", "Iste doloribus illum sunt."], ["date", "2020-05-06 18:36:45.859672"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.860398"], ["updated_at", "2020-05-05 18:36:45.860398"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem et et asperiores?"], ["description", "Et aut quo amet."], ["date", "2020-05-06 18:36:45.861585"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.862326"], ["updated_at", "2020-05-05 18:36:45.862326"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae quis odio libero?"], ["description", "Vel eius sunt sunt."], ["date", "2020-05-06 18:36:45.863590"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.864291"], ["updated_at", "2020-05-05 18:36:45.864291"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam velit reiciendis velit?"], ["description", "Omnis porro facilis ut."], ["date", "2020-05-06 18:36:45.865389"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.866082"], ["updated_at", "2020-05-05 18:36:45.866082"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt labore incidunt eveniet?"], ["description", "Reprehenderit sunt distinctio dolorem."], ["date", "2020-05-06 18:36:45.867277"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.868019"], ["updated_at", "2020-05-05 18:36:45.868019"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias esse ut sed?"], ["description", "Ut perferendis officiis itaque."], ["date", "2020-05-06 18:36:45.869818"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.870607"], ["updated_at", "2020-05-05 18:36:45.870607"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et dicta at ex?"], ["description", "Aut laudantium dolorem quia."], ["date", "2020-05-06 18:36:45.872396"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.873658"], ["updated_at", "2020-05-05 18:36:45.873658"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo atque odio commodi?"], ["description", "Ut dolorem id libero."], ["date", "2020-05-06 18:36:45.875088"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.875859"], ["updated_at", "2020-05-05 18:36:45.875859"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur cupiditate enim aliquam?"], ["description", "Eos voluptatem at qui."], ["date", "2020-05-06 18:36:45.877173"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.878053"], ["updated_at", "2020-05-05 18:36:45.878053"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non ipsam quidem reprehenderit?"], ["description", "Soluta aut quo dignissimos."], ["date", "2020-05-06 18:36:45.879959"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.880973"], ["updated_at", "2020-05-05 18:36:45.880973"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis cupiditate ut sunt?"], ["description", "Consequatur nulla dolorum voluptate."], ["date", "2020-05-06 18:36:45.882452"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.883353"], ["updated_at", "2020-05-05 18:36:45.883353"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt dolor quam rerum?"], ["description", "Incidunt doloremque beatae nulla."], ["date", "2020-05-06 18:36:45.884666"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.885419"], ["updated_at", "2020-05-05 18:36:45.885419"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur error quasi dolorum?"], ["description", "Facilis excepturi minus accusantium."], ["date", "2020-05-06 18:36:45.886741"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.887507"], ["updated_at", "2020-05-05 18:36:45.887507"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et magnam aut delectus?"], ["description", "Quis autem est dolorum."], ["date", "2020-05-06 18:36:45.888795"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.889502"], ["updated_at", "2020-05-05 18:36:45.889502"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam assumenda quae fugit?"], ["description", "Autem ut eum facilis."], ["date", "2020-05-06 18:36:45.890674"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.892499"], ["updated_at", "2020-05-05 18:36:45.892499"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui unde qui eum?"], ["description", "Ad non enim repellendus."], ["date", "2020-05-06 18:36:45.894553"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.896188"], ["updated_at", "2020-05-05 18:36:45.896188"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:36:45 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.2ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:36:45.900908"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1321) + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hipolito Treutel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$t6BrkMataR7PU4hhL8HeZOZBir9Z6C.TmZAb4dPYfH5W.ns9NMEmy"], ["created_at", "2020-05-05 18:36:45.914966"], ["updated_at", "2020-05-05 18:36:45.914966"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Ut ea earum cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:45.917974"], ["updated_at", "2020-05-05 18:36:45.917974"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod culpa voluptatem corporis?"], ["description", "Similique officia labore minus."], ["date", "2020-05-06 18:36:45.919470"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.920416"], ["updated_at", "2020-05-05 18:36:45.920416"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis consequatur atque qui?"], ["description", "Quia asperiores officiis quisquam."], ["date", "2020-05-06 18:36:45.921734"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.922487"], ["updated_at", "2020-05-05 18:36:45.922487"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto voluptate deleniti totam?"], ["description", "Vel qui tempora pariatur."], ["date", "2020-05-06 18:36:45.923679"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.924360"], ["updated_at", "2020-05-05 18:36:45.924360"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam totam necessitatibus quia?"], ["description", "Cupiditate sint provident aliquam."], ["date", "2020-05-06 18:36:45.925459"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.926131"], ["updated_at", "2020-05-05 18:36:45.926131"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non voluptate odit est?"], ["description", "Quod repudiandae eos eligendi."], ["date", "2020-05-06 18:36:45.927594"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.928836"], ["updated_at", "2020-05-05 18:36:45.928836"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut porro excepturi cumque?"], ["description", "Quia aliquid sit labore."], ["date", "2020-05-06 18:36:45.930279"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.931307"], ["updated_at", "2020-05-05 18:36:45.931307"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati et magni quae?"], ["description", "Voluptate omnis assumenda et."], ["date", "2020-05-06 18:36:45.933206"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.934445"], ["updated_at", "2020-05-05 18:36:45.934445"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis atque provident consequatur?"], ["description", "Ipsa at alias molestiae."], ["date", "2020-05-06 18:36:45.935788"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.936528"], ["updated_at", "2020-05-05 18:36:45.936528"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis voluptas laboriosam aperiam?"], ["description", "Ut molestias corrupti ut."], ["date", "2020-05-06 18:36:45.937694"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.938451"], ["updated_at", "2020-05-05 18:36:45.938451"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel omnis autem nostrum?"], ["description", "Veniam voluptatem aut deleniti."], ["date", "2020-05-06 18:36:45.940280"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.941033"], ["updated_at", "2020-05-05 18:36:45.941033"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum ratione nam eum?"], ["description", "Ipsam facere soluta maxime."], ["date", "2020-05-06 18:36:45.942303"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.943016"], ["updated_at", "2020-05-05 18:36:45.943016"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda incidunt aut iste?"], ["description", "Maxime beatae reprehenderit eius."], ["date", "2020-05-06 18:36:45.944333"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.945594"], ["updated_at", "2020-05-05 18:36:45.945594"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem et eaque inventore?"], ["description", "Magni aliquid rem laudantium."], ["date", "2020-05-06 18:36:45.947379"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.948273"], ["updated_at", "2020-05-05 18:36:45.948273"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur minus veritatis perspiciatis?"], ["description", "Et harum qui provident."], ["date", "2020-05-06 18:36:45.949559"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.950254"], ["updated_at", "2020-05-05 18:36:45.950254"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur qui doloremque quis?"], ["description", "Quam quasi et alias."], ["date", "2020-05-06 18:36:45.951760"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.952939"], ["updated_at", "2020-05-05 18:36:45.952939"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta harum doloribus molestias?"], ["description", "Culpa placeat quibusdam quo."], ["date", "2020-05-06 18:36:45.954645"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.955540"], ["updated_at", "2020-05-05 18:36:45.955540"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At rerum corporis est?"], ["description", "Eaque iure quaerat nam."], ["date", "2020-05-06 18:36:45.956794"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.957540"], ["updated_at", "2020-05-05 18:36:45.957540"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint qui adipisci nemo?"], ["description", "Sunt quaerat consequuntur vel."], ["date", "2020-05-06 18:36:45.958876"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.959652"], ["updated_at", "2020-05-05 18:36:45.959652"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut nemo numquam aut?"], ["description", "Asperiores eos animi aut."], ["date", "2020-05-06 18:36:45.960963"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.961836"], ["updated_at", "2020-05-05 18:36:45.961836"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia laudantium quia laboriosam?"], ["description", "Omnis culpa itaque ut."], ["date", "2020-05-06 18:36:45.963644"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.964598"], ["updated_at", "2020-05-05 18:36:45.964598"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:36:45 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Herbert Dach"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QmXOzCnZyGb7sxPpO8P6SOTWQbOHlPLXC11tcEM96i16wsbZxolNK"], ["created_at", "2020-05-05 18:36:45.981240"], ["updated_at", "2020-05-05 18:36:45.981240"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Minus sapiente amet enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:45.984357"], ["updated_at", "2020-05-05 18:36:45.984357"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur minima dolorem vitae?"], ["description", "Fugit nisi dolores molestiae."], ["date", "2020-05-06 18:36:45.985866"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.986798"], ["updated_at", "2020-05-05 18:36:45.986798"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum vitae rerum ut?"], ["description", "Assumenda sapiente et quam."], ["date", "2020-05-06 18:36:45.988276"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.989083"], ["updated_at", "2020-05-05 18:36:45.989083"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti sed quaerat amet?"], ["description", "Maiores exercitationem sint qui."], ["date", "2020-05-06 18:36:45.990257"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.990951"], ["updated_at", "2020-05-05 18:36:45.990951"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem expedita tempora harum?"], ["description", "Enim accusantium dolor sint."], ["date", "2020-05-06 18:36:45.992388"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.993651"], ["updated_at", "2020-05-05 18:36:45.993651"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit omnis repellendus nemo?"], ["description", "Nemo at aspernatur quo."], ["date", "2020-05-06 18:36:45.995352"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.996522"], ["updated_at", "2020-05-05 18:36:45.996522"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et velit repellendus at?"], ["description", "Eos aut rerum vero."], ["date", "2020-05-06 18:36:45.997985"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:45.998792"], ["updated_at", "2020-05-05 18:36:45.998792"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda eum omnis consequuntur?"], ["description", "Delectus laboriosam necessitatibus quia."], ["date", "2020-05-06 18:36:45.999950"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.000620"], ["updated_at", "2020-05-05 18:36:46.000620"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil sed molestiae iste?"], ["description", "Sed accusantium enim autem."], ["date", "2020-05-06 18:36:46.001717"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.002395"], ["updated_at", "2020-05-05 18:36:46.002395"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque et voluptas quam?"], ["description", "Laudantium sit qui ut."], ["date", "2020-05-06 18:36:46.003507"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.004228"], ["updated_at", "2020-05-05 18:36:46.004228"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam voluptatem omnis accusantium?"], ["description", "Libero minus et quia."], ["date", "2020-05-06 18:36:46.006038"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.006785"], ["updated_at", "2020-05-05 18:36:46.006785"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat exercitationem omnis fugiat?"], ["description", "Sunt voluptatem quam quia."], ["date", "2020-05-06 18:36:46.008320"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.009179"], ["updated_at", "2020-05-05 18:36:46.009179"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum rem quis iste?"], ["description", "Non et voluptas est."], ["date", "2020-05-06 18:36:46.010407"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.011125"], ["updated_at", "2020-05-05 18:36:46.011125"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non assumenda soluta odio?"], ["description", "Et voluptate voluptatum vitae."], ["date", "2020-05-06 18:36:46.013216"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.014973"], ["updated_at", "2020-05-05 18:36:46.014973"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam incidunt aspernatur ipsum?"], ["description", "Sit nulla quasi numquam."], ["date", "2020-05-06 18:36:46.016501"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.017257"], ["updated_at", "2020-05-05 18:36:46.017257"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti expedita nulla est?"], ["description", "Quidem ut recusandae omnis."], ["date", "2020-05-06 18:36:46.018493"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.019189"], ["updated_at", "2020-05-05 18:36:46.019189"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias labore unde magni?"], ["description", "Recusandae illum ut sunt."], ["date", "2020-05-06 18:36:46.020374"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.021125"], ["updated_at", "2020-05-05 18:36:46.021125"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum natus et laudantium?"], ["description", "Voluptatem ut omnis distinctio."], ["date", "2020-05-06 18:36:46.022259"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.022918"], ["updated_at", "2020-05-05 18:36:46.022918"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut deserunt animi ut?"], ["description", "Quam quos tempore repudiandae."], ["date", "2020-05-06 18:36:46.024012"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.024657"], ["updated_at", "2020-05-05 18:36:46.024657"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt rerum temporibus eligendi?"], ["description", "Unde dolore voluptatum optio."], ["date", "2020-05-06 18:36:46.025731"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.026660"], ["updated_at", "2020-05-05 18:36:46.026660"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique quia non hic?"], ["description", "Quidem qui dolorum odit."], ["date", "2020-05-06 18:36:46.028500"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.029535"], ["updated_at", "2020-05-05 18:36:46.029535"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 3ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Zachery O'Connell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XLzUtDAXK00VBpbEFWUqKepqcW/KAJ8Ke043cyzDwNCdQ9ivqyU6m"], ["created_at", "2020-05-05 18:36:46.046263"], ["updated_at", "2020-05-05 18:36:46.046263"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Asperiores rerum voluptatem ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.049988"], ["updated_at", "2020-05-05 18:36:46.049988"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda et maxime dolorem?"], ["description", "Sapiente incidunt perferendis et."], ["date", "2020-05-06 18:36:46.051626"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.053332"], ["updated_at", "2020-05-05 18:36:46.053332"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur quia eos exercitationem?"], ["description", "Pariatur eum voluptate reiciendis."], ["date", "2020-05-06 18:36:46.055411"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.056315"], ["updated_at", "2020-05-05 18:36:46.056315"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et et non vel?"], ["description", "Et numquam veniam fugiat."], ["date", "2020-05-06 18:36:46.057546"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.058300"], ["updated_at", "2020-05-05 18:36:46.058300"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et ratione in nostrum?"], ["description", "Voluptatem ipsam qui et."], ["date", "2020-05-06 18:36:46.059496"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.060210"], ["updated_at", "2020-05-05 18:36:46.060210"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat labore et nam?"], ["description", "Ut quisquam eum eaque."], ["date", "2020-05-06 18:36:46.061385"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.062095"], ["updated_at", "2020-05-05 18:36:46.062095"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut aut ea non?"], ["description", "Sit commodi dolorem excepturi."], ["date", "2020-05-06 18:36:46.063238"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.063907"], ["updated_at", "2020-05-05 18:36:46.063907"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est sint molestiae dicta?"], ["description", "Enim eum quia qui."], ["date", "2020-05-06 18:36:46.065030"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.065707"], ["updated_at", "2020-05-05 18:36:46.065707"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed totam et deserunt?"], ["description", "Similique sed odio sequi."], ["date", "2020-05-06 18:36:46.066976"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.067763"], ["updated_at", "2020-05-05 18:36:46.067763"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam tenetur ut voluptate?"], ["description", "Delectus consequatur quibusdam totam."], ["date", "2020-05-06 18:36:46.068868"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.069545"], ["updated_at", "2020-05-05 18:36:46.069545"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit sequi vitae pariatur?"], ["description", "Dolores quis illo voluptatem."], ["date", "2020-05-06 18:36:46.071339"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.072511"], ["updated_at", "2020-05-05 18:36:46.072511"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis sit nesciunt rerum?"], ["description", "Eveniet eum et provident."], ["date", "2020-05-06 18:36:46.074407"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.075344"], ["updated_at", "2020-05-05 18:36:46.075344"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem delectus qui ut?"], ["description", "Eos et ut velit."], ["date", "2020-05-06 18:36:46.076650"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.077363"], ["updated_at", "2020-05-05 18:36:46.077363"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Possimus nobis ut nesciunt?"], ["description", "Possimus quasi ex harum."], ["date", "2020-05-06 18:36:46.078777"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.079973"], ["updated_at", "2020-05-05 18:36:46.079973"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut deserunt soluta tenetur?"], ["description", "Dolores esse illum ducimus."], ["date", "2020-05-06 18:36:46.081522"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.082324"], ["updated_at", "2020-05-05 18:36:46.082324"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore dignissimos dolor qui?"], ["description", "Iste ipsum laboriosam et."], ["date", "2020-05-06 18:36:46.083621"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.084320"], ["updated_at", "2020-05-05 18:36:46.084320"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem in aut porro?"], ["description", "Non culpa aspernatur in."], ["date", "2020-05-06 18:36:46.085552"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.086235"], ["updated_at", "2020-05-05 18:36:46.086235"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum recusandae dolor maiores?"], ["description", "Quaerat eius recusandae totam."], ["date", "2020-05-06 18:36:46.087483"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.088216"], ["updated_at", "2020-05-05 18:36:46.088216"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam ab suscipit quod?"], ["description", "Incidunt reiciendis vel quas."], ["date", "2020-05-06 18:36:46.089273"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.089944"], ["updated_at", "2020-05-05 18:36:46.089944"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis sint tenetur quia?"], ["description", "Velit magni sed maiores."], ["date", "2020-05-06 18:36:46.090960"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.091630"], ["updated_at", "2020-05-05 18:36:46.091630"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente atque qui veritatis?"], ["description", "Nihil aut ex nostrum."], ["date", "2020-05-06 18:36:46.093178"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:36:46.094557"], ["updated_at", "2020-05-05 18:36:46.094557"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by MeetingsController#destroy as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + UserMeeting Load (0.1ms) SELECT "user_meetings".* FROM "user_meetings" WHERE "user_meetings"."meeting_id" = ? [["meeting_id", 1]] + Meeting Destroy (0.1ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 6ms (ActiveRecord: 0.8ms | Allocations: 2317) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (34.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maiores"], ["description", "Recusandae labore voluptatem similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.141851"], ["updated_at", "2020-05-05 18:36:46.141851"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Minima omnis repudiandae ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.144804"], ["updated_at", "2020-05-05 18:36:46.144804"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Quam rem est corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.146949"], ["updated_at", "2020-05-05 18:36:46.146949"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ducimus"], ["description", "Provident voluptatem repudiandae aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.148409"], ["updated_at", "2020-05-05 18:36:46.148409"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "culpa"], ["description", "Inventore ducimus architecto sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.149648"], ["updated_at", "2020-05-05 18:36:46.149648"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Qui ullam voluptas ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.150921"], ["updated_at", "2020-05-05 18:36:46.150921"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quae"], ["description", "Nulla dolorem laborum tenetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.152255"], ["updated_at", "2020-05-05 18:36:46.152255"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Sequi molestiae quo quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.154261"], ["updated_at", "2020-05-05 18:36:46.154261"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "recusandae"], ["description", "Et quas eum laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.156046"], ["updated_at", "2020-05-05 18:36:46.156046"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Magnam eius molestiae consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.157416"], ["updated_at", "2020-05-05 18:36:46.157416"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Josef Prohaska"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$V4IixT7UX7pkB88f6/8xwuW6eyDhErllPR89aFu1lc7q2td2mmcM."], ["created_at", "2020-05-05 18:36:46.160003"], ["updated_at", "2020-05-05 18:36:46.160003"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.03ms) +Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.3ms | Allocations: 2913) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Repellendus aut doloribus aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.180011"], ["updated_at", "2020-05-05 18:36:46.180011"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "reprehenderit"], ["description", "Quia possimus neque ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.183220"], ["updated_at", "2020-05-05 18:36:46.183220"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "Adipisci magni qui totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.184874"], ["updated_at", "2020-05-05 18:36:46.184874"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Quia est assumenda ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.186440"], ["updated_at", "2020-05-05 18:36:46.186440"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iure"], ["description", "Officiis cum quia suscipit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.188239"], ["updated_at", "2020-05-05 18:36:46.188239"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Pariatur aut aliquam qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.189859"], ["updated_at", "2020-05-05 18:36:46.189859"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptates"], ["description", "Et impedit repellat et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.191405"], ["updated_at", "2020-05-05 18:36:46.191405"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maiores"], ["description", "Facilis doloremque repellat sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.193457"], ["updated_at", "2020-05-05 18:36:46.193457"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Molestiae nobis ipsa totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.196443"], ["updated_at", "2020-05-05 18:36:46.196443"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Est assumenda dolorum architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.198563"], ["updated_at", "2020-05-05 18:36:46.198563"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Fredericka Blick"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$V0oirveWH1/ovzaNuXWZkeETjc8BeMWw1ZHg.SElP1PaEA4AVo7Ha"], ["created_at", "2020-05-05 18:36:46.201501"], ["updated_at", "2020-05-05 18:36:46.201501"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.5ms | ActiveRecord: 0.1ms | Allocations: 2844) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (31.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Voluptatem cumque repellendus aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.245010"], ["updated_at", "2020-05-05 18:36:46.245010"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Est placeat qui numquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.249039"], ["updated_at", "2020-05-05 18:36:46.249039"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Est dignissimos deleniti ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.250702"], ["updated_at", "2020-05-05 18:36:46.250702"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quos"], ["description", "Perspiciatis placeat dolorem ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.252054"], ["updated_at", "2020-05-05 18:36:46.252054"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Aut consequatur et qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.253970"], ["updated_at", "2020-05-05 18:36:46.253970"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Hic perspiciatis enim voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.256354"], ["updated_at", "2020-05-05 18:36:46.256354"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Ab dignissimos sunt culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.257853"], ["updated_at", "2020-05-05 18:36:46.257853"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Rerum totam eos perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.259285"], ["updated_at", "2020-05-05 18:36:46.259285"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Et iure et est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.260571"], ["updated_at", "2020-05-05 18:36:46.260571"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ullam"], ["description", "Recusandae est magnam consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.261824"], ["updated_at", "2020-05-05 18:36:46.261824"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Denisse Ondricka"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$bM6aNiaBoSD/VmRTxMlrT.3X6mGuId20wPU30MlwczMSqudoFXL5W"], ["created_at", "2020-05-05 18:36:46.264403"], ["updated_at", "2020-05-05 18:36:46.264403"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.65ms) +Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.3ms | Allocations: 2844) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.42ms) +Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.2ms | Allocations: 1242) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Nostrum quis beatae sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.288196"], ["updated_at", "2020-05-05 18:36:46.288196"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "exercitationem"], ["description", "Quo nobis ut velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.290933"], ["updated_at", "2020-05-05 18:36:46.290933"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quaerat"], ["description", "Accusantium aut tempore sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.292449"], ["updated_at", "2020-05-05 18:36:46.292449"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "libero"], ["description", "Ipsam eius blanditiis laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.294476"], ["updated_at", "2020-05-05 18:36:46.294476"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "saepe"], ["description", "Et laudantium sit illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.297534"], ["updated_at", "2020-05-05 18:36:46.297534"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "adipisci"], ["description", "Praesentium totam minus et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.299173"], ["updated_at", "2020-05-05 18:36:46.299173"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Voluptatem corrupti debitis ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.300592"], ["updated_at", "2020-05-05 18:36:46.300592"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "assumenda"], ["description", "Quod fugiat delectus ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.301983"], ["updated_at", "2020-05-05 18:36:46.301983"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "optio"], ["description", "Ipsum hic optio inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.303341"], ["updated_at", "2020-05-05 18:36:46.303341"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "suscipit"], ["description", "Consequatur ratione magni iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.304731"], ["updated_at", "2020-05-05 18:36:46.304731"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hee Huels"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7dEkTLqsBnr3DGGqt8.cwutSOyeTHyYjuWcVOV1c7cz6omE9M3JH6"], ["created_at", "2020-05-05 18:36:46.307505"], ["updated_at", "2020-05-05 18:36:46.307505"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.78ms) +Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.1ms | Allocations: 2844) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.77ms) +Completed 200 OK in 4ms (Views: 2.1ms | ActiveRecord: 0.2ms | Allocations: 1240) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Non dolor maiores commodi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.332408"], ["updated_at", "2020-05-05 18:36:46.332408"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsam"], ["description", "Dolorem sunt quae qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.336516"], ["updated_at", "2020-05-05 18:36:46.336516"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "beatae"], ["description", "Exercitationem qui labore aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.338288"], ["updated_at", "2020-05-05 18:36:46.338288"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Vitae omnis voluptate corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.339703"], ["updated_at", "2020-05-05 18:36:46.339703"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Quia dolores sint quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.341062"], ["updated_at", "2020-05-05 18:36:46.341062"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Molestiae non ut voluptates."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.342536"], ["updated_at", "2020-05-05 18:36:46.342536"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "occaecati"], ["description", "Odio a consequatur odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.343822"], ["updated_at", "2020-05-05 18:36:46.343822"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Nulla ut non nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.345350"], ["updated_at", "2020-05-05 18:36:46.345350"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Illo adipisci voluptatem quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.347398"], ["updated_at", "2020-05-05 18:36:46.347398"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minima"], ["description", "Consequatur id in est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.348716"], ["updated_at", "2020-05-05 18:36:46.348716"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leonel Swift"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vbSDW.e7al1.ocup2.3J/eTn24kuRc5lmexCSqpi1cj8oy/M2lDyi"], ["created_at", "2020-05-05 18:36:46.351255"], ["updated_at", "2020-05-05 18:36:46.351255"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.4ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.61ms) +Completed 200 OK in 7ms (Views: 5.3ms | ActiveRecord: 0.5ms | Allocations: 2842) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "itaque"], ["description", "Mollitia praesentium eligendi aliquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.375503"], ["updated_at", "2020-05-05 18:36:46.375503"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (16.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Quae cumque laudantium similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.380529"], ["updated_at", "2020-05-05 18:36:46.380529"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Quo porro neque et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.398984"], ["updated_at", "2020-05-05 18:36:46.398984"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minus"], ["description", "Molestiae voluptatem blanditiis cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.400927"], ["updated_at", "2020-05-05 18:36:46.400927"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Cumque et sequi et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.402939"], ["updated_at", "2020-05-05 18:36:46.402939"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iure"], ["description", "Rerum nostrum cum ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.404980"], ["updated_at", "2020-05-05 18:36:46.404980"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corrupti"], ["description", "Maiores deserunt vitae reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.406697"], ["updated_at", "2020-05-05 18:36:46.406697"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deleniti"], ["description", "Quis molestiae ex fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.408542"], ["updated_at", "2020-05-05 18:36:46.408542"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eaque"], ["description", "Sit ipsum corrupti natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.410313"], ["updated_at", "2020-05-05 18:36:46.410313"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Dolorum eaque voluptatum recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.411986"], ["updated_at", "2020-05-05 18:36:46.411986"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Darren Torphy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rceeXQh/XlFl4aO.Mk5EgewtVom78bdLOL4bM8/P6IxAB962PVhlq"], ["created_at", "2020-05-05 18:36:46.416394"], ["updated_at", "2020-05-05 18:36:46.416394"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2844) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (34.5ms) rollback transaction +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.9ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Ut odit consequatur voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.467044"], ["updated_at", "2020-05-05 18:36:46.467044"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Enim est mollitia quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.472162"], ["updated_at", "2020-05-05 18:36:46.472162"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Facilis provident sapiente excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.475631"], ["updated_at", "2020-05-05 18:36:46.475631"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "neque"], ["description", "Quis doloribus aut molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.479842"], ["updated_at", "2020-05-05 18:36:46.479842"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Aut praesentium quibusdam itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.483582"], ["updated_at", "2020-05-05 18:36:46.483582"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deserunt"], ["description", "Et reprehenderit inventore aliquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.486783"], ["updated_at", "2020-05-05 18:36:46.486783"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magnam"], ["description", "Voluptatibus quas accusamus assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.489960"], ["updated_at", "2020-05-05 18:36:46.489960"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "inventore"], ["description", "Et voluptatem deserunt laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.492115"], ["updated_at", "2020-05-05 18:36:46.492115"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Quasi sit consectetur sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.493654"], ["updated_at", "2020-05-05 18:36:46.493654"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Doloremque eos placeat molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.495422"], ["updated_at", "2020-05-05 18:36:46.495422"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Janetta Bogan IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8O4NXwvb7yIbgiOr7fW.jOv3dZ.w8jg/cYBnve2kwv9hgask79OAS"], ["created_at", "2020-05-05 18:36:46.500032"], ["updated_at", "2020-05-05 18:36:46.500032"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.7ms | ActiveRecord: 0.1ms | Allocations: 2845) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:36: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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:36:46.524779"], ["updated_at", "2020-05-05 18:36:46.524779"], ["created_by", "1"]] +  (0.2ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.3ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.55ms) +Completed 201 Created in 23ms (Views: 1.0ms | ActiveRecord: 1.2ms | Allocations: 6207) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "suscipit"], ["description", "Aliquid voluptatum minima maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.542424"], ["updated_at", "2020-05-05 18:36:46.542424"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "expedita"], ["description", "Eos qui natus quaerat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.545118"], ["updated_at", "2020-05-05 18:36:46.545118"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "hic"], ["description", "Aut adipisci porro facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.547343"], ["updated_at", "2020-05-05 18:36:46.547343"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "at"], ["description", "Sed voluptatum alias quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.548861"], ["updated_at", "2020-05-05 18:36:46.548861"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dicta"], ["description", "Eius vitae magni quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.550504"], ["updated_at", "2020-05-05 18:36:46.550504"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "asperiores"], ["description", "Nemo minima distinctio accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.551907"], ["updated_at", "2020-05-05 18:36:46.551907"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Qui earum sunt ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.553192"], ["updated_at", "2020-05-05 18:36:46.553192"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facilis"], ["description", "Ea quas reprehenderit provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.554471"], ["updated_at", "2020-05-05 18:36:46.554471"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "assumenda"], ["description", "Aliquid tenetur possimus et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.556513"], ["updated_at", "2020-05-05 18:36:46.556513"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quibusdam"], ["description", "Provident saepe harum temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.559891"], ["updated_at", "2020-05-05 18:36:46.559891"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Daniela Kozey Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$PBprBvCKqYYJukmcfEZrHuuSscX1nS6kqhzq8jIk.HD4GRDnDK3ky"], ["created_at", "2020-05-05 18:36:46.563030"], ["updated_at", "2020-05-05 18:36:46.563030"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.4ms | ActiveRecord: 0.1ms | Allocations: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:36: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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:36:46.573881"], ["updated_at", "2020-05-05 18:36:46.573881"], ["created_by", "1"]] +  (0.2ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.4ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.54ms) +Completed 201 Created in 7ms (Views: 1.1ms | ActiveRecord: 0.9ms | Allocations: 2251) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (43.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eaque"], ["description", "Magni neque odit provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.626439"], ["updated_at", "2020-05-05 18:36:46.626439"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illum"], ["description", "Consequatur tenetur culpa facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.630078"], ["updated_at", "2020-05-05 18:36:46.630078"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Modi repudiandae assumenda suscipit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.631703"], ["updated_at", "2020-05-05 18:36:46.631703"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "atque"], ["description", "Quos explicabo ut culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.633180"], ["updated_at", "2020-05-05 18:36:46.633180"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Reprehenderit ipsam est sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.634873"], ["updated_at", "2020-05-05 18:36:46.634873"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "totam"], ["description", "Neque consectetur nostrum provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.638121"], ["updated_at", "2020-05-05 18:36:46.638121"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Autem qui id qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.640158"], ["updated_at", "2020-05-05 18:36:46.640158"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsum"], ["description", "Animi et sint qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.641774"], ["updated_at", "2020-05-05 18:36:46.641774"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eaque"], ["description", "Dolores earum praesentium facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.643347"], ["updated_at", "2020-05-05 18:36:46.643347"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Minus earum beatae consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.644919"], ["updated_at", "2020-05-05 18:36:46.644919"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Charolette Willms"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ooFdAF0TzCmIqFSMEe4cmu6V0mSEEFo9gaJMzacehMz0UGdZkr99e"], ["created_at", "2020-05-05 18:36:46.648792"], ["updated_at", "2020-05-05 18:36:46.648792"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.6ms | ActiveRecord: 0.1ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 4006) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (4.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptates"], ["description", "Id porro vero sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.675533"], ["updated_at", "2020-05-05 18:36:46.675533"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Aut debitis tempore expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.682990"], ["updated_at", "2020-05-05 18:36:46.682990"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deleniti"], ["description", "Officiis iure aspernatur sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.684844"], ["updated_at", "2020-05-05 18:36:46.684844"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Eaque et quam ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.686564"], ["updated_at", "2020-05-05 18:36:46.686564"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Quas eligendi qui sequi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.688366"], ["updated_at", "2020-05-05 18:36:46.688366"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempora"], ["description", "Sit reiciendis et eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.689907"], ["updated_at", "2020-05-05 18:36:46.689907"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Dolor et dolor adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.691293"], ["updated_at", "2020-05-05 18:36:46.691293"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "error"], ["description", "Sunt quia nihil qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.692697"], ["updated_at", "2020-05-05 18:36:46.692697"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "incidunt"], ["description", "Et et sunt magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.694256"], ["updated_at", "2020-05-05 18:36:46.694256"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consectetur"], ["description", "Aut qui expedita fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.699421"], ["updated_at", "2020-05-05 18:36:46.699421"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cliff Collier"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Yb/SyMd.VSo1ZPno4wP6Z./p46yBQAloWgvuzFwsJqRmuxUOrmQ9q"], ["created_at", "2020-05-05 18:36:46.702723"], ["updated_at", "2020-05-05 18:36:46.702723"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.09ms) +Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms | Allocations: 2841) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.15ms) +Completed 422 Unprocessable Entity in 7ms (Views: 1.1ms | ActiveRecord: 0.1ms | Allocations: 3697) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Molestiae minus quaerat hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.729930"], ["updated_at", "2020-05-05 18:36:46.729930"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aspernatur"], ["description", "Voluptatem quaerat illum consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.733032"], ["updated_at", "2020-05-05 18:36:46.733032"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Dolores voluptates eligendi molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.734475"], ["updated_at", "2020-05-05 18:36:46.734475"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Rem recusandae expedita et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.735870"], ["updated_at", "2020-05-05 18:36:46.735870"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Ratione et quidem suscipit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.739001"], ["updated_at", "2020-05-05 18:36:46.739001"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "At molestiae molestias optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.741429"], ["updated_at", "2020-05-05 18:36:46.741429"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "animi"], ["description", "Sequi architecto tempore distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.742765"], ["updated_at", "2020-05-05 18:36:46.742765"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "asperiores"], ["description", "Velit in facilis sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.744046"], ["updated_at", "2020-05-05 18:36:46.744046"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sequi"], ["description", "In laboriosam qui at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.745771"], ["updated_at", "2020-05-05 18:36:46.745771"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloremque"], ["description", "Assumenda ut quis rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.747491"], ["updated_at", "2020-05-05 18:36:46.747491"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Erwin Harris DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$yRDcLn18s4D1Uzqxgk6kLe58jf32S/QuBGgeQdbTeDF..G26XFDye"], ["created_at", "2020-05-05 18:36:46.750166"], ["updated_at", "2020-05-05 18:36:46.750166"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.51ms) +Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms | Allocations: 2843) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:36:46.761026"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1044) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "pariatur"], ["description", "Cumque sit aut sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.772354"], ["updated_at", "2020-05-05 18:36:46.772354"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "mollitia"], ["description", "Voluptatum facere ipsam est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.775133"], ["updated_at", "2020-05-05 18:36:46.775133"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "soluta"], ["description", "Temporibus natus quas amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.776894"], ["updated_at", "2020-05-05 18:36:46.776894"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Deserunt earum quae quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.779729"], ["updated_at", "2020-05-05 18:36:46.779729"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Sunt veritatis quidem quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.781226"], ["updated_at", "2020-05-05 18:36:46.781226"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Consequatur eos molestiae assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.782499"], ["updated_at", "2020-05-05 18:36:46.782499"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "assumenda"], ["description", "Hic blanditiis sint autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.783779"], ["updated_at", "2020-05-05 18:36:46.783779"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Officiis repellat aliquam excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.785036"], ["updated_at", "2020-05-05 18:36:46.785036"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatum"], ["description", "Non repellendus doloribus deleniti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.786359"], ["updated_at", "2020-05-05 18:36:46.786359"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laborum"], ["description", "Repellat eum inventore amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.787773"], ["updated_at", "2020-05-05 18:36:46.787773"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jewell Mohr"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$EMaCn5reh8yk8oHrLnmfdeEwqFEHTOjvN80VWle/CIWN4N3tIggD."], ["created_at", "2020-05-05 18:36:46.790345"], ["updated_at", "2020-05-05 18:36:46.790345"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.1ms | ActiveRecord: 0.1ms | Allocations: 2845) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:36:46.801622"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 998) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "incidunt"], ["description", "Nihil aut cupiditate omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.811744"], ["updated_at", "2020-05-05 18:36:46.811744"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vero"], ["description", "Debitis ratione labore et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.815295"], ["updated_at", "2020-05-05 18:36:46.815295"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Incidunt excepturi facere quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.817253"], ["updated_at", "2020-05-05 18:36:46.817253"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "animi"], ["description", "Consequatur modi vitae culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.819621"], ["updated_at", "2020-05-05 18:36:46.819621"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quisquam"], ["description", "Libero voluptas repudiandae corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.821056"], ["updated_at", "2020-05-05 18:36:46.821056"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "neque"], ["description", "Nihil ut est et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.822352"], ["updated_at", "2020-05-05 18:36:46.822352"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veniam"], ["description", "Suscipit eum et in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.823623"], ["updated_at", "2020-05-05 18:36:46.823623"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Distinctio temporibus facere occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.824904"], ["updated_at", "2020-05-05 18:36:46.824904"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Ut ipsa et facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.826177"], ["updated_at", "2020-05-05 18:36:46.826177"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quod"], ["description", "Sequi ad et et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:36:46.827551"], ["updated_at", "2020-05-05 18:36:46.827551"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dalton Jenkins"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$92kQBxeO9r4p5TpFe5Of.eQsnzsjI81GjS80Mih/33E5HWQVKUS/u"], ["created_at", "2020-05-05 18:36:46.830895"], ["updated_at", "2020-05-05 18:36:46.830895"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2842) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1205) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Timothy Lockman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$POFLsPfLdGuV0GeukOlxXOHZUxpJxZgmCCggWFvK/an46wq5SMOt6"], ["created_at", "2020-05-05 18:36:46.854343"], ["updated_at", "2020-05-05 18:36:46.854343"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Evita Pacocha"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WThOfM1bPDKXBY1eUUo5hufpL0KJXGQBJYpLjdUoNhwuwCLYj8N.2"], ["created_at", "2020-05-05 18:36:46.858933"], ["updated_at", "2020-05-05 18:36:46.858933"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "China Becker"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mn4eF9Qo78bZprZwu2SWm.gchhUBDqZHwKm/QFlyJxyI3GV/Ctoz2"], ["created_at", "2020-05-05 18:36:46.861910"], ["updated_at", "2020-05-05 18:36:46.861910"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kenda Bosco"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$j0/JkpfZsBr0Vh8ua53uo.lsvY0geWGJ1QounxWp2OBwgwVkZoqya"], ["created_at", "2020-05-05 18:36:46.864885"], ["updated_at", "2020-05-05 18:36:46.864885"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Violette Abernathy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DRSD.L5DTKnX.HSQawoUH.dnLXIsFehuIfXWSd5ePUStZnFM/bMkG"], ["created_at", "2020-05-05 18:36:46.867694"], ["updated_at", "2020-05-05 18:36:46.867694"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Everette Rolfson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.MPXjTT15P8fFIYi4ftPae5cgI65cf/qH5Xb46evpBpT75bLe21aK"], ["created_at", "2020-05-05 18:36:46.870065"], ["updated_at", "2020-05-05 18:36:46.870065"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Aurore Lowe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xISKA75CJZweelPjULo4G.rTgOwlkxzkUbDWfLsm7zf386VXaWOKy"], ["created_at", "2020-05-05 18:36:46.872538"], ["updated_at", "2020-05-05 18:36:46.872538"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Cruz Legros"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.Da7OS9Hq86108T9V493AeYq2z.gE/XNh9tZkrou2E5Jq.VmR7nfu"], ["created_at", "2020-05-05 18:36:46.874961"], ["updated_at", "2020-05-05 18:36:46.874961"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Andrea Jacobson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xCuqj73LRGhCxPgW7Q7nsuEP4nmmCvcFUvUwfq7AdcEOV.hb/UPvG"], ["created_at", "2020-05-05 18:36:46.877734"], ["updated_at", "2020-05-05 18:36:46.877734"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dorethea Farrell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xSPHi91daDc1HQook8ToL.lWIID9N5SELICkaREkkIV8I.hmI/0Ay"], ["created_at", "2020-05-05 18:36:46.882246"], ["updated_at", "2020-05-05 18:36:46.882246"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.39ms) +Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.2ms | Allocations: 2345) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Shelton Streich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$o4Jr3VnMZrMFq/oEIwceaO9EO2dwZpR0E69SyGrp6SXJSDvPe9ceu"], ["created_at", "2020-05-05 18:36:46.903457"], ["updated_at", "2020-05-05 18:36:46.903457"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sam Rice"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5UP8GKRvVGn7fPHf/4qxTOtJwmVqqisS5tuI/h.Ud6RZzf.oSwc5u"], ["created_at", "2020-05-05 18:36:46.907550"], ["updated_at", "2020-05-05 18:36:46.907550"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Sharlene Rodriguez"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Cy6kXgOOlVSBJFA2NRPgXO8EbX5r4EiAXGagBYsUuSUNfw50hwEJO"], ["created_at", "2020-05-05 18:36:46.910565"], ["updated_at", "2020-05-05 18:36:46.910565"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Clementine Cronin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vNoKGyYKoY9kjPNE55b7CuuT06mJABUVFBTifUkg84ua7e1O5/5ES"], ["created_at", "2020-05-05 18:36:46.913651"], ["updated_at", "2020-05-05 18:36:46.913651"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Yvonne Labadie"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LVqJ5CEr38Kq/0.IJ9nbs.x1EjwK/WI3pvahq4iuWJ/bksU7rLfoC"], ["created_at", "2020-05-05 18:36:46.916844"], ["updated_at", "2020-05-05 18:36:46.916844"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Von Swift"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$crYMI8sBUDu9UE06NZ1pke2N9vqpMA7CwYyXy6jutTMsNzQv3NMzC"], ["created_at", "2020-05-05 18:36:46.921099"], ["updated_at", "2020-05-05 18:36:46.921099"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Chelsea Collier"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WDP.szDa5f6g6HRmJYhtYetBtyVIbVW9XUo9RraVPC2OFNjkgDbcO"], ["created_at", "2020-05-05 18:36:46.923965"], ["updated_at", "2020-05-05 18:36:46.923965"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Cyrus Kohler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$G9ocbiA9aXdRlVmAPC9I7u2TgyNTnb1BKqBmtrCiDZ22jr1jX1EjS"], ["created_at", "2020-05-05 18:36:46.926378"], ["updated_at", "2020-05-05 18:36:46.926378"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Amber Hudson Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$lhFp3/EdFmIxNXlObBcvouExLeiGnwYlplkxzkFw89tuBjpDhsqgq"], ["created_at", "2020-05-05 18:36:46.929490"], ["updated_at", "2020-05-05 18:36:46.929490"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Domenica Ledner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YJr5M3m97xUShzgKRbS81eoF9AAFd40nA6DbeFW/Ob0CzqpKIfvym"], ["created_at", "2020-05-05 18:36:46.932503"], ["updated_at", "2020-05-05 18:36:46.932503"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (4.12ms) +Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.1ms | Allocations: 2203) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Yevette Parker"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5rJH7BdzOe2wJpqqPXItgee/qqEVQvfCc5BiI3iUVVs5C1hpe5n06"], ["created_at", "2020-05-05 18:36:46.955403"], ["updated_at", "2020-05-05 18:36:46.955403"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mervin Abshire"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LJvCb5FjI/086sS1NxzFYOuBSktqCf0Yc2tx/lXEZro4gfwG0g7/u"], ["created_at", "2020-05-05 18:36:46.960843"], ["updated_at", "2020-05-05 18:36:46.960843"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Sharonda Jacobs"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$PO2nMM2yweNWiP6XB7kC5ubxTb5Z1fgLlWU7.erqGXrl0IywuJOWO"], ["created_at", "2020-05-05 18:36:46.964346"], ["updated_at", "2020-05-05 18:36:46.964346"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gita Paucek"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9j1625oieFErck9viakHIOaHNjT.CIQDJI.Qi2QsWkH4RDL5GWrVK"], ["created_at", "2020-05-05 18:36:46.967309"], ["updated_at", "2020-05-05 18:36:46.967309"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Levi Dickinson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xinX8hRnf2ZzEaDN4KP6C.jWzj..6uxlDjodXJlUDmkH7zZnRPwje"], ["created_at", "2020-05-05 18:36:46.969791"], ["updated_at", "2020-05-05 18:36:46.969791"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Floyd Kessler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$N3JTVB/9KrVV.62VrO/dV.diCoP79Ci4mdVJolHGugHD9FphsgxaK"], ["created_at", "2020-05-05 18:36:46.972405"], ["updated_at", "2020-05-05 18:36:46.972405"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Frank Howe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Y0YhdLkz3HDJ4yLa9Ee5BeqYAWWkynIVn9OBqGPbfjMLkVYyWRYX."], ["created_at", "2020-05-05 18:36:46.974781"], ["updated_at", "2020-05-05 18:36:46.974781"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alphonso Kunde IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XEDOmkmrM0glB.9pM3USROFwlMwYeKWyV9ng9faqEXCTfukLZ5brC"], ["created_at", "2020-05-05 18:36:46.977272"], ["updated_at", "2020-05-05 18:36:46.977272"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Fiona Langosh"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dIGthp1sO7e6Ha.XuU1aGemhkzECOQ5.Rzsi9Z9fDGJRdWz1n22L."], ["created_at", "2020-05-05 18:36:46.982738"], ["updated_at", "2020-05-05 18:36:46.982738"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Lola Brakus"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$d/AamQ68.7htfKafsMIT7euG.n5FaGVJRJ0MUzFBYWaqRHN4UaCVa"], ["created_at", "2020-05-05 18:36:46.985610"], ["updated_at", "2020-05-05 18:36:46.985610"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.63ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:36:46 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.32ms) +Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Timmy Strosin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YMlYCd0bPbpVx2wMLrWoOuGYRJRjEsSFGyvSw1iAdg30tDgzHct3C"], ["created_at", "2020-05-05 18:36:47.006561"], ["updated_at", "2020-05-05 18:36:47.006561"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shauna Monahan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qjpt/usnwvYs6clXzEbMK.p4vxBzvvd63eDo5DJR0zcc81ZrCsqpu"], ["created_at", "2020-05-05 18:36:47.010449"], ["updated_at", "2020-05-05 18:36:47.010449"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Jame Howe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$B9ynD3DXlHFg2MGx90ymXeQowx.s4dHGfsDXNBCFkXEh22cgrMtCi"], ["created_at", "2020-05-05 18:36:47.013225"], ["updated_at", "2020-05-05 18:36:47.013225"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Billy Kris"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$u./xAe9mgaawK6t.Fc8ytuMVCNGii16Zep4GTDZjkInW0p3YffR2m"], ["created_at", "2020-05-05 18:36:47.016374"], ["updated_at", "2020-05-05 18:36:47.016374"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kris Brekke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QS5f.WRYic52nIui9MVZLOyuSVbwjS8D1b9vOmdORSGjQpmuM0CE6"], ["created_at", "2020-05-05 18:36:47.019739"], ["updated_at", "2020-05-05 18:36:47.019739"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Floyd Huels"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7Rv2nu4cUN1kgLHJEcekG.X0mDuIr0T4tfFNbCzX6M4z5..pH6Ina"], ["created_at", "2020-05-05 18:36:47.022730"], ["updated_at", "2020-05-05 18:36:47.022730"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Izetta Larson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$c4lEOcwBQIr1goVXWg1HDu7tzt9phhArErpZslQcVAr05151ZQ03O"], ["created_at", "2020-05-05 18:36:47.025166"], ["updated_at", "2020-05-05 18:36:47.025166"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hans Thompson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$S480PyxhqipRxPK8LsjTAurQUT0TPF0rR5xtElijsCGRGl39lfY.i"], ["created_at", "2020-05-05 18:36:47.027707"], ["updated_at", "2020-05-05 18:36:47.027707"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Annmarie Grant"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FBK0GVYTpt1BIJHFpTteneon.BlYPe4xxkvKm4NyzNKiVo9CMpKp."], ["created_at", "2020-05-05 18:36:47.030745"], ["updated_at", "2020-05-05 18:36:47.030745"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elene Kuhic"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$sGOatRRWJOI8jXCTTiQSx.mgVGf7u6RMGrr0WxpJ8P4QGV1PqLe1."], ["created_at", "2020-05-05 18:36:47.033580"], ["updated_at", "2020-05-05 18:36:47.033580"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:36:47 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.72ms) +Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:36:47 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.43ms) +Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Walker Carter"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OI5rge1CkAKGKXvQajAMUOl/6.gp6S5E6v0ebIOCP4HlyJESK459i"], ["created_at", "2020-05-05 18:36:47.054553"], ["updated_at", "2020-05-05 18:36:47.054553"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Blake McClure"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$yCBZUFwmqW00xnEJEhaYJu59KAvA8oT7v3Ung4ROnNzFxNckaXpqC"], ["created_at", "2020-05-05 18:36:47.059094"], ["updated_at", "2020-05-05 18:36:47.059094"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Amado Grimes"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DxfOVfpz4iXqNcTDDyK.wOMdIv2915ZxETAXIOLvDaDMnvZuoO1YO"], ["created_at", "2020-05-05 18:36:47.063270"], ["updated_at", "2020-05-05 18:36:47.063270"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dorothy Oberbrunner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KpYZcFoGusHffgiZ2lozsecDsrrMgOBWDWijcgoxcC1CW70VyXptK"], ["created_at", "2020-05-05 18:36:47.066391"], ["updated_at", "2020-05-05 18:36:47.066391"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Christiana Gleason"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kjiRQAaG0J/gaC.AwpOuhOqaWLbuMXfvTI5ouGGVQxu/pECnLOmwa"], ["created_at", "2020-05-05 18:36:47.069197"], ["updated_at", "2020-05-05 18:36:47.069197"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lourie Dickinson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0sNU9b76hMKe9aogeLz4Rei45G.7XqrjrXA4TMkFznjk86ozt.lO2"], ["created_at", "2020-05-05 18:36:47.071629"], ["updated_at", "2020-05-05 18:36:47.071629"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Doug Witting"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.7NJB3bAUgq22EyKc0WCsecuikW6y3nYd.JiOQvjRMDbJyFT1SzPm"], ["created_at", "2020-05-05 18:36:47.074044"], ["updated_at", "2020-05-05 18:36:47.074044"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Malorie Thiel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GCaLDrjB.tacOG2dW7nyw.ugWXaSvQRGrYAQkeVRjeWtYWdpp6SBa"], ["created_at", "2020-05-05 18:36:47.076409"], ["updated_at", "2020-05-05 18:36:47.076409"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shad Macejkovic"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pCdgLwHzRHGxvuwfOSBC3.Y/iHDvg3mE75QMruYUhYeDXqR5x5wmW"], ["created_at", "2020-05-05 18:36:47.079405"], ["updated_at", "2020-05-05 18:36:47.079405"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kenneth Schmidt V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KqXc2q4/62XFLij9LcChAuaAOA7VgVs3THaMudGZJdYUNj6yWc0km"], ["created_at", "2020-05-05 18:36:47.082779"], ["updated_at", "2020-05-05 18:36:47.082779"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:36:47 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.93ms) +Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:36:47 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Keith Lynch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$iHlJJHjXhfjNy428BGZ3QOJjPPWrjvJ/aK.UIbtFLaAvtBAZz4hvq"], ["created_at", "2020-05-05 18:36:47.103305"], ["updated_at", "2020-05-05 18:36:47.103305"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Irwin Ernser"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ja783JqIE3ieacbR8NizRO2VpCCXnzPPzLEEYve7pQksGIorgkfIq"], ["created_at", "2020-05-05 18:36:47.107216"], ["updated_at", "2020-05-05 18:36:47.107216"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Edmond Yost"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tBhYOjXh.pup7tFHzSTx3eMA3v2hw3feWapp0/Qa2ty7SH1MmVZ8S"], ["created_at", "2020-05-05 18:36:47.109956"], ["updated_at", "2020-05-05 18:36:47.109956"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Kelvin Schuppe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$R6wqZnatzkgzvJ9Si3.PqultdKVRtwub7Khk3k73AQDevlRXHFJzi"], ["created_at", "2020-05-05 18:36:47.112718"], ["updated_at", "2020-05-05 18:36:47.112718"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hilario Donnelly"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Scww94oyBA12kGq.RxAUwOOqoMMoEWQyGLseP1Xsc8987ns81qXli"], ["created_at", "2020-05-05 18:36:47.115700"], ["updated_at", "2020-05-05 18:36:47.115700"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Yuonne Luettgen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rrGcNCj6kt1KHFYZq0Eqf.Y263DrdXu.3dRMQPUe9jufS.yAf.oyK"], ["created_at", "2020-05-05 18:36:47.118587"], ["updated_at", "2020-05-05 18:36:47.118587"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Deidra Wolf"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qwepyeT.IvytxJs/wY2XVeYtqAr1ceBSv2nRz7fxt8YxDeDECsRDe"], ["created_at", "2020-05-05 18:36:47.122329"], ["updated_at", "2020-05-05 18:36:47.122329"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Spencer McGlynn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1.ZvdqCEcT86Kw6hlLBbnOHxR9OuuTwe1xJed/AmaX1gWiuU0vXTW"], ["created_at", "2020-05-05 18:36:47.124874"], ["updated_at", "2020-05-05 18:36:47.124874"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Oren Smitham"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KuWmS5dLWWX9TkJdY0HLB.3jdyoGZjUAMfR3xVV/s8i8aoVBVrzHG"], ["created_at", "2020-05-05 18:36:47.127499"], ["updated_at", "2020-05-05 18:36:47.127499"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jere Lowe DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9wPfYw2DQN9XG7aYbnjASODw07m9fajdbb5AZwIt23AU9KNC1bZaK"], ["created_at", "2020-05-05 18:36:47.130453"], ["updated_at", "2020-05-05 18:36:47.130453"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:36:47 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.93ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:36:47 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Natashia Steuber"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$bkOzvAyK1pcB45RSQB8SreOoCvJhMxH7LESx99q5QcD9tJTAW8CM2"], ["created_at", "2020-05-05 18:36:47.165916"], ["updated_at", "2020-05-05 18:36:47.165916"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Contessa Shields"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$t.kBlKdru4F8lRrSXY/fQOAB8zx6W.Ydp6YjRqrHX4HdAxgDOFmBa"], ["created_at", "2020-05-05 18:36:47.170197"], ["updated_at", "2020-05-05 18:36:47.170197"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Scarlet Considine"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$i0k2oGmaEZApGL8Zlcx9buYoMTeCnbiRikdJYGcO/w6x4fj0Po166"], ["created_at", "2020-05-05 18:36:47.172787"], ["updated_at", "2020-05-05 18:36:47.172787"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ivory Collins"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8Y7aUKvM5CpzcHm63fieEOsw3GXhlmIAU8gV9jOSP0R3SNC/NjgUi"], ["created_at", "2020-05-05 18:36:47.175221"], ["updated_at", "2020-05-05 18:36:47.175221"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Felica Reichert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pL0togBvclOQTLI8kwgJw.CZmXG.Iymgr/xyOkbeycLDDnpRgW6DG"], ["created_at", "2020-05-05 18:36:47.177623"], ["updated_at", "2020-05-05 18:36:47.177623"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rusty Brekke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6fOrPeUOl9a/IDe7DweWGe8RTjH15Qd4uZ9CRLgB0bjjKp39WZ1E2"], ["created_at", "2020-05-05 18:36:47.181681"], ["updated_at", "2020-05-05 18:36:47.181681"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Robbi Considine"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DGz7jsjZBH/5RrplNzu22.eV1udD/w1DoF6EdveSnjH.qZ5A6xPrK"], ["created_at", "2020-05-05 18:36:47.184607"], ["updated_at", "2020-05-05 18:36:47.184607"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Burl Cronin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DnJaPgcGoKdvt/EMiYUqB.F9Hy01BU0bGRXmrAMZt2aIPkXZ8WAna"], ["created_at", "2020-05-05 18:36:47.187077"], ["updated_at", "2020-05-05 18:36:47.187077"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tynisha Rosenbaum Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$bKO.U7dMT5rBBIBUnz33zOa/M6cPGjoLpU6wD491uvSqcNiV8aMxm"], ["created_at", "2020-05-05 18:36:47.189735"], ["updated_at", "2020-05-05 18:36:47.189735"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dawna Hartmann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QaGaNfRnsEZr9MRelgrRQOb12CJ4Y4v219YJyJ.q.8ZoexgaNAJqW"], ["created_at", "2020-05-05 18:36:47.192201"], ["updated_at", "2020-05-05 18:36:47.192201"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:36:47 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.29ms) +Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/users" for 127.0.0.1 at 2020-05-05 15:36:47 -0300 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Eldon Frami"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Vv5B1.tEzO1JEQoO/lw4k.jNNXuOa3dgIotZxZs5w3wk0jJ.bpgFG"], ["created_at", "2020-05-05 18:36:47.210769"], ["updated_at", "2020-05-05 18:36:47.210769"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Glayds Hansen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7XaTsYqTIhRCFJdqlsh2..AOFqdAMQoUIia1ppThxTMaTNBHOQbP6"], ["created_at", "2020-05-05 18:36:47.215431"], ["updated_at", "2020-05-05 18:36:47.215431"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Curtis Cartwright"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WFWB4h2goWiPKvMncjHNFeE3ffA1jnKN9YtNQaeqla6IiQVTEXEyO"], ["created_at", "2020-05-05 18:36:47.218535"], ["updated_at", "2020-05-05 18:36:47.218535"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Terrance Rogahn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xPCkxtbpdURKS3d4oA501uAJG8s1BzLclDAxpp7vO0UByh8gcmL46"], ["created_at", "2020-05-05 18:36:47.221882"], ["updated_at", "2020-05-05 18:36:47.221882"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jessika Will"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XypHWLwQ1BYmgVT7WUlMV.2oIFRUCPNvNyjVXLBMd.T2kZXNOELB."], ["created_at", "2020-05-05 18:36:47.224644"], ["updated_at", "2020-05-05 18:36:47.224644"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ardith Jast PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$AMoCziDEXBAuUUjFVkAWjuQmzBK08QuFR/M1fDDCwtTAPxWkMgVky"], ["created_at", "2020-05-05 18:36:47.227099"], ["updated_at", "2020-05-05 18:36:47.227099"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Monty Kassulke MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5gBpBc1B8TTH2p.SiZeAu.4UENBfGP0faU8j1p1BMHahIvXnmvLjm"], ["created_at", "2020-05-05 18:36:47.229893"], ["updated_at", "2020-05-05 18:36:47.229893"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Brice Harber"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4mByQmyR94E7ztYveG1hi.Yiy5wwM2QlRMKTHLDsk7klyzNjD3C4a"], ["created_at", "2020-05-05 18:36:47.232752"], ["updated_at", "2020-05-05 18:36:47.232752"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jan Gutkowski III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FNK3v6HT95k9UHDqd5r9MO52Z7wh3FG2kFspBZb.ZZdM3uT5HUWmO"], ["created_at", "2020-05-05 18:36:47.235153"], ["updated_at", "2020-05-05 18:36:47.235153"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Emelda Hodkiewicz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tSDPZ0k3qNFBlyKN3.uLiecJYCRNoOdMXl4udIlPfdSe19ABBnm7i"], ["created_at", "2020-05-05 18:36:47.237568"], ["updated_at", "2020-05-05 18:36:47.237568"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:36:47 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.4ms) +Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/users" for 127.0.0.1 at 2020-05-05 15:36:47 -0300 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Renna Upton"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hWVDX9/dhwGy45FaJHr6x.bSow.hV9dY.OrXCtZlJVWKqmNwPT0dK"], ["created_at", "2020-05-05 18:36:47.258114"], ["updated_at", "2020-05-05 18:36:47.258114"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Londa Ferry I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$EmuLn6tIKMqu4LaVAN4fZ.2RnLWfk/MtQ2oRmqFCESYUGJdyjyBqu"], ["created_at", "2020-05-05 18:36:47.262864"], ["updated_at", "2020-05-05 18:36:47.262864"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lazaro Schneider"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$IkDZDr8A1B6wLkdXR0rOZOkIH81k2bjhm0E/yE5.q6U7fqdMF1EJa"], ["created_at", "2020-05-05 18:36:47.265636"], ["updated_at", "2020-05-05 18:36:47.265636"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Madison Von"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$u9inOlIEeQv3FWLLQ7EOnehMM8QdVVpeZOEFetAYaj8PEdIsK3WdC"], ["created_at", "2020-05-05 18:36:47.268413"], ["updated_at", "2020-05-05 18:36:47.268413"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cristine Stroman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ptsOEbhOR2d/83Y8Qfcad.oiJDK.biaCuvNvEDE7B79K1vUP8Rnl6"], ["created_at", "2020-05-05 18:36:47.270859"], ["updated_at", "2020-05-05 18:36:47.270859"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Anton Boyle"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZaQz9tLOoWe4FBtI/rJPHeLjUomNBLrOOIFQisuK5IqJSMvb8sYWm"], ["created_at", "2020-05-05 18:36:47.273297"], ["updated_at", "2020-05-05 18:36:47.273297"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dagmar Anderson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rZTvE/CBmZM4qQdo/Jcx2.RQtVcQ0ff.XGZzzHk2fha7LKBVP5Dh2"], ["created_at", "2020-05-05 18:36:47.275666"], ["updated_at", "2020-05-05 18:36:47.275666"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Madeline Brown"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$D0RYNK65akPN3Khm.Z0.8.5WfkManInhJsZoAPJ2LFLSCnoMgtEUK"], ["created_at", "2020-05-05 18:36:47.278277"], ["updated_at", "2020-05-05 18:36:47.278277"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Aldo Abernathy DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TtLwcLPtvKIOJ0295WkNg.79cqw1ufmgD7lBzNHZBIeQDypEtO9Cy"], ["created_at", "2020-05-05 18:36:47.282126"], ["updated_at", "2020-05-05 18:36:47.282126"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Remedios Lowe PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QfLy8XmpQlpCKdPwLFcsKOWUGfOSojlgje3UDnZq.ZFM4DKtVlvvq"], ["created_at", "2020-05-05 18:36:47.285108"], ["updated_at", "2020-05-05 18:36:47.285108"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:36:47 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.12ms) +Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/users" for 127.0.0.1 at 2020-05-05 15:36:47 -0300 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nikia Renner MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$024r5BZgnyfDnIy.mk.m5uHOMZ3cLUOJriYXDAu7EPB400QraXtKi"], ["created_at", "2020-05-05 18:36:47.303931"], ["updated_at", "2020-05-05 18:36:47.303931"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Su Kunde"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$K6kNKCwoTJOKD2GA1d7gqeKaSkidMso9q5An/HzAxJZUipgprltV2"], ["created_at", "2020-05-05 18:36:47.307931"], ["updated_at", "2020-05-05 18:36:47.307931"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Zachery Will II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FbKdM8fVop/hIrUfuZosEuyiVoQ7jUi6BjboD4H5QW98ZwpISxSP2"], ["created_at", "2020-05-05 18:36:47.310591"], ["updated_at", "2020-05-05 18:36:47.310591"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Chong Connelly"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ePzoUMGJ4W3rLFQgSbcmZejWOGWU0GE.6.Iwou6QcSn3NLaV/sNh."], ["created_at", "2020-05-05 18:36:47.313448"], ["updated_at", "2020-05-05 18:36:47.313448"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Demarcus Leffler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vdbcYHgzdDqB7IaAH5fiD.JEJOKZ.221J383ydf9HKds.fzuQUtbW"], ["created_at", "2020-05-05 18:36:47.316467"], ["updated_at", "2020-05-05 18:36:47.316467"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sophia Stoltenberg"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pcp3KssT30If75xab2Zvte8ycLZgEaa.oymVH33.p/o5m6G2L/1x."], ["created_at", "2020-05-05 18:36:47.319118"], ["updated_at", "2020-05-05 18:36:47.319118"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Daryl Mann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CQZgKgIjkOy/n6xXo5Gupuus4pgHGnC7pzYmc.tQPV8.uEVDXKmYC"], ["created_at", "2020-05-05 18:36:47.322230"], ["updated_at", "2020-05-05 18:36:47.322230"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Suzanne Pacocha"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vGYu1aJ9V1hurKNM9QqQc.aAduoRipamt71Ua6GB8f6ntPLAPjR7K"], ["created_at", "2020-05-05 18:36:47.325109"], ["updated_at", "2020-05-05 18:36:47.325109"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Earle Grant"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$x2RxjPunfZsrhegCYLvCmeFz3mZNiODCtJcKdODa3zDghFVDw64h6"], ["created_at", "2020-05-05 18:36:47.327900"], ["updated_at", "2020-05-05 18:36:47.327900"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hiram Considine"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mA8mc8iVHcl.iCPTjPeBxONho89h.XgAM2vaVn8yT8YPIOnBVDkM2"], ["created_at", "2020-05-05 18:36:47.330972"], ["updated_at", "2020-05-05 18:36:47.330972"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:36:47 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.19ms) +Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/users" for 127.0.0.1 at 2020-05-05 15:36:47 -0300 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (4.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (131.0ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (99.1ms) DELETE FROM "user_meets"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (198.7ms) DELETE FROM "user_meetings"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (106.3ms) DELETE FROM "meets"; +  (1.0ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (1.2ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (96.2ms) DELETE FROM "conversations"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (97.0ms) DELETE FROM "messagems"; +  (0.9ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (96.1ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (4.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Tori Yost"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$bzrydKsJKPTRIds6YyPDv.vyUhNWbEX6nvnUnYcIkgsCcgmI89Mc2"], ["created_at", "2020-05-05 18:38:38.005575"], ["updated_at", "2020-05-05 18:38:38.005575"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cumque"], ["description", "Voluptatem excepturi autem quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:38.026414"], ["updated_at", "2020-05-05 18:38:38.026414"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui porro minus cumque?"], ["description", "Laboriosam iusto corporis consectetur."], ["date", "2020-05-06 18:38:38.050016"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.076221"], ["updated_at", "2020-05-05 18:38:38.076221"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores accusamus aliquam dolor?"], ["description", "Et aut quo officia."], ["date", "2020-05-06 18:38:38.079072"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.080340"], ["updated_at", "2020-05-05 18:38:38.080340"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut sunt voluptate recusandae?"], ["description", "Quae soluta non ipsum."], ["date", "2020-05-06 18:38:38.081852"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.082653"], ["updated_at", "2020-05-05 18:38:38.082653"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi sequi praesentium id?"], ["description", "Aut est ut aut."], ["date", "2020-05-06 18:38:38.083949"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.084826"], ["updated_at", "2020-05-05 18:38:38.084826"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos laboriosam ea rerum?"], ["description", "Sed dolor maxime et."], ["date", "2020-05-06 18:38:38.086171"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.086997"], ["updated_at", "2020-05-05 18:38:38.086997"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt eum repudiandae voluptatem?"], ["description", "Dolorem inventore fugiat numquam."], ["date", "2020-05-06 18:38:38.088246"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.088990"], ["updated_at", "2020-05-05 18:38:38.088990"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum ad eos laborum?"], ["description", "Fugiat corporis ut molestiae."], ["date", "2020-05-06 18:38:38.090179"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.090978"], ["updated_at", "2020-05-05 18:38:38.090978"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut aspernatur necessitatibus non?"], ["description", "Cum nobis non quidem."], ["date", "2020-05-06 18:38:38.092407"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.093169"], ["updated_at", "2020-05-05 18:38:38.093169"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae repudiandae dolores dignissimos?"], ["description", "Sed laboriosam quo praesentium."], ["date", "2020-05-06 18:38:38.094335"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.095368"], ["updated_at", "2020-05-05 18:38:38.095368"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora molestiae nihil ut?"], ["description", "Eum nostrum asperiores quo."], ["date", "2020-05-06 18:38:38.098039"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.099473"], ["updated_at", "2020-05-05 18:38:38.099473"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos in sed cupiditate?"], ["description", "Rerum ex commodi odit."], ["date", "2020-05-06 18:38:38.101089"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.101939"], ["updated_at", "2020-05-05 18:38:38.101939"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores et aut iste?"], ["description", "Repudiandae ab recusandae aperiam."], ["date", "2020-05-06 18:38:38.103246"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.104094"], ["updated_at", "2020-05-05 18:38:38.104094"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam voluptas ut enim?"], ["description", "Nemo vero non pariatur."], ["date", "2020-05-06 18:38:38.105346"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.106105"], ["updated_at", "2020-05-05 18:38:38.106105"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur eos voluptatem voluptatum?"], ["description", "Assumenda reiciendis nemo voluptatem."], ["date", "2020-05-06 18:38:38.107440"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.108184"], ["updated_at", "2020-05-05 18:38:38.108184"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum illum itaque saepe?"], ["description", "Debitis voluptate sed possimus."], ["date", "2020-05-06 18:38:38.109390"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.110091"], ["updated_at", "2020-05-05 18:38:38.110091"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat quisquam et corrupti?"], ["description", "Velit et eius modi."], ["date", "2020-05-06 18:38:38.111251"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.112254"], ["updated_at", "2020-05-05 18:38:38.112254"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non ut eaque illo?"], ["description", "Fugit qui libero laudantium."], ["date", "2020-05-06 18:38:38.113888"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.114759"], ["updated_at", "2020-05-05 18:38:38.114759"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe et expedita deleniti?"], ["description", "Animi vel est quibusdam."], ["date", "2020-05-06 18:38:38.116085"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.116888"], ["updated_at", "2020-05-05 18:38:38.116888"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est rerum quod laboriosam?"], ["description", "Rem laborum et est."], ["date", "2020-05-06 18:38:38.119377"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.120542"], ["updated_at", "2020-05-05 18:38:38.120542"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio magni iusto recusandae?"], ["description", "Veniam vero minus voluptate."], ["date", "2020-05-06 18:38:38.121972"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.122738"], ["updated_at", "2020-05-05 18:38:38.122738"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:38:38 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.37ms) +Completed 200 OK in 36ms (Views: 16.7ms | ActiveRecord: 0.5ms | Allocations: 8637) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kasey Blanda"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oGIfb34y.cdD6930SI/c/uxxBPZF3AW/4HZPPeywB3i.QuKxDGDGK"], ["created_at", "2020-05-05 18:38:38.211438"], ["updated_at", "2020-05-05 18:38:38.211438"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Sit cumque dicta accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:38.214702"], ["updated_at", "2020-05-05 18:38:38.214702"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque et eaque blanditiis?"], ["description", "Voluptatibus debitis nihil dolor."], ["date", "2020-05-06 18:38:38.216442"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.217864"], ["updated_at", "2020-05-05 18:38:38.217864"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique eos illum reiciendis?"], ["description", "Voluptas quos omnis in."], ["date", "2020-05-06 18:38:38.220376"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.221544"], ["updated_at", "2020-05-05 18:38:38.221544"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam aperiam quaerat unde?"], ["description", "Fuga qui nesciunt ducimus."], ["date", "2020-05-06 18:38:38.222934"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.223646"], ["updated_at", "2020-05-05 18:38:38.223646"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut quis necessitatibus qui?"], ["description", "Sunt dignissimos ut nostrum."], ["date", "2020-05-06 18:38:38.224797"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.225484"], ["updated_at", "2020-05-05 18:38:38.225484"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae sunt numquam error?"], ["description", "Eaque ut aperiam voluptatem."], ["date", "2020-05-06 18:38:38.227013"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.228384"], ["updated_at", "2020-05-05 18:38:38.228384"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum iste ea nihil?"], ["description", "Quisquam eaque odio voluptates."], ["date", "2020-05-06 18:38:38.229820"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.230565"], ["updated_at", "2020-05-05 18:38:38.230565"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi sapiente natus qui?"], ["description", "Suscipit sed deleniti delectus."], ["date", "2020-05-06 18:38:38.231711"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.232402"], ["updated_at", "2020-05-05 18:38:38.232402"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quibusdam natus ipsum molestiae?"], ["description", "Quod architecto vel voluptatum."], ["date", "2020-05-06 18:38:38.233547"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.234238"], ["updated_at", "2020-05-05 18:38:38.234238"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla culpa eum magni?"], ["description", "Laudantium deserunt quasi nostrum."], ["date", "2020-05-06 18:38:38.235430"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.236142"], ["updated_at", "2020-05-05 18:38:38.236142"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente et debitis laboriosam?"], ["description", "Minus ducimus eos velit."], ["date", "2020-05-06 18:38:38.238079"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.239277"], ["updated_at", "2020-05-05 18:38:38.239277"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta sed similique laboriosam?"], ["description", "Est in nesciunt assumenda."], ["date", "2020-05-06 18:38:38.241548"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.243098"], ["updated_at", "2020-05-05 18:38:38.243098"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam praesentium enim voluptas?"], ["description", "Et similique et provident."], ["date", "2020-05-06 18:38:38.244817"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.245871"], ["updated_at", "2020-05-05 18:38:38.245871"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia sint autem consequuntur?"], ["description", "Quia inventore nihil eos."], ["date", "2020-05-06 18:38:38.247623"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.248595"], ["updated_at", "2020-05-05 18:38:38.248595"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed optio sunt quia?"], ["description", "Et sunt sit possimus."], ["date", "2020-05-06 18:38:38.250032"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.250773"], ["updated_at", "2020-05-05 18:38:38.250773"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel et qui fugiat?"], ["description", "Omnis et magni officia."], ["date", "2020-05-06 18:38:38.251993"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.252685"], ["updated_at", "2020-05-05 18:38:38.252685"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reiciendis dolore amet fugit?"], ["description", "Quasi ut enim maiores."], ["date", "2020-05-06 18:38:38.253915"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.254669"], ["updated_at", "2020-05-05 18:38:38.254669"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda esse ipsam incidunt?"], ["description", "Tempora unde sapiente deleniti."], ["date", "2020-05-06 18:38:38.255810"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.256522"], ["updated_at", "2020-05-05 18:38:38.256522"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut enim id quisquam?"], ["description", "Perspiciatis architecto repellendus accusantium."], ["date", "2020-05-06 18:38:38.257731"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.258743"], ["updated_at", "2020-05-05 18:38:38.258743"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae quia voluptas non?"], ["description", "Debitis similique exercitationem eum."], ["date", "2020-05-06 18:38:38.261239"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.263279"], ["updated_at", "2020-05-05 18:38:38.263279"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore molestiae asperiores architecto?"], ["description", "Porro impedit delectus occaecati."], ["date", "2020-05-06 18:38:38.264846"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.265702"], ["updated_at", "2020-05-05 18:38:38.265702"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:38:38 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (7.74ms) +Completed 200 OK in 11ms (Views: 9.6ms | ActiveRecord: 0.2ms | Allocations: 5516) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Vaughn Becker"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$B1E1LfX1/Vc7s7wT0zOzH.XUTydhy5zSie.IU9s2ek6IxakBWNoD."], ["created_at", "2020-05-05 18:38:38.294054"], ["updated_at", "2020-05-05 18:38:38.294054"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Quaerat minus ut eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:38.297610"], ["updated_at", "2020-05-05 18:38:38.297610"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem aspernatur fugiat debitis?"], ["description", "Est asperiores accusantium enim."], ["date", "2020-05-06 18:38:38.299719"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.301507"], ["updated_at", "2020-05-05 18:38:38.301507"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed soluta aliquid in?"], ["description", "Eaque libero ut quis."], ["date", "2020-05-06 18:38:38.304108"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.305351"], ["updated_at", "2020-05-05 18:38:38.305351"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem laudantium suscipit consequatur?"], ["description", "Fugiat ut nostrum odit."], ["date", "2020-05-06 18:38:38.306815"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.307624"], ["updated_at", "2020-05-05 18:38:38.307624"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis dolores rerum earum?"], ["description", "Rerum possimus numquam ut."], ["date", "2020-05-06 18:38:38.308889"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.309619"], ["updated_at", "2020-05-05 18:38:38.309619"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam eos quisquam qui?"], ["description", "Dolor facilis laboriosam non."], ["date", "2020-05-06 18:38:38.310830"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.312357"], ["updated_at", "2020-05-05 18:38:38.312357"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis est et sunt?"], ["description", "Quod nihil qui sed."], ["date", "2020-05-06 18:38:38.313862"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.314696"], ["updated_at", "2020-05-05 18:38:38.314696"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam eaque ad numquam?"], ["description", "Distinctio est ab fugit."], ["date", "2020-05-06 18:38:38.315859"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.316629"], ["updated_at", "2020-05-05 18:38:38.316629"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est labore voluptas facilis?"], ["description", "Quo ratione facilis blanditiis."], ["date", "2020-05-06 18:38:38.317809"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.318714"], ["updated_at", "2020-05-05 18:38:38.318714"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto amet deserunt blanditiis?"], ["description", "At nemo nihil praesentium."], ["date", "2020-05-06 18:38:38.321101"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.322525"], ["updated_at", "2020-05-05 18:38:38.322525"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem similique aperiam aut?"], ["description", "Quidem voluptates numquam incidunt."], ["date", "2020-05-06 18:38:38.342968"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.344328"], ["updated_at", "2020-05-05 18:38:38.344328"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia quis harum ut?"], ["description", "Non impedit expedita quam."], ["date", "2020-05-06 18:38:38.346228"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.347151"], ["updated_at", "2020-05-05 18:38:38.347151"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident sunt nostrum quo?"], ["description", "Unde maxime culpa occaecati."], ["date", "2020-05-06 18:38:38.348341"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.349029"], ["updated_at", "2020-05-05 18:38:38.349029"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum vel excepturi dolor?"], ["description", "Quam ipsum eos totam."], ["date", "2020-05-06 18:38:38.350108"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.350792"], ["updated_at", "2020-05-05 18:38:38.350792"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed facere et itaque?"], ["description", "Blanditiis est voluptatem architecto."], ["date", "2020-05-06 18:38:38.352182"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.352918"], ["updated_at", "2020-05-05 18:38:38.352918"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem id doloremque dolorem?"], ["description", "Ducimus iste reprehenderit voluptas."], ["date", "2020-05-06 18:38:38.354218"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.354914"], ["updated_at", "2020-05-05 18:38:38.354914"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut officia quibusdam nulla?"], ["description", "Eum reiciendis fugit voluptatum."], ["date", "2020-05-06 18:38:38.356102"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.356808"], ["updated_at", "2020-05-05 18:38:38.356808"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum laboriosam est aut?"], ["description", "Ut sunt voluptatem doloremque."], ["date", "2020-05-06 18:38:38.357966"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.358804"], ["updated_at", "2020-05-05 18:38:38.358804"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut qui possimus dolor?"], ["description", "Minima illo sit exercitationem."], ["date", "2020-05-06 18:38:38.360579"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.362318"], ["updated_at", "2020-05-05 18:38:38.362318"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus et beatae delectus?"], ["description", "Tenetur reprehenderit consectetur et."], ["date", "2020-05-06 18:38:38.363785"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.364614"], ["updated_at", "2020-05-05 18:38:38.364614"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est velit nihil ratione?"], ["description", "Sit necessitatibus quia quaerat."], ["date", "2020-05-06 18:38:38.365829"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.366559"], ["updated_at", "2020-05-05 18:38:38.366559"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:38:38 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 6ms (Views: 4.7ms | ActiveRecord: 0.1ms | Allocations: 866) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Paris Mosciski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FjrhLgYQKWeXAJtUeFru0OIu2LykngsBkiLQnDipUWno9AUQQn4O2"], ["created_at", "2020-05-05 18:38:38.385662"], ["updated_at", "2020-05-05 18:38:38.385662"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deserunt"], ["description", "Quos sit explicabo vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:38.389501"], ["updated_at", "2020-05-05 18:38:38.389501"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe repellat tempora recusandae?"], ["description", "Nihil quasi quia aperiam."], ["date", "2020-05-06 18:38:38.391034"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.391975"], ["updated_at", "2020-05-05 18:38:38.391975"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil accusantium dolor suscipit?"], ["description", "Eos doloribus ea adipisci."], ["date", "2020-05-06 18:38:38.393271"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.394399"], ["updated_at", "2020-05-05 18:38:38.394399"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt nemo quisquam non?"], ["description", "Odit fugit eos quo."], ["date", "2020-05-06 18:38:38.396020"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.396884"], ["updated_at", "2020-05-05 18:38:38.396884"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et deserunt omnis deleniti?"], ["description", "Doloremque eaque et et."], ["date", "2020-05-06 18:38:38.398100"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.398962"], ["updated_at", "2020-05-05 18:38:38.398962"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque iste est dicta?"], ["description", "Est explicabo in et."], ["date", "2020-05-06 18:38:38.401389"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.402934"], ["updated_at", "2020-05-05 18:38:38.402934"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste velit quia officia?"], ["description", "At consectetur dicta dolorem."], ["date", "2020-05-06 18:38:38.404451"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.405248"], ["updated_at", "2020-05-05 18:38:38.405248"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque nihil quas sit?"], ["description", "Sit eaque et quaerat."], ["date", "2020-05-06 18:38:38.406354"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.407079"], ["updated_at", "2020-05-05 18:38:38.407079"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias tempora quo temporibus?"], ["description", "In alias impedit omnis."], ["date", "2020-05-06 18:38:38.408245"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.408934"], ["updated_at", "2020-05-05 18:38:38.408934"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel nihil pariatur dolor?"], ["description", "Quisquam aut aliquid sit."], ["date", "2020-05-06 18:38:38.410180"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.410900"], ["updated_at", "2020-05-05 18:38:38.410900"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores quasi reprehenderit autem?"], ["description", "Non quia voluptatum soluta."], ["date", "2020-05-06 18:38:38.413456"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.414414"], ["updated_at", "2020-05-05 18:38:38.414414"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis rem illum id?"], ["description", "Eligendi ipsa delectus aliquam."], ["date", "2020-05-06 18:38:38.415776"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.416503"], ["updated_at", "2020-05-05 18:38:38.416503"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae molestias quod perferendis?"], ["description", "Quisquam sed est necessitatibus."], ["date", "2020-05-06 18:38:38.417846"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.418548"], ["updated_at", "2020-05-05 18:38:38.418548"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit et velit consectetur?"], ["description", "Libero ut molestiae facere."], ["date", "2020-05-06 18:38:38.420035"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.421362"], ["updated_at", "2020-05-05 18:38:38.421362"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur tenetur unde est?"], ["description", "Quia quos nulla ab."], ["date", "2020-05-06 18:38:38.422745"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.423551"], ["updated_at", "2020-05-05 18:38:38.423551"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil nemo deleniti modi?"], ["description", "Labore id quo dicta."], ["date", "2020-05-06 18:38:38.424764"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.425451"], ["updated_at", "2020-05-05 18:38:38.425451"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat delectus animi modi?"], ["description", "Magni dolores eius deleniti."], ["date", "2020-05-06 18:38:38.426622"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.427395"], ["updated_at", "2020-05-05 18:38:38.427395"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus dolor quos numquam?"], ["description", "Ullam placeat non nobis."], ["date", "2020-05-06 18:38:38.429102"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.430046"], ["updated_at", "2020-05-05 18:38:38.430046"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis qui nesciunt minus?"], ["description", "Aut dolorum fugit debitis."], ["date", "2020-05-06 18:38:38.431424"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.432097"], ["updated_at", "2020-05-05 18:38:38.432097"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid voluptatum architecto aut?"], ["description", "Fugit aliquid repudiandae numquam."], ["date", "2020-05-06 18:38:38.433301"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.433949"], ["updated_at", "2020-05-05 18:38:38.433949"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe ea temporibus rerum?"], ["description", "Consequuntur ut maxime qui."], ["date", "2020-05-06 18:38:38.435329"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.436069"], ["updated_at", "2020-05-05 18:38:38.436069"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:38:38 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 509) +  (0.6ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Broderick Paucek"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OIIhVlgEbZW2AKqXhP8hl.nU5QEAODXUVvwETTHPSg6ICnY1HwoF2"], ["created_at", "2020-05-05 18:38:38.454172"], ["updated_at", "2020-05-05 18:38:38.454172"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloremque"], ["description", "Excepturi est cum recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:38.457173"], ["updated_at", "2020-05-05 18:38:38.457173"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus sunt quibusdam soluta?"], ["description", "Qui numquam sequi praesentium."], ["date", "2020-05-06 18:38:38.458641"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.459604"], ["updated_at", "2020-05-05 18:38:38.459604"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus velit officia exercitationem?"], ["description", "Natus sed quisquam iusto."], ["date", "2020-05-06 18:38:38.461924"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.464269"], ["updated_at", "2020-05-05 18:38:38.464269"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est repellat eligendi quibusdam?"], ["description", "Deserunt consequatur eos facere."], ["date", "2020-05-06 18:38:38.466670"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.467726"], ["updated_at", "2020-05-05 18:38:38.467726"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse minus dolores sed?"], ["description", "Voluptate cupiditate consequatur aut."], ["date", "2020-05-06 18:38:38.469874"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.470947"], ["updated_at", "2020-05-05 18:38:38.470947"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae voluptas corporis optio?"], ["description", "Dignissimos quia vel corporis."], ["date", "2020-05-06 18:38:38.472542"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.473473"], ["updated_at", "2020-05-05 18:38:38.473473"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quod aut odit?"], ["description", "Impedit id corrupti nobis."], ["date", "2020-05-06 18:38:38.475020"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.476071"], ["updated_at", "2020-05-05 18:38:38.476071"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptate cupiditate tempore laborum?"], ["description", "Atque praesentium aspernatur occaecati."], ["date", "2020-05-06 18:38:38.477471"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.478236"], ["updated_at", "2020-05-05 18:38:38.478236"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique incidunt saepe et?"], ["description", "Animi placeat itaque aliquid."], ["date", "2020-05-06 18:38:38.479480"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.480699"], ["updated_at", "2020-05-05 18:38:38.480699"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro dolorem totam ex?"], ["description", "Quisquam ducimus consectetur est."], ["date", "2020-05-06 18:38:38.482762"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.484209"], ["updated_at", "2020-05-05 18:38:38.484209"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis alias et ullam?"], ["description", "Animi id id nulla."], ["date", "2020-05-06 18:38:38.486401"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.487284"], ["updated_at", "2020-05-05 18:38:38.487284"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos placeat porro aut?"], ["description", "Veniam nostrum dignissimos eveniet."], ["date", "2020-05-06 18:38:38.488521"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.489213"], ["updated_at", "2020-05-05 18:38:38.489213"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis rem placeat minima?"], ["description", "Earum voluptates tempore cupiditate."], ["date", "2020-05-06 18:38:38.490380"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.491055"], ["updated_at", "2020-05-05 18:38:38.491055"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut omnis sint consequatur?"], ["description", "Et odit sit dignissimos."], ["date", "2020-05-06 18:38:38.492350"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.493076"], ["updated_at", "2020-05-05 18:38:38.493076"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et sed iste eos?"], ["description", "Et nemo fuga occaecati."], ["date", "2020-05-06 18:38:38.494305"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.495221"], ["updated_at", "2020-05-05 18:38:38.495221"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam officia magni et?"], ["description", "Ullam voluptates laborum nulla."], ["date", "2020-05-06 18:38:38.497037"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.497906"], ["updated_at", "2020-05-05 18:38:38.497906"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et impedit ut vitae?"], ["description", "Qui dolor sit sed."], ["date", "2020-05-06 18:38:38.499066"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.499924"], ["updated_at", "2020-05-05 18:38:38.499924"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro occaecati qui veniam?"], ["description", "Reiciendis autem dolore nesciunt."], ["date", "2020-05-06 18:38:38.501693"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.502672"], ["updated_at", "2020-05-05 18:38:38.502672"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor mollitia excepturi dolorem?"], ["description", "Magni aut expedita aut."], ["date", "2020-05-06 18:38:38.504276"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.505075"], ["updated_at", "2020-05-05 18:38:38.505075"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas voluptatum magnam consequatur?"], ["description", "Deserunt et eos nihil."], ["date", "2020-05-06 18:38:38.506446"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.507234"], ["updated_at", "2020-05-05 18:38:38.507234"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam pariatur quod at?"], ["description", "Et at dolor sit."], ["date", "2020-05-06 18:38:38.508596"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.509298"], ["updated_at", "2020-05-05 18:38:38.509298"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:38:38 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.68ms) +Completed 200 OK in 4ms (Views: 1.1ms | ActiveRecord: 0.3ms | Allocations: 1086) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sunny Osinski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$lb3HoTsEZLbm5fNesUTpPeJQKSd3bHfYgdSE.A7q0uj8irusPmJxC"], ["created_at", "2020-05-05 18:38:38.528899"], ["updated_at", "2020-05-05 18:38:38.528899"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Aut eaque repudiandae aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:38.532163"], ["updated_at", "2020-05-05 18:38:38.532163"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia et saepe qui?"], ["description", "Voluptatem est corrupti illo."], ["date", "2020-05-06 18:38:38.533792"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.534734"], ["updated_at", "2020-05-05 18:38:38.534734"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti sapiente magnam rerum?"], ["description", "Eos ea tempore deleniti."], ["date", "2020-05-06 18:38:38.536183"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.536984"], ["updated_at", "2020-05-05 18:38:38.536984"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At perspiciatis iure quas?"], ["description", "Sapiente ex adipisci quo."], ["date", "2020-05-06 18:38:38.538330"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.539031"], ["updated_at", "2020-05-05 18:38:38.539031"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque et hic omnis?"], ["description", "Alias blanditiis sed qui."], ["date", "2020-05-06 18:38:38.540278"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.541899"], ["updated_at", "2020-05-05 18:38:38.541899"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non quisquam mollitia non?"], ["description", "Quis commodi occaecati voluptate."], ["date", "2020-05-06 18:38:38.543531"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.545219"], ["updated_at", "2020-05-05 18:38:38.545219"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam iure velit autem?"], ["description", "Consequatur quas in quos."], ["date", "2020-05-06 18:38:38.547024"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.547973"], ["updated_at", "2020-05-05 18:38:38.547973"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio iste cupiditate eum?"], ["description", "Aut sed est recusandae."], ["date", "2020-05-06 18:38:38.549150"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.549853"], ["updated_at", "2020-05-05 18:38:38.549853"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et velit illo sapiente?"], ["description", "Accusantium veniam quis ex."], ["date", "2020-05-06 18:38:38.550966"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.551654"], ["updated_at", "2020-05-05 18:38:38.551654"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam velit rem temporibus?"], ["description", "Maiores nulla sed aspernatur."], ["date", "2020-05-06 18:38:38.552803"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.553479"], ["updated_at", "2020-05-05 18:38:38.553479"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel sed vero illum?"], ["description", "Neque sequi animi reprehenderit."], ["date", "2020-05-06 18:38:38.555309"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.556073"], ["updated_at", "2020-05-05 18:38:38.556073"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur ab et ad?"], ["description", "Esse eaque recusandae maiores."], ["date", "2020-05-06 18:38:38.557441"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.558354"], ["updated_at", "2020-05-05 18:38:38.558354"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias cum consequatur et?"], ["description", "Eligendi repellat ad dolores."], ["date", "2020-05-06 18:38:38.560055"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.563175"], ["updated_at", "2020-05-05 18:38:38.563175"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus et vero eligendi?"], ["description", "Ullam aspernatur sequi excepturi."], ["date", "2020-05-06 18:38:38.565089"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.566066"], ["updated_at", "2020-05-05 18:38:38.566066"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa quas consequatur in?"], ["description", "Consequatur magni dolor delectus."], ["date", "2020-05-06 18:38:38.567949"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.569002"], ["updated_at", "2020-05-05 18:38:38.569002"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias quasi quia consequatur?"], ["description", "Maiores voluptates quaerat ipsa."], ["date", "2020-05-06 18:38:38.570523"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.571361"], ["updated_at", "2020-05-05 18:38:38.571361"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam voluptatem reprehenderit quos?"], ["description", "Perferendis tenetur mollitia voluptatem."], ["date", "2020-05-06 18:38:38.572775"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.573583"], ["updated_at", "2020-05-05 18:38:38.573583"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui dolor ipsa ratione?"], ["description", "Qui vitae laboriosam aut."], ["date", "2020-05-06 18:38:38.574947"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.575755"], ["updated_at", "2020-05-05 18:38:38.575755"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt consequuntur aperiam beatae?"], ["description", "Accusantium totam sed pariatur."], ["date", "2020-05-06 18:38:38.577554"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.579251"], ["updated_at", "2020-05-05 18:38:38.579251"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas eaque maiores hic?"], ["description", "Quis eligendi eveniet non."], ["date", "2020-05-06 18:38:38.581957"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.583157"], ["updated_at", "2020-05-05 18:38:38.583157"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore ipsam omnis et?"], ["description", "Error reprehenderit et explicabo."], ["date", "2020-05-06 18:38:38.584627"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.585408"], ["updated_at", "2020-05-05 18:38:38.585408"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:38:38 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.7ms) +Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.2ms | Allocations: 1057) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.9ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Stephani Aufderhar III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nBISs4L/0ZhyXN1B4cnH6efkpMPg7dZlNJ8LdTtx.ggsvZhQdq3Ua"], ["created_at", "2020-05-05 18:38:38.604494"], ["updated_at", "2020-05-05 18:38:38.604494"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deserunt"], ["description", "Id sit et explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:38.608490"], ["updated_at", "2020-05-05 18:38:38.608490"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo qui nihil odit?"], ["description", "Mollitia repudiandae ab voluptatibus."], ["date", "2020-05-06 18:38:38.610160"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.611110"], ["updated_at", "2020-05-05 18:38:38.611110"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est cupiditate accusamus et?"], ["description", "Veniam provident illo iusto."], ["date", "2020-05-06 18:38:38.612972"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.614199"], ["updated_at", "2020-05-05 18:38:38.614199"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus eos sapiente officiis?"], ["description", "Non reiciendis voluptatum veritatis."], ["date", "2020-05-06 18:38:38.615657"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.616557"], ["updated_at", "2020-05-05 18:38:38.616557"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem quam non non?"], ["description", "Omnis vel eos fuga."], ["date", "2020-05-06 18:38:38.617874"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.618723"], ["updated_at", "2020-05-05 18:38:38.618723"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.8ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores et laborum in?"], ["description", "Doloremque temporibus dolores iure."], ["date", "2020-05-06 18:38:38.620134"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.623830"], ["updated_at", "2020-05-05 18:38:38.623830"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores nobis nam et?"], ["description", "Est saepe iste est."], ["date", "2020-05-06 18:38:38.625773"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.626775"], ["updated_at", "2020-05-05 18:38:38.626775"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae nulla culpa et?"], ["description", "Voluptatibus aut quod soluta."], ["date", "2020-05-06 18:38:38.628395"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.629583"], ["updated_at", "2020-05-05 18:38:38.629583"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero sit repellendus ipsam?"], ["description", "Saepe dolorem esse natus."], ["date", "2020-05-06 18:38:38.631061"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.631907"], ["updated_at", "2020-05-05 18:38:38.631907"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet ut minima maxime?"], ["description", "Molestias incidunt totam cum."], ["date", "2020-05-06 18:38:38.633367"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.634153"], ["updated_at", "2020-05-05 18:38:38.634153"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis eligendi magni sint?"], ["description", "Enim totam est id."], ["date", "2020-05-06 18:38:38.636015"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.636882"], ["updated_at", "2020-05-05 18:38:38.636882"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis aperiam laborum hic?"], ["description", "Est at ducimus est."], ["date", "2020-05-06 18:38:38.638213"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.639048"], ["updated_at", "2020-05-05 18:38:38.639048"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim pariatur inventore minima?"], ["description", "Minus in ipsa qui."], ["date", "2020-05-06 18:38:38.640422"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.641528"], ["updated_at", "2020-05-05 18:38:38.641528"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et consequatur et amet?"], ["description", "Cupiditate est itaque quia."], ["date", "2020-05-06 18:38:38.643614"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.646472"], ["updated_at", "2020-05-05 18:38:38.646472"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique esse nisi ut?"], ["description", "Aut officia ullam accusamus."], ["date", "2020-05-06 18:38:38.648089"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.649012"], ["updated_at", "2020-05-05 18:38:38.649012"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Unde quidem qui sunt?"], ["description", "Itaque velit quo voluptatem."], ["date", "2020-05-06 18:38:38.650370"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.651133"], ["updated_at", "2020-05-05 18:38:38.651133"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo omnis corrupti inventore?"], ["description", "In impedit eaque explicabo."], ["date", "2020-05-06 18:38:38.652431"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.653216"], ["updated_at", "2020-05-05 18:38:38.653216"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique voluptate cupiditate rerum?"], ["description", "Voluptate perspiciatis vel explicabo."], ["date", "2020-05-06 18:38:38.654515"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.655276"], ["updated_at", "2020-05-05 18:38:38.655276"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum odit libero magnam?"], ["description", "Ad consequuntur ex eligendi."], ["date", "2020-05-06 18:38:38.656881"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.657758"], ["updated_at", "2020-05-05 18:38:38.657758"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et id delectus voluptatem?"], ["description", "Eos qui eveniet sunt."], ["date", "2020-05-06 18:38:38.659143"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.659971"], ["updated_at", "2020-05-05 18:38:38.659971"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex ullam similique omnis?"], ["description", "Recusandae saepe molestiae aspernatur."], ["date", "2020-05-06 18:38:38.664679"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.665913"], ["updated_at", "2020-05-05 18:38:38.665913"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:38:38 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 884) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Raul Rolfson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WLEvVepuRCZ6z5IwfNH86.YbPXAXSzt.AvA0bw7NiWWRSegMhuq8m"], ["created_at", "2020-05-05 18:38:38.681520"], ["updated_at", "2020-05-05 18:38:38.681520"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Asperiores odit pariatur architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:38.685811"], ["updated_at", "2020-05-05 18:38:38.685811"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo qui magnam nihil?"], ["description", "Saepe iste illum qui."], ["date", "2020-05-06 18:38:38.687936"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.688984"], ["updated_at", "2020-05-05 18:38:38.688984"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem excepturi distinctio quos?"], ["description", "Qui quam voluptas molestias."], ["date", "2020-05-06 18:38:38.690441"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.691280"], ["updated_at", "2020-05-05 18:38:38.691280"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta veniam nihil fugit?"], ["description", "Corrupti est cumque laboriosam."], ["date", "2020-05-06 18:38:38.692541"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.693379"], ["updated_at", "2020-05-05 18:38:38.693379"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Hic nihil iusto qui?"], ["description", "Ut minus eos officia."], ["date", "2020-05-06 18:38:38.695681"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.696774"], ["updated_at", "2020-05-05 18:38:38.696774"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum omnis quia tempore?"], ["description", "Omnis doloribus iure repellat."], ["date", "2020-05-06 18:38:38.698075"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.699014"], ["updated_at", "2020-05-05 18:38:38.699014"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque quia mollitia odit?"], ["description", "Quas et excepturi autem."], ["date", "2020-05-06 18:38:38.700276"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.701572"], ["updated_at", "2020-05-05 18:38:38.701572"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda sint dolore id?"], ["description", "Consequatur modi sapiente in."], ["date", "2020-05-06 18:38:38.703947"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.705392"], ["updated_at", "2020-05-05 18:38:38.705392"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos qui sunt consequatur?"], ["description", "Fuga dolorum deleniti voluptatem."], ["date", "2020-05-06 18:38:38.707433"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.708460"], ["updated_at", "2020-05-05 18:38:38.708460"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio dolorum quis dolore?"], ["description", "Eligendi et veritatis quas."], ["date", "2020-05-06 18:38:38.709888"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.710693"], ["updated_at", "2020-05-05 18:38:38.710693"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae porro aut vel?"], ["description", "Minima fuga corrupti recusandae."], ["date", "2020-05-06 18:38:38.714012"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.715850"], ["updated_at", "2020-05-05 18:38:38.715850"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt qui nesciunt dicta?"], ["description", "In esse dolore deleniti."], ["date", "2020-05-06 18:38:38.717591"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.718442"], ["updated_at", "2020-05-05 18:38:38.718442"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam doloribus nemo blanditiis?"], ["description", "Impedit magnam veniam et."], ["date", "2020-05-06 18:38:38.719650"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.720371"], ["updated_at", "2020-05-05 18:38:38.720371"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos sed maiores id?"], ["description", "Eius error est sed."], ["date", "2020-05-06 18:38:38.722278"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.723758"], ["updated_at", "2020-05-05 18:38:38.723758"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit libero et dolorem?"], ["description", "Quia provident et tenetur."], ["date", "2020-05-06 18:38:38.725291"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.726029"], ["updated_at", "2020-05-05 18:38:38.726029"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta harum laborum dolor?"], ["description", "Possimus minus corporis facilis."], ["date", "2020-05-06 18:38:38.727393"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.728663"], ["updated_at", "2020-05-05 18:38:38.728663"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit sit est eos?"], ["description", "Ipsa incidunt fugit rerum."], ["date", "2020-05-06 18:38:38.730336"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.731203"], ["updated_at", "2020-05-05 18:38:38.731203"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora corporis fuga omnis?"], ["description", "Molestias et fuga possimus."], ["date", "2020-05-06 18:38:38.732468"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.733204"], ["updated_at", "2020-05-05 18:38:38.733204"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae nemo in ipsam?"], ["description", "Vitae delectus provident beatae."], ["date", "2020-05-06 18:38:38.734381"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.735063"], ["updated_at", "2020-05-05 18:38:38.735063"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi ea est excepturi?"], ["description", "Quam corporis iste voluptates."], ["date", "2020-05-06 18:38:38.736265"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.736984"], ["updated_at", "2020-05-05 18:38:38.736984"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti dolor distinctio corrupti?"], ["description", "Nihil ipsa ullam neque."], ["date", "2020-05-06 18:38:38.738176"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.738865"], ["updated_at", "2020-05-05 18:38:38.738865"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:38:38 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 404 Not Found in 4ms (Views: 0.6ms | ActiveRecord: 0.4ms | Allocations: 867) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ian Lindgren PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mkxgWDtks2p8H0DtFSNbKO8O5gfdfiBrOiLEf3bl16/G7yjDL0Q0W"], ["created_at", "2020-05-05 18:38:38.755197"], ["updated_at", "2020-05-05 18:38:38.755197"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cupiditate"], ["description", "Eius et at veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:38.758072"], ["updated_at", "2020-05-05 18:38:38.758072"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt autem vel voluptas?"], ["description", "Quidem omnis voluptate repudiandae."], ["date", "2020-05-06 18:38:38.759561"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.760486"], ["updated_at", "2020-05-05 18:38:38.760486"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim odit culpa aliquam?"], ["description", "Hic atque incidunt et."], ["date", "2020-05-06 18:38:38.762436"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.764559"], ["updated_at", "2020-05-05 18:38:38.764559"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit quaerat facilis excepturi?"], ["description", "Sed praesentium repudiandae harum."], ["date", "2020-05-06 18:38:38.766594"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.767944"], ["updated_at", "2020-05-05 18:38:38.767944"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia enim deserunt consequatur?"], ["description", "Ut aut dolorum laboriosam."], ["date", "2020-05-06 18:38:38.769357"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.770106"], ["updated_at", "2020-05-05 18:38:38.770106"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et voluptatem fugit ea?"], ["description", "Est sint expedita quis."], ["date", "2020-05-06 18:38:38.771239"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.771915"], ["updated_at", "2020-05-05 18:38:38.771915"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut sed minus cum?"], ["description", "Expedita assumenda impedit sint."], ["date", "2020-05-06 18:38:38.773073"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.773757"], ["updated_at", "2020-05-05 18:38:38.773757"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita dolorem quis et?"], ["description", "Et ea debitis est."], ["date", "2020-05-06 18:38:38.774850"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.775536"], ["updated_at", "2020-05-05 18:38:38.775536"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id facere dolorem nesciunt?"], ["description", "Dolorem assumenda maxime qui."], ["date", "2020-05-06 18:38:38.776725"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.777512"], ["updated_at", "2020-05-05 18:38:38.777512"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut porro repellat ex?"], ["description", "Numquam deleniti esse quaerat."], ["date", "2020-05-06 18:38:38.779153"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.780077"], ["updated_at", "2020-05-05 18:38:38.780077"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum repellendus nihil numquam?"], ["description", "Beatae commodi consequatur a."], ["date", "2020-05-06 18:38:38.782741"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.784359"], ["updated_at", "2020-05-05 18:38:38.784359"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et hic et nulla?"], ["description", "Quis numquam optio iste."], ["date", "2020-05-06 18:38:38.786427"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.787383"], ["updated_at", "2020-05-05 18:38:38.787383"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt aut et voluptatem?"], ["description", "Quia perferendis fugit voluptate."], ["date", "2020-05-06 18:38:38.788666"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.789361"], ["updated_at", "2020-05-05 18:38:38.789361"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Culpa quia aut ex?"], ["description", "Dolores nihil ipsam dolore."], ["date", "2020-05-06 18:38:38.790496"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.791165"], ["updated_at", "2020-05-05 18:38:38.791165"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor dolorum sed est?"], ["description", "Similique nihil fugiat ipsum."], ["date", "2020-05-06 18:38:38.792302"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.792960"], ["updated_at", "2020-05-05 18:38:38.792960"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus voluptas dolorem quasi?"], ["description", "Quia delectus eligendi debitis."], ["date", "2020-05-06 18:38:38.794626"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.795671"], ["updated_at", "2020-05-05 18:38:38.795671"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis qui iure deserunt?"], ["description", "Adipisci perspiciatis placeat ipsa."], ["date", "2020-05-06 18:38:38.797186"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.797951"], ["updated_at", "2020-05-05 18:38:38.797951"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio cumque et iste?"], ["description", "Quae ut repudiandae unde."], ["date", "2020-05-06 18:38:38.799128"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.799810"], ["updated_at", "2020-05-05 18:38:38.799810"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed accusantium vitae praesentium?"], ["description", "Mollitia ut ut asperiores."], ["date", "2020-05-06 18:38:38.801015"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.801866"], ["updated_at", "2020-05-05 18:38:38.801866"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et et est esse?"], ["description", "Adipisci et eius cum."], ["date", "2020-05-06 18:38:38.803895"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.804828"], ["updated_at", "2020-05-05 18:38:38.804828"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda aut aspernatur eos?"], ["description", "Repellat exercitationem porro quo."], ["date", "2020-05-06 18:38:38.806334"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.807125"], ["updated_at", "2020-05-05 18:38:38.807125"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:38:38 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"title"=>"Visit Narnia", "description"=>"false", "date"=>"2020-05-06 15:38:38 -0300", "link"=>"https://zoom.com/fakelink", "meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Visit Narnia"], ["description", "false"], ["date", "2020-05-06 18:38:38"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.826605"], ["updated_at", "2020-05-05 18:38:38.826605"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.71ms) +Completed 201 Created in 5ms (Views: 1.5ms | ActiveRecord: 0.4ms | Allocations: 1664) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (46.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.0ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Quincy Harvey"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VWzwYnCzi6CaZHTPKn8UpuLIvpz./MWOO2O4keLq0Uut1yoAGP5Iy"], ["created_at", "2020-05-05 18:38:38.881323"], ["updated_at", "2020-05-05 18:38:38.881323"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quaerat"], ["description", "Dolores reiciendis molestiae qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:38.885932"], ["updated_at", "2020-05-05 18:38:38.885932"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni aut quo quis?"], ["description", "Iure minus sint qui."], ["date", "2020-05-06 18:38:38.887817"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.888790"], ["updated_at", "2020-05-05 18:38:38.888790"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Hic perferendis qui vitae?"], ["description", "Quod quibusdam ad et."], ["date", "2020-05-06 18:38:38.890118"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.890815"], ["updated_at", "2020-05-05 18:38:38.890815"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque vero molestiae eligendi?"], ["description", "Voluptatem dicta labore reiciendis."], ["date", "2020-05-06 18:38:38.891950"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.892618"], ["updated_at", "2020-05-05 18:38:38.892618"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum eum fugiat omnis?"], ["description", "In non nihil sed."], ["date", "2020-05-06 18:38:38.893790"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.894868"], ["updated_at", "2020-05-05 18:38:38.894868"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo corrupti cum est?"], ["description", "Explicabo expedita ea qui."], ["date", "2020-05-06 18:38:38.896431"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.897373"], ["updated_at", "2020-05-05 18:38:38.897373"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur veritatis perferendis quia?"], ["description", "Sunt tempora sed nam."], ["date", "2020-05-06 18:38:38.898599"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.899265"], ["updated_at", "2020-05-05 18:38:38.899265"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores fuga ut provident?"], ["description", "Necessitatibus et dolorem voluptatem."], ["date", "2020-05-06 18:38:38.900432"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.901109"], ["updated_at", "2020-05-05 18:38:38.901109"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi aut veritatis est?"], ["description", "Explicabo a eligendi consequuntur."], ["date", "2020-05-06 18:38:38.902632"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.904620"], ["updated_at", "2020-05-05 18:38:38.904620"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur non sit ut?"], ["description", "Doloribus tempora sunt cum."], ["date", "2020-05-06 18:38:38.906716"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.907674"], ["updated_at", "2020-05-05 18:38:38.907674"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid consequatur similique dolor?"], ["description", "Ut aut eos ea."], ["date", "2020-05-06 18:38:38.909630"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.910421"], ["updated_at", "2020-05-05 18:38:38.910421"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum incidunt dolorem voluptatum?"], ["description", "Nam quae ab dolores."], ["date", "2020-05-06 18:38:38.911681"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.912678"], ["updated_at", "2020-05-05 18:38:38.912678"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore sint excepturi vel?"], ["description", "Sunt quo sit ullam."], ["date", "2020-05-06 18:38:38.914614"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.915542"], ["updated_at", "2020-05-05 18:38:38.915542"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem deleniti repudiandae illo?"], ["description", "Et aut repellat architecto."], ["date", "2020-05-06 18:38:38.916835"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.917554"], ["updated_at", "2020-05-05 18:38:38.917554"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem sunt sunt cupiditate?"], ["description", "Et vitae dicta beatae."], ["date", "2020-05-06 18:38:38.918858"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.919556"], ["updated_at", "2020-05-05 18:38:38.919556"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est accusantium officiis totam?"], ["description", "Laudantium explicabo et qui."], ["date", "2020-05-06 18:38:38.920768"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.921467"], ["updated_at", "2020-05-05 18:38:38.921467"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut voluptas praesentium voluptatem?"], ["description", "Aut nemo ea dolorum."], ["date", "2020-05-06 18:38:38.922713"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.923911"], ["updated_at", "2020-05-05 18:38:38.923911"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur quos accusantium est?"], ["description", "Vel veritatis et quidem."], ["date", "2020-05-06 18:38:38.925474"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.926306"], ["updated_at", "2020-05-05 18:38:38.926306"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et tenetur magnam non?"], ["description", "Maiores distinctio provident numquam."], ["date", "2020-05-06 18:38:38.927748"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.929027"], ["updated_at", "2020-05-05 18:38:38.929027"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias sed voluptatem et?"], ["description", "Omnis illo amet et."], ["date", "2020-05-06 18:38:38.930553"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.931362"], ["updated_at", "2020-05-05 18:38:38.931362"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A explicabo aperiam aut?"], ["description", "In aliquam eum suscipit."], ["date", "2020-05-06 18:38:38.932559"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.933224"], ["updated_at", "2020-05-05 18:38:38.933224"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:38:38 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3010) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marisela Deckow MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0lYCdORaW19Wb20Z2rYHSOvCpOG0cDaMBBe/r6DkmrgI.ve84rt.2"], ["created_at", "2020-05-05 18:38:38.951157"], ["updated_at", "2020-05-05 18:38:38.951157"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Ab sint quia doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:38.954002"], ["updated_at", "2020-05-05 18:38:38.954002"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere ut fugiat quo?"], ["description", "Consequatur qui voluptas non."], ["date", "2020-05-06 18:38:38.955464"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.956412"], ["updated_at", "2020-05-05 18:38:38.956412"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui et nulla repellendus?"], ["description", "Quod a eos qui."], ["date", "2020-05-06 18:38:38.957827"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.958572"], ["updated_at", "2020-05-05 18:38:38.958572"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod optio est in?"], ["description", "Dolorem dolorem magnam ut."], ["date", "2020-05-06 18:38:38.959774"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.960456"], ["updated_at", "2020-05-05 18:38:38.960456"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint non temporibus harum?"], ["description", "Voluptas nemo enim vel."], ["date", "2020-05-06 18:38:38.961616"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.963162"], ["updated_at", "2020-05-05 18:38:38.963162"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta repellat perferendis molestias?"], ["description", "Ea sed eos labore."], ["date", "2020-05-06 18:38:38.965481"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.966809"], ["updated_at", "2020-05-05 18:38:38.966809"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit aut possimus ea?"], ["description", "Et saepe numquam qui."], ["date", "2020-05-06 18:38:38.968490"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.969343"], ["updated_at", "2020-05-05 18:38:38.969343"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos quia ducimus itaque?"], ["description", "Inventore culpa quia ab."], ["date", "2020-05-06 18:38:38.970475"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.971171"], ["updated_at", "2020-05-05 18:38:38.971171"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis non sint unde?"], ["description", "Labore assumenda quia et."], ["date", "2020-05-06 18:38:38.972266"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.972939"], ["updated_at", "2020-05-05 18:38:38.972939"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione voluptatem iste molestias?"], ["description", "Praesentium odio suscipit expedita."], ["date", "2020-05-06 18:38:38.974071"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.974752"], ["updated_at", "2020-05-05 18:38:38.974752"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus eum id dolorem?"], ["description", "Quaerat aut magnam ut."], ["date", "2020-05-06 18:38:38.976639"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.977423"], ["updated_at", "2020-05-05 18:38:38.977423"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non architecto unde atque?"], ["description", "Ut dolorem voluptatem facere."], ["date", "2020-05-06 18:38:38.979234"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.980264"], ["updated_at", "2020-05-05 18:38:38.980264"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut ipsum aperiam a?"], ["description", "Aperiam quis ut consequatur."], ["date", "2020-05-06 18:38:38.981739"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.982700"], ["updated_at", "2020-05-05 18:38:38.982700"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto et rem vel?"], ["description", "Omnis ipsa porro itaque."], ["date", "2020-05-06 18:38:38.984517"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.985506"], ["updated_at", "2020-05-05 18:38:38.985506"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est sed est ut?"], ["description", "Maxime voluptas aspernatur blanditiis."], ["date", "2020-05-06 18:38:38.987055"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.987845"], ["updated_at", "2020-05-05 18:38:38.987845"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis a vel sit?"], ["description", "Sint quisquam ipsam esse."], ["date", "2020-05-06 18:38:38.989017"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.989693"], ["updated_at", "2020-05-05 18:38:38.989693"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugiat incidunt quam assumenda?"], ["description", "Non porro voluptatem ex."], ["date", "2020-05-06 18:38:38.990917"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:38.991641"], ["updated_at", "2020-05-05 18:38:38.991641"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident incidunt cupiditate enim?"], ["description", "Autem consequatur est a."], ["date", "2020-05-06 18:38:39.008458"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.009384"], ["updated_at", "2020-05-05 18:38:39.009384"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis eligendi provident aut?"], ["description", "Sit sequi consequuntur quod."], ["date", "2020-05-06 18:38:39.010680"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.011385"], ["updated_at", "2020-05-05 18:38:39.011385"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error aspernatur eos voluptas?"], ["description", "Enim et et nemo."], ["date", "2020-05-06 18:38:39.013156"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.014194"], ["updated_at", "2020-05-05 18:38:39.014194"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Unde explicabo animi optio?"], ["description", "Nulla laborum neque ducimus."], ["date", "2020-05-06 18:38:39.015612"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.016380"], ["updated_at", "2020-05-05 18:38:39.016380"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 422 Unprocessable Entity in 4ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 2705) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Eliseo Herzog III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ji0061R/P15G6rqI2SbnH.co8At9o44Fsdx.e1k3Wi9ZlcUqiWAEy"], ["created_at", "2020-05-05 18:38:39.033717"], ["updated_at", "2020-05-05 18:38:39.033717"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "temporibus"], ["description", "Ex reiciendis consequatur saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.037379"], ["updated_at", "2020-05-05 18:38:39.037379"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est eveniet placeat at?"], ["description", "In et delectus ad."], ["date", "2020-05-06 18:38:39.038954"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.039925"], ["updated_at", "2020-05-05 18:38:39.039925"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut nisi alias sit?"], ["description", "Delectus tenetur quia animi."], ["date", "2020-05-06 18:38:39.041183"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.041901"], ["updated_at", "2020-05-05 18:38:39.041901"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.6ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio eos debitis in?"], ["description", "Enim nobis dolor ratione."], ["date", "2020-05-06 18:38:39.043240"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.046287"], ["updated_at", "2020-05-05 18:38:39.046287"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur sit corrupti doloremque?"], ["description", "Corrupti voluptate inventore quisquam."], ["date", "2020-05-06 18:38:39.048410"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.049345"], ["updated_at", "2020-05-05 18:38:39.049345"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae exercitationem amet est?"], ["description", "Est sit est fugiat."], ["date", "2020-05-06 18:38:39.050588"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.051253"], ["updated_at", "2020-05-05 18:38:39.051253"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus odit voluptate numquam?"], ["description", "Et praesentium dolore dolores."], ["date", "2020-05-06 18:38:39.052421"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.053143"], ["updated_at", "2020-05-05 18:38:39.053143"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et nihil voluptatem ut?"], ["description", "Dolorem nihil est accusamus."], ["date", "2020-05-06 18:38:39.054255"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.054946"], ["updated_at", "2020-05-05 18:38:39.054946"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit voluptate reiciendis nostrum?"], ["description", "Odio qui nulla repellendus."], ["date", "2020-05-06 18:38:39.056202"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.056964"], ["updated_at", "2020-05-05 18:38:39.056964"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit ipsum impedit perspiciatis?"], ["description", "Eos accusantium modi expedita."], ["date", "2020-05-06 18:38:39.058279"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.059040"], ["updated_at", "2020-05-05 18:38:39.059040"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur deserunt earum voluptas?"], ["description", "Deserunt cumque neque exercitationem."], ["date", "2020-05-06 18:38:39.060845"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.061602"], ["updated_at", "2020-05-05 18:38:39.061602"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus quibusdam fugit soluta?"], ["description", "Et culpa in quod."], ["date", "2020-05-06 18:38:39.064047"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.066384"], ["updated_at", "2020-05-05 18:38:39.066384"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut nisi id nesciunt?"], ["description", "Et unde quod maiores."], ["date", "2020-05-06 18:38:39.068005"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.068867"], ["updated_at", "2020-05-05 18:38:39.068867"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut sit sunt totam?"], ["description", "Magni aut nostrum et."], ["date", "2020-05-06 18:38:39.070443"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.071196"], ["updated_at", "2020-05-05 18:38:39.071196"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui deleniti debitis esse?"], ["description", "Voluptatem repudiandae nisi sed."], ["date", "2020-05-06 18:38:39.072510"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.073256"], ["updated_at", "2020-05-05 18:38:39.073256"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui nostrum et vel?"], ["description", "Ea inventore eligendi provident."], ["date", "2020-05-06 18:38:39.074535"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.075245"], ["updated_at", "2020-05-05 18:38:39.075245"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem sunt qui esse?"], ["description", "Rerum ad eius omnis."], ["date", "2020-05-06 18:38:39.076422"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.077121"], ["updated_at", "2020-05-05 18:38:39.077121"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et accusantium omnis asperiores?"], ["description", "Dolorum ea aut officiis."], ["date", "2020-05-06 18:38:39.078298"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.079040"], ["updated_at", "2020-05-05 18:38:39.079040"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et magnam quae et?"], ["description", "Quasi laboriosam quia dolorem."], ["date", "2020-05-06 18:38:39.080118"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.080840"], ["updated_at", "2020-05-05 18:38:39.080840"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi quia facere odio?"], ["description", "Ipsam consequatur rerum debitis."], ["date", "2020-05-06 18:38:39.082002"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.082740"], ["updated_at", "2020-05-05 18:38:39.082740"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure et nihil optio?"], ["description", "Nihil dolorem laboriosam quos."], ["date", "2020-05-06 18:38:39.084582"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.085765"], ["updated_at", "2020-05-05 18:38:39.085765"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.0ms) SAVEPOINT active_record_2 + Meeting Update (0.1ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:38:39.090287"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1395) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Taylor Ritchie"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GrRwUzjCmz87aIrWsxH9rueYQAw3jXqcPWGt6IonFEWU3jAXzxk5W"], ["created_at", "2020-05-05 18:38:39.101674"], ["updated_at", "2020-05-05 18:38:39.101674"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugiat"], ["description", "Quaerat rerum animi occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.105493"], ["updated_at", "2020-05-05 18:38:39.105493"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi esse et earum?"], ["description", "Aliquid qui voluptatem et."], ["date", "2020-05-06 18:38:39.107940"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.109059"], ["updated_at", "2020-05-05 18:38:39.109059"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum enim quisquam ea?"], ["description", "Modi impedit consequuntur voluptatem."], ["date", "2020-05-06 18:38:39.110528"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.111254"], ["updated_at", "2020-05-05 18:38:39.111254"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam praesentium dolorem voluptas?"], ["description", "Eligendi modi placeat ut."], ["date", "2020-05-06 18:38:39.113034"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.114242"], ["updated_at", "2020-05-05 18:38:39.114242"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus illo quia ea?"], ["description", "Aliquid aut dolorem nulla."], ["date", "2020-05-06 18:38:39.115736"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.116564"], ["updated_at", "2020-05-05 18:38:39.116564"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint facere iusto eum?"], ["description", "Nostrum mollitia repellat dolore."], ["date", "2020-05-06 18:38:39.117725"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.118395"], ["updated_at", "2020-05-05 18:38:39.118395"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum incidunt non repellendus?"], ["description", "Omnis non consequatur facilis."], ["date", "2020-05-06 18:38:39.119466"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.120125"], ["updated_at", "2020-05-05 18:38:39.120125"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur fugiat architecto autem?"], ["description", "Omnis nesciunt aut vel."], ["date", "2020-05-06 18:38:39.121228"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.121962"], ["updated_at", "2020-05-05 18:38:39.121962"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum nam sint repudiandae?"], ["description", "Dolore ut et nostrum."], ["date", "2020-05-06 18:38:39.123175"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.124323"], ["updated_at", "2020-05-05 18:38:39.124323"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis similique ut rerum?"], ["description", "Adipisci voluptatem et vero."], ["date", "2020-05-06 18:38:39.126694"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.128924"], ["updated_at", "2020-05-05 18:38:39.128924"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus odio nam exercitationem?"], ["description", "Doloremque sed expedita est."], ["date", "2020-05-06 18:38:39.131093"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.131936"], ["updated_at", "2020-05-05 18:38:39.131936"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod aliquam sapiente ea?"], ["description", "Tempora totam corrupti quidem."], ["date", "2020-05-06 18:38:39.133149"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.133837"], ["updated_at", "2020-05-05 18:38:39.133837"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque atque ut aliquid?"], ["description", "Qui modi sapiente commodi."], ["date", "2020-05-06 18:38:39.135039"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.135771"], ["updated_at", "2020-05-05 18:38:39.135771"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut velit sint officiis?"], ["description", "Placeat dolorem libero et."], ["date", "2020-05-06 18:38:39.136959"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.137775"], ["updated_at", "2020-05-05 18:38:39.137775"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error libero ut autem?"], ["description", "Perferendis facere odio optio."], ["date", "2020-05-06 18:38:39.138945"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.139623"], ["updated_at", "2020-05-05 18:38:39.139623"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut omnis ut nobis?"], ["description", "Rerum alias ab ut."], ["date", "2020-05-06 18:38:39.140847"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.141524"], ["updated_at", "2020-05-05 18:38:39.141524"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque est cupiditate occaecati?"], ["description", "Quidem nihil id consectetur."], ["date", "2020-05-06 18:38:39.142717"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.143570"], ["updated_at", "2020-05-05 18:38:39.143570"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed dolores et temporibus?"], ["description", "Eum impedit at incidunt."], ["date", "2020-05-06 18:38:39.146908"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.148487"], ["updated_at", "2020-05-05 18:38:39.148487"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim rem porro voluptatum?"], ["description", "Ut provident aut dolor."], ["date", "2020-05-06 18:38:39.150121"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.150903"], ["updated_at", "2020-05-05 18:38:39.150903"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit qui delectus minus?"], ["description", "Dolorem et ea dicta."], ["date", "2020-05-06 18:38:39.152050"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.152741"], ["updated_at", "2020-05-05 18:38:39.152741"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi unde ipsa quasi?"], ["description", "Libero ab rerum harum."], ["date", "2020-05-06 18:38:39.153943"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.154624"], ["updated_at", "2020-05-05 18:38:39.154624"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.0ms) SAVEPOINT active_record_2 + Meeting Update (0.1ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:38:39.158810"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1321) + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ka Robel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$iGi0oGkddm0Q7CRO2rq2rusmYd2ndQPcxY3CKbdV7554FNJorPo1G"], ["created_at", "2020-05-05 18:38:39.172435"], ["updated_at", "2020-05-05 18:38:39.172435"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deleniti"], ["description", "Veritatis quibusdam nemo ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.175214"], ["updated_at", "2020-05-05 18:38:39.175214"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit ducimus sint officia?"], ["description", "Ipsa exercitationem tenetur aut."], ["date", "2020-05-06 18:38:39.176686"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.177652"], ["updated_at", "2020-05-05 18:38:39.177652"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste nihil labore ducimus?"], ["description", "Tempora est incidunt autem."], ["date", "2020-05-06 18:38:39.179649"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.180644"], ["updated_at", "2020-05-05 18:38:39.180644"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis quasi blanditiis provident?"], ["description", "Quas quaerat deleniti aut."], ["date", "2020-05-06 18:38:39.181968"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.182670"], ["updated_at", "2020-05-05 18:38:39.182670"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam culpa et quia?"], ["description", "Numquam perspiciatis facilis quia."], ["date", "2020-05-06 18:38:39.183855"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.184871"], ["updated_at", "2020-05-05 18:38:39.184871"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel iusto incidunt recusandae?"], ["description", "Consectetur odio est sunt."], ["date", "2020-05-06 18:38:39.186960"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.188094"], ["updated_at", "2020-05-05 18:38:39.188094"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident minima qui eius?"], ["description", "Error occaecati earum perspiciatis."], ["date", "2020-05-06 18:38:39.190162"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.191184"], ["updated_at", "2020-05-05 18:38:39.191184"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid reprehenderit exercitationem officiis?"], ["description", "Rerum qui et vel."], ["date", "2020-05-06 18:38:39.192678"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.193524"], ["updated_at", "2020-05-05 18:38:39.193524"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur ab dolor saepe?"], ["description", "Dolores sequi molestiae sint."], ["date", "2020-05-06 18:38:39.194910"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.196339"], ["updated_at", "2020-05-05 18:38:39.196339"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam similique laboriosam suscipit?"], ["description", "Deserunt ullam voluptatem voluptates."], ["date", "2020-05-06 18:38:39.197801"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.198600"], ["updated_at", "2020-05-05 18:38:39.198600"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim magni sed ullam?"], ["description", "Magnam nostrum qui voluptatum."], ["date", "2020-05-06 18:38:39.200441"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.201194"], ["updated_at", "2020-05-05 18:38:39.201194"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia quos repudiandae nemo?"], ["description", "Quod illum molestiae eligendi."], ["date", "2020-05-06 18:38:39.202426"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.203110"], ["updated_at", "2020-05-05 18:38:39.203110"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A commodi neque officia?"], ["description", "Eos quibusdam iusto maiores."], ["date", "2020-05-06 18:38:39.204457"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.205851"], ["updated_at", "2020-05-05 18:38:39.205851"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut voluptatem est sint?"], ["description", "Iusto placeat sit consectetur."], ["date", "2020-05-06 18:38:39.207361"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.208180"], ["updated_at", "2020-05-05 18:38:39.208180"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae ad provident dolores?"], ["description", "Optio nostrum dolorem aut."], ["date", "2020-05-06 18:38:39.209345"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.210020"], ["updated_at", "2020-05-05 18:38:39.210020"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam unde labore rem?"], ["description", "Rerum et nihil iusto."], ["date", "2020-05-06 18:38:39.211393"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.212587"], ["updated_at", "2020-05-05 18:38:39.212587"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt ad quis id?"], ["description", "Provident aperiam perspiciatis beatae."], ["date", "2020-05-06 18:38:39.214100"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.214876"], ["updated_at", "2020-05-05 18:38:39.214876"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut laudantium et optio?"], ["description", "Voluptatem quia nihil animi."], ["date", "2020-05-06 18:38:39.216069"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.216782"], ["updated_at", "2020-05-05 18:38:39.216782"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi vero nemo voluptatem?"], ["description", "Rerum unde aut sapiente."], ["date", "2020-05-06 18:38:39.217933"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.218612"], ["updated_at", "2020-05-05 18:38:39.218612"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugiat rerum laborum nam?"], ["description", "Enim modi possimus omnis."], ["date", "2020-05-06 18:38:39.219735"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.220401"], ["updated_at", "2020-05-05 18:38:39.220401"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum doloremque ab et?"], ["description", "Distinctio minima reprehenderit aut."], ["date", "2020-05-06 18:38:39.221538"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.222201"], ["updated_at", "2020-05-05 18:38:39.222201"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 404 Not Found in 4ms (Views: 0.7ms | ActiveRecord: 0.3ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rupert Bashirian DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VeOhhrO7gPj5Hz6bggU4C.HZ3FCm7aVzXY8EOnXCRSnRLxs6sSvmi"], ["created_at", "2020-05-05 18:38:39.241132"], ["updated_at", "2020-05-05 18:38:39.241132"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cupiditate"], ["description", "Aliquam in facere ipsa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.244044"], ["updated_at", "2020-05-05 18:38:39.244044"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus tempore sed natus?"], ["description", "Minima voluptate ut voluptatibus."], ["date", "2020-05-06 18:38:39.247855"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.249343"], ["updated_at", "2020-05-05 18:38:39.249343"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium maiores a assumenda?"], ["description", "Ad doloribus aliquid dolores."], ["date", "2020-05-06 18:38:39.251022"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.251867"], ["updated_at", "2020-05-05 18:38:39.251867"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id culpa dignissimos ipsum?"], ["description", "Ab omnis sit numquam."], ["date", "2020-05-06 18:38:39.253109"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.253846"], ["updated_at", "2020-05-05 18:38:39.253846"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non harum veritatis earum?"], ["description", "Ut aut repellendus vitae."], ["date", "2020-05-06 18:38:39.254951"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.255662"], ["updated_at", "2020-05-05 18:38:39.255662"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero consequatur harum earum?"], ["description", "Quis animi ratione voluptatibus."], ["date", "2020-05-06 18:38:39.256864"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.257557"], ["updated_at", "2020-05-05 18:38:39.257557"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum molestiae quis voluptatum?"], ["description", "Ullam nesciunt porro sunt."], ["date", "2020-05-06 18:38:39.258677"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.259362"], ["updated_at", "2020-05-05 18:38:39.259362"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id quo rerum voluptatem?"], ["description", "Perferendis libero eligendi et."], ["date", "2020-05-06 18:38:39.260562"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.261465"], ["updated_at", "2020-05-05 18:38:39.261465"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum sit voluptas voluptas?"], ["description", "Sapiente amet inventore odio."], ["date", "2020-05-06 18:38:39.263431"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.264609"], ["updated_at", "2020-05-05 18:38:39.264609"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem eaque voluptas dolor?"], ["description", "Dicta et iure ab."], ["date", "2020-05-06 18:38:39.267195"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.268697"], ["updated_at", "2020-05-05 18:38:39.268697"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem minima quia a?"], ["description", "Rerum dolores quo sequi."], ["date", "2020-05-06 18:38:39.271084"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.271981"], ["updated_at", "2020-05-05 18:38:39.271981"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod incidunt ut minus?"], ["description", "Sit assumenda esse alias."], ["date", "2020-05-06 18:38:39.273189"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.273880"], ["updated_at", "2020-05-05 18:38:39.273880"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio facilis ea nihil?"], ["description", "Ut quam ut officia."], ["date", "2020-05-06 18:38:39.274990"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.275694"], ["updated_at", "2020-05-05 18:38:39.275694"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed est fuga molestias?"], ["description", "Placeat veniam quaerat dignissimos."], ["date", "2020-05-06 18:38:39.276843"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.277593"], ["updated_at", "2020-05-05 18:38:39.277593"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint quis minus voluptas?"], ["description", "Iusto doloribus unde aperiam."], ["date", "2020-05-06 18:38:39.278788"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.279492"], ["updated_at", "2020-05-05 18:38:39.279492"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam quia sit delectus?"], ["description", "Veritatis modi dolorem itaque."], ["date", "2020-05-06 18:38:39.280557"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.281256"], ["updated_at", "2020-05-05 18:38:39.281256"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit voluptatem dolores et?"], ["description", "Quis beatae nisi omnis."], ["date", "2020-05-06 18:38:39.282362"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.283032"], ["updated_at", "2020-05-05 18:38:39.283032"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae quis quia excepturi?"], ["description", "Repellat voluptatum pariatur est."], ["date", "2020-05-06 18:38:39.284324"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.286218"], ["updated_at", "2020-05-05 18:38:39.286218"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id laboriosam temporibus reprehenderit?"], ["description", "Perspiciatis asperiores molestiae provident."], ["date", "2020-05-06 18:38:39.288068"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.289004"], ["updated_at", "2020-05-05 18:38:39.289004"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum voluptatem animi corrupti?"], ["description", "Quasi possimus sequi omnis."], ["date", "2020-05-06 18:38:39.290403"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.291111"], ["updated_at", "2020-05-05 18:38:39.291111"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt aut dolorum ex?"], ["description", "Ex reprehenderit qui provident."], ["date", "2020-05-06 18:38:39.292294"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.292970"], ["updated_at", "2020-05-05 18:38:39.292970"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 868) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Broderick Corkery"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6bmJHGtCXmuuNAPCqwwJ/uf8JRkA9EZ77q/VmFu/jLGrdfMKfOPe."], ["created_at", "2020-05-05 18:38:39.310012"], ["updated_at", "2020-05-05 18:38:39.310012"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Esse nulla officiis consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.314558"], ["updated_at", "2020-05-05 18:38:39.314558"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt et nesciunt ipsum?"], ["description", "Aut maiores assumenda quia."], ["date", "2020-05-06 18:38:39.316329"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.317340"], ["updated_at", "2020-05-05 18:38:39.317340"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae ipsum sint ducimus?"], ["description", "In et consequuntur ut."], ["date", "2020-05-06 18:38:39.318667"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.319371"], ["updated_at", "2020-05-05 18:38:39.319371"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui quisquam aut assumenda?"], ["description", "Voluptas et consequatur ut."], ["date", "2020-05-06 18:38:39.320500"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.321206"], ["updated_at", "2020-05-05 18:38:39.321206"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam quos hic quod?"], ["description", "Asperiores nihil sunt quia."], ["date", "2020-05-06 18:38:39.322284"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.322954"], ["updated_at", "2020-05-05 18:38:39.322954"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut eum aspernatur earum?"], ["description", "Quo laborum aut eum."], ["date", "2020-05-06 18:38:39.324087"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.325153"], ["updated_at", "2020-05-05 18:38:39.325153"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi deserunt ipsam consequuntur?"], ["description", "Et eum error architecto."], ["date", "2020-05-06 18:38:39.328351"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.329954"], ["updated_at", "2020-05-05 18:38:39.329954"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem aut fuga nesciunt?"], ["description", "Fuga doloremque molestiae minima."], ["date", "2020-05-06 18:38:39.331446"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.332266"], ["updated_at", "2020-05-05 18:38:39.332266"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores nihil porro velit?"], ["description", "Sapiente aliquid quisquam hic."], ["date", "2020-05-06 18:38:39.333353"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.334030"], ["updated_at", "2020-05-05 18:38:39.334030"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Unde itaque facilis a?"], ["description", "Ea consequatur et odio."], ["date", "2020-05-06 18:38:39.335145"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.335849"], ["updated_at", "2020-05-05 18:38:39.335849"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In praesentium doloribus laboriosam?"], ["description", "Ullam aut quae magni."], ["date", "2020-05-06 18:38:39.337669"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.338421"], ["updated_at", "2020-05-05 18:38:39.338421"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis expedita libero et?"], ["description", "Vero voluptatem hic expedita."], ["date", "2020-05-06 18:38:39.339651"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.340331"], ["updated_at", "2020-05-05 18:38:39.340331"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas fugit dolores debitis?"], ["description", "Aliquid labore debitis incidunt."], ["date", "2020-05-06 18:38:39.341518"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.342204"], ["updated_at", "2020-05-05 18:38:39.342204"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis quidem aut aperiam?"], ["description", "Eos ipsa soluta voluptatem."], ["date", "2020-05-06 18:38:39.343359"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.344090"], ["updated_at", "2020-05-05 18:38:39.344090"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia aperiam reprehenderit est?"], ["description", "Voluptatem voluptates quod nisi."], ["date", "2020-05-06 18:38:39.346945"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.348127"], ["updated_at", "2020-05-05 18:38:39.348127"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non ad quae magni?"], ["description", "Possimus beatae suscipit voluptatem."], ["date", "2020-05-06 18:38:39.349557"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.350264"], ["updated_at", "2020-05-05 18:38:39.350264"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et odio pariatur itaque?"], ["description", "Autem modi maxime et."], ["date", "2020-05-06 18:38:39.351416"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.352110"], ["updated_at", "2020-05-05 18:38:39.352110"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt ea non quibusdam?"], ["description", "Id recusandae ut sit."], ["date", "2020-05-06 18:38:39.353230"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.353926"], ["updated_at", "2020-05-05 18:38:39.353926"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio commodi veritatis magnam?"], ["description", "Nihil et non cum."], ["date", "2020-05-06 18:38:39.355080"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.355837"], ["updated_at", "2020-05-05 18:38:39.355837"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem deserunt distinctio laboriosam?"], ["description", "Est et consequatur dolores."], ["date", "2020-05-06 18:38:39.357048"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.357733"], ["updated_at", "2020-05-05 18:38:39.357733"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum illum provident quia?"], ["description", "Architecto voluptas est eius."], ["date", "2020-05-06 18:38:39.358882"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:38:39.359558"], ["updated_at", "2020-05-05 18:38:39.359558"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetingsController#destroy as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + UserMeeting Load (0.1ms) SELECT "user_meetings".* FROM "user_meetings" WHERE "user_meetings"."meeting_id" = ? [["meeting_id", 1]] + Meeting Destroy (0.1ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 7ms (ActiveRecord: 0.8ms | Allocations: 2317) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolore"], ["description", "Dicta occaecati ea nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.378660"], ["updated_at", "2020-05-05 18:38:39.378660"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laborum"], ["description", "Enim ut odit omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.382140"], ["updated_at", "2020-05-05 18:38:39.382140"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "explicabo"], ["description", "Minus animi culpa quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.383605"], ["updated_at", "2020-05-05 18:38:39.383605"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "distinctio"], ["description", "Natus perferendis facilis odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.384953"], ["updated_at", "2020-05-05 18:38:39.384953"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Illum minima libero ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.387616"], ["updated_at", "2020-05-05 18:38:39.387616"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Est sit error iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.389854"], ["updated_at", "2020-05-05 18:38:39.389854"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "delectus"], ["description", "Cumque sit doloremque minus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.391282"], ["updated_at", "2020-05-05 18:38:39.391282"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "recusandae"], ["description", "Quo quis non magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.392543"], ["updated_at", "2020-05-05 18:38:39.392543"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "amet"], ["description", "Est omnis molestiae ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.393842"], ["updated_at", "2020-05-05 18:38:39.393842"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nesciunt"], ["description", "Quisquam ut rerum ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.395564"], ["updated_at", "2020-05-05 18:38:39.395564"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Warner Douglas"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$P1v11Gn.mNNR7c8kTG3DO.rhx4.D.TqazMH6fatxkYRSJ7AY63S8."], ["created_at", "2020-05-05 18:38:39.398367"], ["updated_at", "2020-05-05 18:38:39.398367"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.9ms) +Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.2ms | Allocations: 2911) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "totam"], ["description", "Aperiam possimus illum sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.418983"], ["updated_at", "2020-05-05 18:38:39.418983"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Atque facere ab repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.421837"], ["updated_at", "2020-05-05 18:38:39.421837"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ab"], ["description", "Veniam dicta aperiam nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.423167"], ["updated_at", "2020-05-05 18:38:39.423167"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Ipsam quia nisi excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.424464"], ["updated_at", "2020-05-05 18:38:39.424464"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veniam"], ["description", "Necessitatibus sapiente atque vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.426193"], ["updated_at", "2020-05-05 18:38:39.426193"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Sit et sed ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.430173"], ["updated_at", "2020-05-05 18:38:39.430173"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "in"], ["description", "Nesciunt veniam voluptatum repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.432053"], ["updated_at", "2020-05-05 18:38:39.432053"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "inventore"], ["description", "Velit rerum assumenda praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.433307"], ["updated_at", "2020-05-05 18:38:39.433307"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Ea numquam et vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.434596"], ["updated_at", "2020-05-05 18:38:39.434596"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsa"], ["description", "Sed quia perferendis eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.435925"], ["updated_at", "2020-05-05 18:38:39.435925"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Lucas Wiegand"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nvMHRYKBzemkDdM6kYk4t.4Dg2ZvP0D/Mc3imjs83A5.Fa9qoLSHS"], ["created_at", "2020-05-05 18:38:39.438517"], ["updated_at", "2020-05-05 18:38:39.438517"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.56ms) +Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms | Allocations: 2844) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Fugiat totam dolores reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.456821"], ["updated_at", "2020-05-05 18:38:39.456821"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "commodi"], ["description", "Eius consequuntur minus fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.459564"], ["updated_at", "2020-05-05 18:38:39.459564"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Occaecati corporis fugiat itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.460975"], ["updated_at", "2020-05-05 18:38:39.460975"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odio"], ["description", "Voluptatem non est quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.463413"], ["updated_at", "2020-05-05 18:38:39.463413"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Ea enim saepe repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.465067"], ["updated_at", "2020-05-05 18:38:39.465067"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Est ea nisi repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.468264"], ["updated_at", "2020-05-05 18:38:39.468264"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "similique"], ["description", "Et ducimus at porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.470908"], ["updated_at", "2020-05-05 18:38:39.470908"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illum"], ["description", "Facere ex consequatur ipsa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.472508"], ["updated_at", "2020-05-05 18:38:39.472508"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "assumenda"], ["description", "Perferendis aperiam dolorem ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.473861"], ["updated_at", "2020-05-05 18:38:39.473861"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "suscipit"], ["description", "Voluptatibus architecto inventore perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.475191"], ["updated_at", "2020-05-05 18:38:39.475191"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.0ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Antoinette Schamberger"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$roCqETV8tIk.ztnPrmpyAObeWIb250zDX5H1kwaPD1oLW6IKMc2z6"], ["created_at", "2020-05-05 18:38:39.477918"], ["updated_at", "2020-05-05 18:38:39.477918"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2845) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.32ms) +Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.2ms | Allocations: 1242) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (12.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Eum velit maiores tenetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.501316"], ["updated_at", "2020-05-05 18:38:39.501316"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deserunt"], ["description", "Beatae possimus nemo expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.515433"], ["updated_at", "2020-05-05 18:38:39.515433"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eligendi"], ["description", "Aut fugiat totam consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.517021"], ["updated_at", "2020-05-05 18:38:39.517021"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Quae ex asperiores tenetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.518324"], ["updated_at", "2020-05-05 18:38:39.518324"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "incidunt"], ["description", "Itaque aut voluptatum iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.519724"], ["updated_at", "2020-05-05 18:38:39.519724"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Possimus eius eos rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.521090"], ["updated_at", "2020-05-05 18:38:39.521090"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Quia optio incidunt quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.522398"], ["updated_at", "2020-05-05 18:38:39.522398"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Minus commodi id ipsum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.523642"], ["updated_at", "2020-05-05 18:38:39.523642"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "atque"], ["description", "Neque velit voluptate cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.525045"], ["updated_at", "2020-05-05 18:38:39.525045"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Mollitia numquam voluptatem sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.526810"], ["updated_at", "2020-05-05 18:38:39.526810"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Rachel Renner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WS6xT0S.Z.scv2Ju6rA3V.3QGgp056Y/y3tleo5VDC3G3l2XytHKy"], ["created_at", "2020-05-05 18:38:39.531220"], ["updated_at", "2020-05-05 18:38:39.531220"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.0ms) +Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms | Allocations: 2845) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.59ms) +Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.2ms | Allocations: 1240) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Provident sed rerum quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.554367"], ["updated_at", "2020-05-05 18:38:39.554367"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Voluptas tenetur repudiandae ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.557232"], ["updated_at", "2020-05-05 18:38:39.557232"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsum"], ["description", "Et ea consequatur quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.558658"], ["updated_at", "2020-05-05 18:38:39.558658"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Voluptates et dolor corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.560038"], ["updated_at", "2020-05-05 18:38:39.560038"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nostrum"], ["description", "Aliquam dolor et distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.561563"], ["updated_at", "2020-05-05 18:38:39.561563"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aperiam"], ["description", "Impedit qui quia quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.563682"], ["updated_at", "2020-05-05 18:38:39.563682"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dignissimos"], ["description", "Consequuntur nisi nam magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.565149"], ["updated_at", "2020-05-05 18:38:39.565149"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Commodi vitae distinctio tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.566969"], ["updated_at", "2020-05-05 18:38:39.566969"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "saepe"], ["description", "Cupiditate mollitia repellat debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.569211"], ["updated_at", "2020-05-05 18:38:39.569211"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Aspernatur recusandae natus ullam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.571591"], ["updated_at", "2020-05-05 18:38:39.571591"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Eunice Upton IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pmJaYMYAMwS8BNWk.lStEeBFER7vSAFgzBywhNhDCJECIiTOJCKr6"], ["created_at", "2020-05-05 18:38:39.574356"], ["updated_at", "2020-05-05 18:38:39.574356"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.8ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusamus"], ["description", "Nesciunt est optio et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.595119"], ["updated_at", "2020-05-05 18:38:39.595119"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "a"], ["description", "Ipsam consequatur autem est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.598667"], ["updated_at", "2020-05-05 18:38:39.598667"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Hic facere perferendis et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.600545"], ["updated_at", "2020-05-05 18:38:39.600545"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "optio"], ["description", "Eaque rem possimus ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.616304"], ["updated_at", "2020-05-05 18:38:39.616304"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facilis"], ["description", "Dolore quod distinctio natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.618193"], ["updated_at", "2020-05-05 18:38:39.618193"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Dolorum quia aut eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.619537"], ["updated_at", "2020-05-05 18:38:39.619537"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsam"], ["description", "Velit voluptatibus qui dolore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.620819"], ["updated_at", "2020-05-05 18:38:39.620819"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Eveniet aut voluptatem suscipit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.622128"], ["updated_at", "2020-05-05 18:38:39.622128"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vero"], ["description", "Eos nulla quis nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.623424"], ["updated_at", "2020-05-05 18:38:39.623424"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veniam"], ["description", "Alias molestiae minima fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.624661"], ["updated_at", "2020-05-05 18:38:39.624661"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Freeda Mraz III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$urqZfLd7FeqQipEBzhQEA.h2QVfCj0Wj1ZhI62rc7XUWLG4vQr65m"], ["created_at", "2020-05-05 18:38:39.628364"], ["updated_at", "2020-05-05 18:38:39.628364"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.4ms | ActiveRecord: 0.1ms | Allocations: 2843) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Perferendis neque saepe dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.649490"], ["updated_at", "2020-05-05 18:38:39.649490"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Quaerat minus qui architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.652290"], ["updated_at", "2020-05-05 18:38:39.652290"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "exercitationem"], ["description", "Repudiandae exercitationem iusto est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.653713"], ["updated_at", "2020-05-05 18:38:39.653713"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nam"], ["description", "Et temporibus atque quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.655115"], ["updated_at", "2020-05-05 18:38:39.655115"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Vitae dicta voluptatum doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.656552"], ["updated_at", "2020-05-05 18:38:39.656552"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Consequatur omnis excepturi reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.657894"], ["updated_at", "2020-05-05 18:38:39.657894"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Dolorem architecto facilis qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.659227"], ["updated_at", "2020-05-05 18:38:39.659227"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Sit quaerat repellat est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.660514"], ["updated_at", "2020-05-05 18:38:39.660514"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iusto"], ["description", "Adipisci qui est quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.662162"], ["updated_at", "2020-05-05 18:38:39.662162"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Aut quidem quia illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.664581"], ["updated_at", "2020-05-05 18:38:39.664581"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tom Willms"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RQ4pqnsoLoqv7AVFaAcRb.er9mrX4yMnE0gpMbMWw6Ls4F4oWShQm"], ["created_at", "2020-05-05 18:38:39.667879"], ["updated_at", "2020-05-05 18:38:39.667879"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.1ms) +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 15:38: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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:38:39.692907"], ["updated_at", "2020-05-05 18:38:39.692907"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.6ms) +Completed 201 Created in 22ms (Views: 1.0ms | ActiveRecord: 1.3ms | Allocations: 6207) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Vel accusamus nisi ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.711543"], ["updated_at", "2020-05-05 18:38:39.711543"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "beatae"], ["description", "Et qui illo ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.715358"], ["updated_at", "2020-05-05 18:38:39.715358"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Nobis eligendi maiores corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.716890"], ["updated_at", "2020-05-05 18:38:39.716890"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloribus"], ["description", "Sequi dolores odit nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.718206"], ["updated_at", "2020-05-05 18:38:39.718206"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Illo cumque ipsam vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.719496"], ["updated_at", "2020-05-05 18:38:39.719496"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Sequi tempore unde harum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.720778"], ["updated_at", "2020-05-05 18:38:39.720778"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "asperiores"], ["description", "Eligendi qui et quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.722055"], ["updated_at", "2020-05-05 18:38:39.722055"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Aut eaque in pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.723346"], ["updated_at", "2020-05-05 18:38:39.723346"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Voluptas eum enim omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.724694"], ["updated_at", "2020-05-05 18:38:39.724694"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quod"], ["description", "Ea tempora exercitationem porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.725962"], ["updated_at", "2020-05-05 18:38:39.725962"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Duane Bailey"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QdRUWbiFcepT8/O9tvl4aeuFMj7/yvy.CQL5V4HGwgE4lxzUC6fqC"], ["created_at", "2020-05-05 18:38:39.729650"], ["updated_at", "2020-05-05 18:38:39.729650"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:38: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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:38:39.741499"], ["updated_at", "2020-05-05 18:38:39.741499"], ["created_by", "1"]] +  (0.2ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.3ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.52ms) +Completed 201 Created in 6ms (Views: 1.0ms | ActiveRecord: 0.8ms | Allocations: 2217) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vitae"], ["description", "Quas dolores porro consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.758114"], ["updated_at", "2020-05-05 18:38:39.758114"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolore"], ["description", "Ut totam quaerat accusantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.761125"], ["updated_at", "2020-05-05 18:38:39.761125"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quod"], ["description", "Earum facilis sint doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.764353"], ["updated_at", "2020-05-05 18:38:39.764353"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Quos laboriosam dignissimos soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.765969"], ["updated_at", "2020-05-05 18:38:39.765969"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nostrum"], ["description", "Sapiente ipsum architecto provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.767727"], ["updated_at", "2020-05-05 18:38:39.767727"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptates"], ["description", "Ipsum hic voluptatibus corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.770264"], ["updated_at", "2020-05-05 18:38:39.770264"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Atque sint consequatur expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.772564"], ["updated_at", "2020-05-05 18:38:39.772564"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Doloribus pariatur veniam animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.773952"], ["updated_at", "2020-05-05 18:38:39.773952"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Dolorem quisquam occaecati sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.775245"], ["updated_at", "2020-05-05 18:38:39.775245"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Aliquam doloribus exercitationem autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.776521"], ["updated_at", "2020-05-05 18:38:39.776521"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Ella Lakin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/ds53wa8IcOiOuV3HEmWD.yiJ9XaXhczb.ueECvo/APNRSc2iy5GW"], ["created_at", "2020-05-05 18:38:39.779520"], ["updated_at", "2020-05-05 18:38:39.779520"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.74ms) +Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms | Allocations: 2846) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 4006) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Ratione accusamus reiciendis et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.805113"], ["updated_at", "2020-05-05 18:38:39.805113"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellendus"], ["description", "Neque consequatur odio ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.808280"], ["updated_at", "2020-05-05 18:38:39.808280"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Magnam voluptates deserunt molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.810612"], ["updated_at", "2020-05-05 18:38:39.810612"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "provident"], ["description", "Saepe asperiores dolores ullam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.813724"], ["updated_at", "2020-05-05 18:38:39.813724"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minus"], ["description", "Illum cum ex voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.815644"], ["updated_at", "2020-05-05 18:38:39.815644"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Dolores et veniam culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.817066"], ["updated_at", "2020-05-05 18:38:39.817066"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Ipsam enim nobis rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.818502"], ["updated_at", "2020-05-05 18:38:39.818502"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "commodi"], ["description", "Maxime et pariatur quaerat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.819997"], ["updated_at", "2020-05-05 18:38:39.819997"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Quibusdam aut illum unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.821467"], ["updated_at", "2020-05-05 18:38:39.821467"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Enim est facere et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.822931"], ["updated_at", "2020-05-05 18:38:39.822931"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Jean Prohaska"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$yrteslVRcz5Ntk.TZDZ/.uIEMY.9ITwRVKNkHAfqshzRRX3DfpvpS"], ["created_at", "2020-05-05 18:38:39.825698"], ["updated_at", "2020-05-05 18:38:39.825698"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.56ms) +Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 3697) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Quos autem aut ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.853143"], ["updated_at", "2020-05-05 18:38:39.853143"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "optio"], ["description", "Quisquam aut perferendis error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.856268"], ["updated_at", "2020-05-05 18:38:39.856268"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Deleniti dolores et eius."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.858477"], ["updated_at", "2020-05-05 18:38:39.858477"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Ab dolore deleniti ipsum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.859944"], ["updated_at", "2020-05-05 18:38:39.859944"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "provident"], ["description", "Reiciendis molestiae sunt maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.861468"], ["updated_at", "2020-05-05 18:38:39.861468"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "asperiores"], ["description", "Nihil qui error repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.864065"], ["updated_at", "2020-05-05 18:38:39.864065"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Consequatur dolor earum laboriosam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.865657"], ["updated_at", "2020-05-05 18:38:39.865657"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sapiente"], ["description", "Hic aliquid autem dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.867129"], ["updated_at", "2020-05-05 18:38:39.867129"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Omnis voluptatum ad est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.869005"], ["updated_at", "2020-05-05 18:38:39.869005"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Hic incidunt nulla eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.871154"], ["updated_at", "2020-05-05 18:38:39.871154"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Odilia Hermann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qWwso64B1sXXHbwOP/mzmen2nEq4eQ3e07N27nkqe/UnsicYBah0C"], ["created_at", "2020-05-05 18:38:39.874526"], ["updated_at", "2020-05-05 18:38:39.874526"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.25ms) +Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:38:39.885140"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 1043) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (32.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Architecto aut tenetur voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.922748"], ["updated_at", "2020-05-05 18:38:39.922748"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minus"], ["description", "Sit minus repudiandae itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.925671"], ["updated_at", "2020-05-05 18:38:39.925671"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facilis"], ["description", "Dolor fuga quia consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.927428"], ["updated_at", "2020-05-05 18:38:39.927428"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Non ducimus at dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.930650"], ["updated_at", "2020-05-05 18:38:39.930650"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Aut commodi temporibus necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.933042"], ["updated_at", "2020-05-05 18:38:39.933042"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officia"], ["description", "Blanditiis dolores dolorum quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.934675"], ["updated_at", "2020-05-05 18:38:39.934675"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "modi"], ["description", "At impedit rerum voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.936007"], ["updated_at", "2020-05-05 18:38:39.936007"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorum"], ["description", "Eaque ut aperiam a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.937320"], ["updated_at", "2020-05-05 18:38:39.937320"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "In ipsam est expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.938623"], ["updated_at", "2020-05-05 18:38:39.938623"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestias"], ["description", "Tenetur nulla dicta nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.939917"], ["updated_at", "2020-05-05 18:38:39.939917"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Margart Howe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$MZQofFvM4oEdUx5E36bJ..eKX9wfzqDvHhvQdFtSlNLdlrkVF2A3u"], ["created_at", "2020-05-05 18:38:39.942581"], ["updated_at", "2020-05-05 18:38:39.942581"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.8ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:38:39.955318"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 999) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "culpa"], ["description", "Vero voluptatem consequatur facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.965896"], ["updated_at", "2020-05-05 18:38:39.965896"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "amet"], ["description", "Iusto autem aperiam sapiente."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.968982"], ["updated_at", "2020-05-05 18:38:39.968982"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Voluptas sit alias at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.972004"], ["updated_at", "2020-05-05 18:38:39.972004"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Quia ea quod corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.974014"], ["updated_at", "2020-05-05 18:38:39.974014"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Vel ut commodi nostrum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.975539"], ["updated_at", "2020-05-05 18:38:39.975539"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "harum"], ["description", "Laboriosam itaque velit suscipit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.977181"], ["updated_at", "2020-05-05 18:38:39.977181"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Ut aut facere vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.979198"], ["updated_at", "2020-05-05 18:38:39.979198"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Ex qui ea adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.980778"], ["updated_at", "2020-05-05 18:38:39.980778"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "in"], ["description", "Natus occaecati accusantium quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.982226"], ["updated_at", "2020-05-05 18:38:39.982226"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Quis perspiciatis accusantium id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:38:39.983564"], ["updated_at", "2020-05-05 18:38:39.983564"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Lyda Erdman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vrp2/3KZJXIENTN4ylxPre57CKr23ytwMqz5ZydL0o9n9Kc8iKU2G"], ["created_at", "2020-05-05 18:38:39.986230"], ["updated_at", "2020-05-05 18:38:39.986230"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.14ms) +Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.3ms | Allocations: 2841) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:38:39 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1205) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marjorie Blick"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qeGY5cQlAN2D01wuiLTm0ulI3dlR7ONb0/N3i6gtmlW.27b/7rtJa"], ["created_at", "2020-05-05 18:38:40.011584"], ["updated_at", "2020-05-05 18:38:40.011584"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Korey Shanahan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$AA4WwBl5TeP3ervlZG3/8u1MpNqn5iZhjtlHCHjPd0D9DiJ324CUC"], ["created_at", "2020-05-05 18:38:40.016772"], ["updated_at", "2020-05-05 18:38:40.016772"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Art Hudson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YjKiKMr7AuS6YxAZEo5RReLuovlkmzSM0KNiaby9EU6w6010hVjOe"], ["created_at", "2020-05-05 18:38:40.019554"], ["updated_at", "2020-05-05 18:38:40.019554"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Blaine Adams PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$cKcwu8Gej2HnEoxSdfRNae5QFpGbJeyY/1S8KoC5CuTfe3NkJx1ja"], ["created_at", "2020-05-05 18:38:40.022041"], ["updated_at", "2020-05-05 18:38:40.022041"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Luciano Miller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$cgkU1U4kfIEOtbIwNq9VAutS2R7vWrxdNsWJv4Rkk.MW19P89frJK"], ["created_at", "2020-05-05 18:38:40.024480"], ["updated_at", "2020-05-05 18:38:40.024480"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bruno Gottlieb"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$weDuLgGqP1NitFiWiWh3QeiKwSOwixQOFbK0AcUcKlNNH1VzjJplq"], ["created_at", "2020-05-05 18:38:40.026947"], ["updated_at", "2020-05-05 18:38:40.026947"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Denese Rutherford"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$26qv17IZZzBx/9bwMfDic.1jCunavJEbYppXRdW5njsmVdOVUbgsm"], ["created_at", "2020-05-05 18:38:40.030748"], ["updated_at", "2020-05-05 18:38:40.030748"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Edie Halvorson DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RvD5RaTe5tMPJoVrpox0deZclYcymDDCYTqYD8F5.F00pBWj69dSG"], ["created_at", "2020-05-05 18:38:40.034433"], ["updated_at", "2020-05-05 18:38:40.034433"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Stacey Altenwerth"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QY88GhRQ4ljHXMz5Y.dIAOtGVOsfR/BMtUfvGDhURLFeCNAW9MQz."], ["created_at", "2020-05-05 18:38:40.037237"], ["updated_at", "2020-05-05 18:38:40.037237"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Delorse Bins"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Orc13ZTaBSof8m6dY4FEbeQHFuRSbJRoXUB33hc6eL41mQWbmdCu2"], ["created_at", "2020-05-05 18:38:40.039755"], ["updated_at", "2020-05-05 18:38:40.039755"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:38:40 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.14ms) +Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms | Allocations: 2345) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (37.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Catherina Kirlin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$T5ByjOGL6yUUSD1yXGUkT.Z90k2coJwULijzb2fLFkUdNCL0m.gpe"], ["created_at", "2020-05-05 18:38:40.091861"], ["updated_at", "2020-05-05 18:38:40.091861"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tod Pouros"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5kGVi8XDOYHSvrn/lQ/kK.yRAAy9s/TQ0JyvNHKgIaNc5mBTeRkly"], ["created_at", "2020-05-05 18:38:40.097306"], ["updated_at", "2020-05-05 18:38:40.097306"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marco Hahn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$lDJ2CnhzQ9tvfKiulFk2XerBVWdlaTez.Ukrt4sZ4kpDS1raQ7ZiS"], ["created_at", "2020-05-05 18:38:40.100358"], ["updated_at", "2020-05-05 18:38:40.100358"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lorie Goodwin PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3WIUEuh.wMudfwxDwuP4qeGsikyUZMnUXuuXqBxv92K1g11swVm4O"], ["created_at", "2020-05-05 18:38:40.102843"], ["updated_at", "2020-05-05 18:38:40.102843"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rich Ortiz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gAzuro1bJn2rXkDD2SUtiu3zqdalGlEr8yZsOyzrLsqTF.C.5gzb."], ["created_at", "2020-05-05 18:38:40.105174"], ["updated_at", "2020-05-05 18:38:40.105174"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Darnell McLaughlin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Vlij.NTwZEpzmG9pZMtTku6QXz8WTI3Q45rmyOmhUhRTeKHyOzwZ2"], ["created_at", "2020-05-05 18:38:40.107976"], ["updated_at", "2020-05-05 18:38:40.107976"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jerica Fadel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$H/SzAvAcTdqbtkRVLtG7FOsgd5KaoBy7dmwkvaDu.Dpn634ob99I2"], ["created_at", "2020-05-05 18:38:40.111522"], ["updated_at", "2020-05-05 18:38:40.111522"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Jonnie Cummings"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$B5X/SwJarPsP9Aj0EzTh5.t/aYQKGhx1Upna9SSIMOmDcaGZCY9HG"], ["created_at", "2020-05-05 18:38:40.115975"], ["updated_at", "2020-05-05 18:38:40.115975"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Bennie Walker"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xf/gaVQJt5x8lcDEmqvxzeUrVVLdzlLL3bAzj1ujrucoNq16kkdGe"], ["created_at", "2020-05-05 18:38:40.118797"], ["updated_at", "2020-05-05 18:38:40.118797"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Guadalupe Emmerich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$uxHf0k1ddIx9if5kz2CBoeDIQS8.2yhSDqvUK9N8PrqZCj3uualci"], ["created_at", "2020-05-05 18:38:40.121327"], ["updated_at", "2020-05-05 18:38:40.121327"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:38:40 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.36ms) +Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms | Allocations: 2203) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (30.3ms) rollback transaction +  (0.2ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_2 + User Create (2.9ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Donita Farrell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZvZYzrzb5x9ztnj3Ip31aO4690XulZNKDQxJvKbbvqb54EstDpFtu"], ["created_at", "2020-05-05 18:38:40.168503"], ["updated_at", "2020-05-05 18:38:40.168503"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Christin Heller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Ryvck/5A77dEbmQvB85w2.zWSvhSnCwsI6z9oI4ObrAIYAvP9G9XG"], ["created_at", "2020-05-05 18:38:40.180424"], ["updated_at", "2020-05-05 18:38:40.180424"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Krista Sauer II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$V1nZVm.rxXyTJ/Ta1EVpoOhRPvr.MKhaMKs0Tjz6cfd8aPL.mx3ry"], ["created_at", "2020-05-05 18:38:40.188489"], ["updated_at", "2020-05-05 18:38:40.188489"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tanner O'Conner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NcS3kS448ofaUya6F4MjFerb9L8O18fO/MbLVoA1G/hSCfyjQp6I6"], ["created_at", "2020-05-05 18:38:40.195563"], ["updated_at", "2020-05-05 18:38:40.195563"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Roni Mraz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JSwMPLnL/iHBln/Y1Wbt.exeiFxf60CcnZgIDrT7hlTxr1lPNXVJG"], ["created_at", "2020-05-05 18:38:40.201175"], ["updated_at", "2020-05-05 18:38:40.201175"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Hanna McGlynn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OdrgkrDKE2W6aPNzsxVA2.bLBpSN2.rRpPNiYTZqqLQOkXALj0g6y"], ["created_at", "2020-05-05 18:38:40.205645"], ["updated_at", "2020-05-05 18:38:40.205645"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Verdell O'Hara Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fneVjHaA7vm0Glyr4f9EwuqluFAO0SOUYbniUnnIYJqHMzWLLN9b2"], ["created_at", "2020-05-05 18:38:40.210494"], ["updated_at", "2020-05-05 18:38:40.210494"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Fredericka Dicki"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$72PP11VBz17h9FmQoGCgYukAJ2nVxDqTdQR1H770t2eTHZ.FALFle"], ["created_at", "2020-05-05 18:38:40.216685"], ["updated_at", "2020-05-05 18:38:40.216685"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ahmad Effertz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$00zDnCUKhDd/PYPfxBQicOXjJ0fYNv18QsWjMfegVglftEUKh39uK"], ["created_at", "2020-05-05 18:38:40.221418"], ["updated_at", "2020-05-05 18:38:40.221418"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Latoyia Emard"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$yDWkRX/w9Kq6EX/RRnBa2.8XFwajp/GHG34Sm1gU/LBuszHWlrbSe"], ["created_at", "2020-05-05 18:38:40.224155"], ["updated_at", "2020-05-05 18:38:40.224155"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:38:40 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.53ms) +Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:38:40 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.53ms) +Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Morgan Hilpert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dA3h2VSIrA8XQDBVKh2KQu58BU203I9H.n.bNB1lz4tPgEmtMEDWi"], ["created_at", "2020-05-05 18:38:40.245511"], ["updated_at", "2020-05-05 18:38:40.245511"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jospeh Collier"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jX4Gtvhv.FYIL4FyqKPb1eCoFbPgQygBf1qUvctwISGlYJRt7YIcK"], ["created_at", "2020-05-05 18:38:40.250740"], ["updated_at", "2020-05-05 18:38:40.250740"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Deandre Mante"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WbUK3Ej2lq9zzOksSFjJCeOb4gDY1zRUUQj7t.VyeeGSu5JdBY5JO"], ["created_at", "2020-05-05 18:38:40.254191"], ["updated_at", "2020-05-05 18:38:40.254191"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mohamed Christiansen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CiU6FKWhisXP/JFDJUMFi.VlKLMf3DC2LLEgdNF2hpA03iWf0DNDG"], ["created_at", "2020-05-05 18:38:40.257402"], ["updated_at", "2020-05-05 18:38:40.257402"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ferdinand Lehner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/wG0Atrj/Z6Va83g5tHHGuA2wJzc9yLotUFvohgK5sRMpCQ6PkYoG"], ["created_at", "2020-05-05 18:38:40.260329"], ["updated_at", "2020-05-05 18:38:40.260329"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Classie O'Conner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$G2iP2eXwW8/0vMuW4TqoX.hYFYr2Fkh7Qs8PBVtP9DxiA8VrsJQIu"], ["created_at", "2020-05-05 18:38:40.263402"], ["updated_at", "2020-05-05 18:38:40.263402"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Coleen Rempel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aeYt1TSwp0IdwXQO9CleE.J6KgG.1aw2zv3DhMjzLobzZzBaBqJzC"], ["created_at", "2020-05-05 18:38:40.266045"], ["updated_at", "2020-05-05 18:38:40.266045"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tomas Langosh"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JOVj19L3S7tGGltSKe66D./LSn4Rzgmk99NERRI7afg.bj/si03BC"], ["created_at", "2020-05-05 18:38:40.268451"], ["updated_at", "2020-05-05 18:38:40.268451"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elyse Goodwin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QIZa.9yvKO2F0W4tatAR6.x/ig3rSxlVS6VtIAYjrOSslD.ngbsvi"], ["created_at", "2020-05-05 18:38:40.271027"], ["updated_at", "2020-05-05 18:38:40.271027"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Clair Toy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dKrWyXsflmQlqf5A.3FqYej1Z1/Wua0Fg.3hbRJxIO4dXtTaYln/2"], ["created_at", "2020-05-05 18:38:40.274386"], ["updated_at", "2020-05-05 18:38:40.274386"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:38:40 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.85ms) +Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:38:40 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.32ms) +Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Karie Herman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$x.vDkj2vWBySQmkr8hUifuYDaDvjPCxIfhMIYu2ZPrnso/LLAD.GO"], ["created_at", "2020-05-05 18:38:40.295303"], ["updated_at", "2020-05-05 18:38:40.295303"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Lindsy Luettgen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UPT.zHQegidOIbRK7VzyYuImPge7CPD4hg.3QkQeBJS/JcB6b9WKy"], ["created_at", "2020-05-05 18:38:40.299857"], ["updated_at", "2020-05-05 18:38:40.299857"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Renato Shanahan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vyZVBJVa3zoTaEstUrW/.OJOOqjlEviwReSUzCkyfixo8Q4CZ77I6"], ["created_at", "2020-05-05 18:38:40.302687"], ["updated_at", "2020-05-05 18:38:40.302687"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Preston Veum"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$zKxKT9mMRcEJIFDMWJMsMeaxDXAIQ1yGyALESbbyhPBNpN22a0voe"], ["created_at", "2020-05-05 18:38:40.305349"], ["updated_at", "2020-05-05 18:38:40.305349"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Francisco Quigley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8tTfxJSpUnFW4kUkpVdCwOTrgCMYiPfY3pFrJ8rz6oB4l2SZArR7S"], ["created_at", "2020-05-05 18:38:40.308130"], ["updated_at", "2020-05-05 18:38:40.308130"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shandra Emard"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LZTgeD2XJlPDJwd9RVCJQ.AV/6weCONfhS4/kt7Yv5tuikFh4DWKu"], ["created_at", "2020-05-05 18:38:40.310682"], ["updated_at", "2020-05-05 18:38:40.310682"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Karima Reichert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pYoCAy73EAScdgnU2MEL0OQOLW7HGevZ5mqoDKyN..dL4/1dbpcLO"], ["created_at", "2020-05-05 18:38:40.314832"], ["updated_at", "2020-05-05 18:38:40.314832"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Zora Romaguera"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xDnSPl.Qw2gHSB0WwMD1iOLjUpd0greEi8rp.fKV4X9QZvnJZaI3q"], ["created_at", "2020-05-05 18:38:40.317993"], ["updated_at", "2020-05-05 18:38:40.317993"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Carolee Douglas PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2WJjLIsWJ5cPskmfPz8kJO7sAT/a1rTq6febonlNFXZL2rpx0/9nm"], ["created_at", "2020-05-05 18:38:40.320476"], ["updated_at", "2020-05-05 18:38:40.320476"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Larry Herman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$yIM4xwFBmZgZLK9oZ4avoOmTFqiIftuIyTNUne3ekwCUPw7igCHGe"], ["created_at", "2020-05-05 18:38:40.322859"], ["updated_at", "2020-05-05 18:38:40.322859"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:38:40 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.25ms) +Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:38:40 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (4.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Oliver Schroeder"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$uWd3mOpJJiA0KC25EHORWOoEgfTDcC6C8P5iWu5gMiTlF9q/FFfOe"], ["created_at", "2020-05-05 18:38:40.343213"], ["updated_at", "2020-05-05 18:38:40.343213"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Wilfredo Abernathy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$s1Z0noUaFEnr3CjWWpZa3.jyrKB69HgJ1nLqMtoyB0s1L5hj9O.k2"], ["created_at", "2020-05-05 18:38:40.348120"], ["updated_at", "2020-05-05 18:38:40.348120"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Refugio Green"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZqMIRQO7QKr6ejYNo3geUeYU45q3cfpNfzaIY9/tkRtwLoFR.JVPa"], ["created_at", "2020-05-05 18:38:40.351031"], ["updated_at", "2020-05-05 18:38:40.351031"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Teressa Hegmann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gv0S2ceUqv95GEs/DwcqmumzsX6/q6pYZb7Uu692NRAOtcmZkyCNe"], ["created_at", "2020-05-05 18:38:40.354955"], ["updated_at", "2020-05-05 18:38:40.354955"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Luke Jerde"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1eMo7IjNO35FK3VEzKJ23.It1x4kto7csU/9XWGhY0EtRgW1OfG9K"], ["created_at", "2020-05-05 18:38:40.357933"], ["updated_at", "2020-05-05 18:38:40.357933"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lenora Reynolds"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8n86PAorraNHqlPCdRWeGeJ1di0vIV5mQRkhSKPo5ziw8PwZfsVz6"], ["created_at", "2020-05-05 18:38:40.360236"], ["updated_at", "2020-05-05 18:38:40.360236"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Augustus Prosacco"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Yq8/59GmXaJ3acR.pznKKeoZa1LfQ43kR7HNeaUaH0cir1mAjRGnW"], ["created_at", "2020-05-05 18:38:40.363346"], ["updated_at", "2020-05-05 18:38:40.363346"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Van Gaylord"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1J11YBlZt43QDS9OJ8J90OEdH07L5abiyGYvDHxjTo0x9WgKMrQ4e"], ["created_at", "2020-05-05 18:38:40.366302"], ["updated_at", "2020-05-05 18:38:40.366302"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Arlie Kling"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$B7C2.hheoW7SAFR/6KcareHyYSWy1m6JUg17QNgUmHAm54z828p8i"], ["created_at", "2020-05-05 18:38:40.368827"], ["updated_at", "2020-05-05 18:38:40.368827"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Bert Walsh"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TH6dzS8A/Cy.byh6INqGa.s.EpOcAsS8n.sBU6AmNdTUQT7C/cChe"], ["created_at", "2020-05-05 18:38:40.371463"], ["updated_at", "2020-05-05 18:38:40.371463"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:38:40 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.55ms) +Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:38:40 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Beverley Upton"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aASCowRxzfeRgJUevcTFkOLgMPtMqxzIGxepcFKDqv3cy12dCxfZ2"], ["created_at", "2020-05-05 18:38:40.393936"], ["updated_at", "2020-05-05 18:38:40.393936"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lori Kutch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.fgcfofpBun30srGyVz7..nvlH/pQuZj.z36STZ0Sz0cX9xi69K0K"], ["created_at", "2020-05-05 18:38:40.412245"], ["updated_at", "2020-05-05 18:38:40.412245"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Reagan Steuber"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$p1vh0JqUIIYZDD4qCnWuquJab/OC3NFqvphCtK9fZ0U/udR908WFO"], ["created_at", "2020-05-05 18:38:40.417246"], ["updated_at", "2020-05-05 18:38:40.417246"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jo Morissette"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DkupTl8mj9M.m5BYFVkeOOx0XOWy/FpPpg0my4eIEmSck1rg8cIpS"], ["created_at", "2020-05-05 18:38:40.420168"], ["updated_at", "2020-05-05 18:38:40.420168"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alejandrina MacGyver"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pIP.e6L2DNRjND3lvsfp1.gFml7ITyQMsgpRgO0IZYdQlwCcKxNMq"], ["created_at", "2020-05-05 18:38:40.422720"], ["updated_at", "2020-05-05 18:38:40.422720"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Prince Senger"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fbXvHAmhyZ06EOkOqChCFuMAhAwhNnnP3N9eGzb.AEhvnyBvdEKzG"], ["created_at", "2020-05-05 18:38:40.425159"], ["updated_at", "2020-05-05 18:38:40.425159"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "See Hahn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DW46MJcXtoYjsyti3fqgj.1ULFG5AKPM3ENviW009uNZV56BvyBtK"], ["created_at", "2020-05-05 18:38:40.427929"], ["updated_at", "2020-05-05 18:38:40.427929"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Milo Farrell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JHvbKjprdheLWOlMpucIruONvoR8mDPX.6GHux93ZQPkb.kulIOSi"], ["created_at", "2020-05-05 18:38:40.431578"], ["updated_at", "2020-05-05 18:38:40.431578"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Florentino McDermott"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$sRz9Ol0qzbee9ZAhS4IJIuAqnYftpCyB399h3TBRYWOCxIjDVItIq"], ["created_at", "2020-05-05 18:38:40.435314"], ["updated_at", "2020-05-05 18:38:40.435314"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Pearly Thompson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vYk8g7nY8K48HrMQYY4imu/ahpyoK5i0qINKoIC.S1Y3Tx5YMSXaq"], ["created_at", "2020-05-05 18:38:40.438020"], ["updated_at", "2020-05-05 18:38:40.438020"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:38:40 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.46ms) +Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:38:40 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Sheyla", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "email"=>"shey@mail.com"} +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sheyla"], ["email", "shey@mail.com"], ["password_digest", "$2a$04$ftW420VL8fj./GSnZjpnO.as.AXt1UCXd/XQqaoip9mbmScv9OM5G"], ["created_at", "2020-05-05 18:38:40.448473"], ["updated_at", "2020-05-05 18:38:40.448473"], ["picture", "https://joeschmoe.io/api/v1/jana"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.6ms) +Completed 201 Created in 15ms (Views: 1.1ms | ActiveRecord: 0.5ms | Allocations: 1682) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Zackary Bartell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Wha1HZQM2rwXpGYU13eiNONblO.w3kEOWt6wq7VF3eIaYfaypKWJC"], ["created_at", "2020-05-05 18:38:40.502652"], ["updated_at", "2020-05-05 18:38:40.502652"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jerrold Howe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$f7iR8lKvEhI2.U5MXtcMjO46eOUGnULZNFwUrm8p6EoYtow2DNS2y"], ["created_at", "2020-05-05 18:38:40.507469"], ["updated_at", "2020-05-05 18:38:40.507469"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Deangelo Fahey"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Rk00ptwT5BK2r3.Mu1SPb.VKGRa4UPWDQEAN3YBTNjJw.Wj74zM.6"], ["created_at", "2020-05-05 18:38:40.510144"], ["updated_at", "2020-05-05 18:38:40.510144"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marlys Feil"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/vtAdjY5LQAb35o2l.nR0.g6Lr3c.HCs5IvRjs3wplXMZBItc61.K"], ["created_at", "2020-05-05 18:38:40.513265"], ["updated_at", "2020-05-05 18:38:40.513265"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lucretia Gaylord III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/ci5shpv.zU8xBYVj1pdIOryEvBvZDOTUXuU2V.HexJeA.7hK29da"], ["created_at", "2020-05-05 18:38:40.517422"], ["updated_at", "2020-05-05 18:38:40.517422"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Winnie Legros"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pcKiQOCD7xntna3utfFDn.ODUuoVYiIiUsmZ8o1GKYTXdrBK8lFou"], ["created_at", "2020-05-05 18:38:40.520287"], ["updated_at", "2020-05-05 18:38:40.520287"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Earle Ratke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9RxsopdUnG4l8E/jFg0Od.CxhwnQmcSMAowBmRQtlBSRCBRNg1BCO"], ["created_at", "2020-05-05 18:38:40.522642"], ["updated_at", "2020-05-05 18:38:40.522642"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bobbie Morissette"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$eXbW7lGtKO34NGBCR1BfaeKUuYNxc0JtY5AncpI7U3CdqSTE9fsIa"], ["created_at", "2020-05-05 18:38:40.524973"], ["updated_at", "2020-05-05 18:38:40.524973"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cher Russel Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$PJsOGgSFsOQRFIKKYXBn/./VWDH903QBcVu7v4GASV9mEDDgbeIbi"], ["created_at", "2020-05-05 18:38:40.527485"], ["updated_at", "2020-05-05 18:38:40.527485"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rosario Daugherty DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$E3WjLFUGRcBRVq9nE/Z21O7GSGhR6gNZRBqp7JZa9xy2r.PDr9gIS"], ["created_at", "2020-05-05 18:38:40.530697"], ["updated_at", "2020-05-05 18:38:40.530697"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:38:40 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.85ms) +Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:38:40 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Sheyla", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "email"=>"shey@mail.com"} +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sheyla"], ["email", "shey@mail.com"], ["password_digest", "$2a$04$P6.E7Y3JRJbl3Q30TZrHDOrb0fTHIKNspNFVLX2MeIR2mmazBrC5q"], ["created_at", "2020-05-05 18:38:40.540785"], ["updated_at", "2020-05-05 18:38:40.540785"], ["picture", "https://joeschmoe.io/api/v1/jeane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.51ms) +Completed 201 Created in 7ms (Views: 1.0ms | ActiveRecord: 0.3ms | Allocations: 1326) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Milton White"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8vWnTTaC2OpAH3VHLoYeKeinCqY10b82Eh19XSbBUpT4CQL.MAeHO"], ["created_at", "2020-05-05 18:38:40.556398"], ["updated_at", "2020-05-05 18:38:40.556398"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jan Larson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RtRhBE9gDqLIX1FB0w1E3ujfqvbmDgB0nb9empIvm94ueHg5smc2i"], ["created_at", "2020-05-05 18:38:40.560385"], ["updated_at", "2020-05-05 18:38:40.560385"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Fumiko Keebler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9a1TtzODS7hfVsDQsz6e.e2NRKlZ/F3iAAmahZgqyOXRQIWUyu1QW"], ["created_at", "2020-05-05 18:38:40.563735"], ["updated_at", "2020-05-05 18:38:40.563735"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Natalya Purdy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$PgCvVX0GaCi0GavNZTXveuvmA9OYGN3mweVzKTDVf.yOTfVdgAITO"], ["created_at", "2020-05-05 18:38:40.566497"], ["updated_at", "2020-05-05 18:38:40.566497"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Quinn Gerlach"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$..9si4EqAJCT8nKl.ns6l.3K144RA4Q1RrDgxmaIWzleofTBzn2R."], ["created_at", "2020-05-05 18:38:40.569110"], ["updated_at", "2020-05-05 18:38:40.569110"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gaylord Ritchie"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$//IWhMRtfPQnx3Pe89xajeB/0Amg.6LCrUIWAyOmnJKMYq8sHJoE6"], ["created_at", "2020-05-05 18:38:40.571988"], ["updated_at", "2020-05-05 18:38:40.571988"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Zachery Jerde"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$IzBQhoQebXt9Ba023knaA.2G48lJQ.CxlLtBqJ.VwWdL1/ssIk2hu"], ["created_at", "2020-05-05 18:38:40.577833"], ["updated_at", "2020-05-05 18:38:40.577833"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tobias Heller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UL5/e2E.MUDxNjh/iWD8bux2Z4tN5.I3r3wzRz384d52rGwL5JaDi"], ["created_at", "2020-05-05 18:38:40.582717"], ["updated_at", "2020-05-05 18:38:40.582717"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Andreas Beatty"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$83JUq6tC/4LPpVyjOAA1Aup7OMxb8vYAeaAkFHs3hmYGwdGbDxznO"], ["created_at", "2020-05-05 18:38:40.585841"], ["updated_at", "2020-05-05 18:38:40.585841"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Deshawn Ritchie MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CQB/skRncmqHueon3ZcSwO4NaJ/1qyY1zX1iu0kEjaX2Jfb9Gr9by"], ["created_at", "2020-05-05 18:38:40.588913"], ["updated_at", "2020-05-05 18:38:40.588913"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:38:40 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.75ms) +Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:38:40 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Foobar"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms) +Completed 401 Unauthorized in 4ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 1817) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Quinton Ryan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qgbdIOsp1GNwgeMLL0y3UOPjOYsvOiP.FEoymad1kmVlvto88GX8m"], ["created_at", "2020-05-05 18:38:40.615894"], ["updated_at", "2020-05-05 18:38:40.615894"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Arianne MacGyver"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$lLTnCe3Yk9wwPXlS0ZChl.55WR9wOThj.qJhAm4QSSixRsp0FzH9y"], ["created_at", "2020-05-05 18:38:40.620275"], ["updated_at", "2020-05-05 18:38:40.620275"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kaci Willms"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$m9qkNLV6lvGvlE1ebAvaYegcqmSDESig1gahKRNiW8psitCG16qAa"], ["created_at", "2020-05-05 18:38:40.623097"], ["updated_at", "2020-05-05 18:38:40.623097"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Stephen Haag II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZNTNCHLN8NO0.Ujr4VG9.OSB0lfXXdhOxcDGVSGjilrySI1.40oMq"], ["created_at", "2020-05-05 18:38:40.625908"], ["updated_at", "2020-05-05 18:38:40.625908"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gabriela Kuvalis II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8VR8IYsZDS19kAua/SLtg.8Ydja0uFH3NB6QWoX/oOS2QjKS.dv12"], ["created_at", "2020-05-05 18:38:40.629116"], ["updated_at", "2020-05-05 18:38:40.629116"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jammie Lesch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$wjePcPdm4VzNYgs46eo5ferWsd65Y27xHQngyqw495xVAreTgGIw2"], ["created_at", "2020-05-05 18:38:40.632562"], ["updated_at", "2020-05-05 18:38:40.632562"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lorretta Jacobson PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$k1WIFP6UgMTlN.CSjlBGQu/.IDBdVUTzYRiJPvK76hCNQcJw40b5W"], ["created_at", "2020-05-05 18:38:40.637218"], ["updated_at", "2020-05-05 18:38:40.637218"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leo Graham"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tWakeDrclRl0lrbObxa0JOHLqWbZpfgyP3SUd97LMmp4aErmzvsnW"], ["created_at", "2020-05-05 18:38:40.640637"], ["updated_at", "2020-05-05 18:38:40.640637"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Edward Hauck"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$w/au2hLNUVYoCpKyEI.8q.SQALc1ptTVzSMKdCfWcj8Ics0zTGxeC"], ["created_at", "2020-05-05 18:38:40.644722"], ["updated_at", "2020-05-05 18:38:40.644722"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shala Leuschke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5HL8ONeGKpJF427a9jinq.LJa4lAlOFVeQZy3wOEfiN0tDSUKhKPW"], ["created_at", "2020-05-05 18:38:40.648467"], ["updated_at", "2020-05-05 18:38:40.648467"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:38:40 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.04ms) +Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:38:40 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 401 Unauthorized in 3ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 1597) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (4.3ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (207.2ms) DELETE FROM "meetings"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (146.1ms) DELETE FROM "user_meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (139.1ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (78.9ms) DELETE FROM "meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (113.5ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (104.4ms) DELETE FROM "messagems"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (132.6ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.2ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (4.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lamar Bergnaum"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$AhUjSU7MHcrSu8v3qfPRze99VCtwCBx5Bib6BZu87IvsoQtooxhIy"], ["created_at", "2020-05-05 18:39:25.334223"], ["updated_at", "2020-05-05 18:39:25.334223"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Nam ad illum ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:25.355304"], ["updated_at", "2020-05-05 18:39:25.355304"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi atque enim accusamus?"], ["description", "Sequi ipsam eos praesentium."], ["date", "2020-05-06 18:39:25.379479"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.405971"], ["updated_at", "2020-05-05 18:39:25.405971"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum nemo atque perspiciatis?"], ["description", "Maiores unde aperiam ipsa."], ["date", "2020-05-06 18:39:25.407866"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.408702"], ["updated_at", "2020-05-05 18:39:25.408702"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium voluptates similique incidunt?"], ["description", "Possimus voluptatum et sit."], ["date", "2020-05-06 18:39:25.410257"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.411403"], ["updated_at", "2020-05-05 18:39:25.411403"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis excepturi ratione ut?"], ["description", "Eveniet sed reprehenderit consequatur."], ["date", "2020-05-06 18:39:25.413073"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.414013"], ["updated_at", "2020-05-05 18:39:25.414013"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident consectetur ea eos?"], ["description", "Facilis animi rerum illo."], ["date", "2020-05-06 18:39:25.415608"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.416459"], ["updated_at", "2020-05-05 18:39:25.416459"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi consequatur veritatis error?"], ["description", "Dolores suscipit est quas."], ["date", "2020-05-06 18:39:25.417841"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.418640"], ["updated_at", "2020-05-05 18:39:25.418640"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor et non qui?"], ["description", "Eum debitis similique odit."], ["date", "2020-05-06 18:39:25.420522"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.421521"], ["updated_at", "2020-05-05 18:39:25.421521"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius quos ut recusandae?"], ["description", "Rerum quo tempore et."], ["date", "2020-05-06 18:39:25.422879"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.423626"], ["updated_at", "2020-05-05 18:39:25.423626"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati asperiores autem exercitationem?"], ["description", "Sapiente qui numquam provident."], ["date", "2020-05-06 18:39:25.424831"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.425642"], ["updated_at", "2020-05-05 18:39:25.425642"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequuntur dolores sint et?"], ["description", "Delectus atque perspiciatis architecto."], ["date", "2020-05-06 18:39:25.428405"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.429506"], ["updated_at", "2020-05-05 18:39:25.429506"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem non sunt aliquam?"], ["description", "Numquam et omnis labore."], ["date", "2020-05-06 18:39:25.431054"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.431875"], ["updated_at", "2020-05-05 18:39:25.431875"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa omnis provident excepturi?"], ["description", "Velit aliquid excepturi velit."], ["date", "2020-05-06 18:39:25.433170"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.433920"], ["updated_at", "2020-05-05 18:39:25.433920"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto quia voluptatem nulla?"], ["description", "Qui dolor repudiandae eveniet."], ["date", "2020-05-06 18:39:25.435161"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.436040"], ["updated_at", "2020-05-05 18:39:25.436040"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut placeat nisi et?"], ["description", "Harum quas provident dolorum."], ["date", "2020-05-06 18:39:25.437323"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.438082"], ["updated_at", "2020-05-05 18:39:25.438082"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non nisi aperiam possimus?"], ["description", "Magni hic fugiat at."], ["date", "2020-05-06 18:39:25.439575"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.440902"], ["updated_at", "2020-05-05 18:39:25.440902"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem error nihil dolores?"], ["description", "Qui molestias exercitationem deserunt."], ["date", "2020-05-06 18:39:25.442449"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.443310"], ["updated_at", "2020-05-05 18:39:25.443310"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt consequatur ut in?"], ["description", "Laudantium dolorem quae aut."], ["date", "2020-05-06 18:39:25.445309"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.446411"], ["updated_at", "2020-05-05 18:39:25.446411"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam error cumque magni?"], ["description", "Est repellendus temporibus inventore."], ["date", "2020-05-06 18:39:25.447893"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.448687"], ["updated_at", "2020-05-05 18:39:25.448687"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet eum rerum vel?"], ["description", "Est asperiores velit magnam."], ["date", "2020-05-06 18:39:25.450052"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.450895"], ["updated_at", "2020-05-05 18:39:25.450895"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae molestiae aut et?"], ["description", "Quia id ex autem."], ["date", "2020-05-06 18:39:25.452216"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.452948"], ["updated_at", "2020-05-05 18:39:25.452948"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:39:25 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.4ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.34ms) +Completed 200 OK in 35ms (Views: 16.2ms | ActiveRecord: 0.6ms | Allocations: 8644) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Piper Torphy DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$sHH.HELxKb90HedmJzgDX.DKZVt/kdA3F2MudCihc2uhSbI02ZjI2"], ["created_at", "2020-05-05 18:39:25.541450"], ["updated_at", "2020-05-05 18:39:25.541450"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quaerat"], ["description", "Saepe ut ut itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:25.545906"], ["updated_at", "2020-05-05 18:39:25.545906"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque ea consequuntur est?"], ["description", "Sequi et provident velit."], ["date", "2020-05-06 18:39:25.547816"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.548849"], ["updated_at", "2020-05-05 18:39:25.548849"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non aut unde exercitationem?"], ["description", "Enim facere qui voluptates."], ["date", "2020-05-06 18:39:25.550409"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.551548"], ["updated_at", "2020-05-05 18:39:25.551548"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum est praesentium vel?"], ["description", "Iusto possimus neque minus."], ["date", "2020-05-06 18:39:25.553438"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.554364"], ["updated_at", "2020-05-05 18:39:25.554364"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus eaque sunt et?"], ["description", "Magni id veritatis consequatur."], ["date", "2020-05-06 18:39:25.555647"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.556402"], ["updated_at", "2020-05-05 18:39:25.556402"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et expedita quo illum?"], ["description", "Ducimus beatae cum quo."], ["date", "2020-05-06 18:39:25.557580"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.558276"], ["updated_at", "2020-05-05 18:39:25.558276"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus velit officia debitis?"], ["description", "Eum reiciendis eum harum."], ["date", "2020-05-06 18:39:25.559507"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.560552"], ["updated_at", "2020-05-05 18:39:25.560552"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea consequuntur cupiditate similique?"], ["description", "Et doloribus voluptas neque."], ["date", "2020-05-06 18:39:25.562815"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.563958"], ["updated_at", "2020-05-05 18:39:25.563958"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum consectetur natus nam?"], ["description", "Fugit sequi exercitationem commodi."], ["date", "2020-05-06 18:39:25.565370"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.566185"], ["updated_at", "2020-05-05 18:39:25.566185"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui dolore non earum?"], ["description", "Ducimus sed mollitia est."], ["date", "2020-05-06 18:39:25.567516"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.568277"], ["updated_at", "2020-05-05 18:39:25.568277"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est qui enim dolores?"], ["description", "Rerum non ea magnam."], ["date", "2020-05-06 18:39:25.570059"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.570812"], ["updated_at", "2020-05-05 18:39:25.570812"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis eligendi quasi eius?"], ["description", "Quia quam laborum omnis."], ["date", "2020-05-06 18:39:25.572058"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.572759"], ["updated_at", "2020-05-05 18:39:25.572759"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias dolor et est?"], ["description", "Occaecati voluptas ea repellat."], ["date", "2020-05-06 18:39:25.574000"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.574717"], ["updated_at", "2020-05-05 18:39:25.574717"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A dolores facilis qui?"], ["description", "Corporis autem quia amet."], ["date", "2020-05-06 18:39:25.575967"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.576827"], ["updated_at", "2020-05-05 18:39:25.576827"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias error minima omnis?"], ["description", "Iure modi ut odit."], ["date", "2020-05-06 18:39:25.578713"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.579861"], ["updated_at", "2020-05-05 18:39:25.579861"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint doloribus nobis quis?"], ["description", "Optio architecto esse dicta."], ["date", "2020-05-06 18:39:25.582253"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.583289"], ["updated_at", "2020-05-05 18:39:25.583289"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae nesciunt quia illo?"], ["description", "Voluptatibus nihil sapiente dolorum."], ["date", "2020-05-06 18:39:25.584678"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.585417"], ["updated_at", "2020-05-05 18:39:25.585417"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur voluptatem quos veniam?"], ["description", "Deleniti est ut at."], ["date", "2020-05-06 18:39:25.586729"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.587513"], ["updated_at", "2020-05-05 18:39:25.587513"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam perferendis minus occaecati?"], ["description", "Debitis nihil est nobis."], ["date", "2020-05-06 18:39:25.588880"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.589766"], ["updated_at", "2020-05-05 18:39:25.589766"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate quas iste deserunt?"], ["description", "Incidunt commodi necessitatibus eveniet."], ["date", "2020-05-06 18:39:25.591009"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.591707"], ["updated_at", "2020-05-05 18:39:25.591707"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reiciendis aspernatur corporis ut?"], ["description", "Delectus cum distinctio perspiciatis."], ["date", "2020-05-06 18:39:25.592851"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.593745"], ["updated_at", "2020-05-05 18:39:25.593745"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:39:25 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.1ms) +Completed 200 OK in 11ms (Views: 9.9ms | ActiveRecord: 0.2ms | Allocations: 5516) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Barton Botsford"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$r6kPryHOJFlgAcWVW6V7deHyFekwmd9Lg25GJ5rpQpLe04WyaFQHG"], ["created_at", "2020-05-05 18:39:25.621541"], ["updated_at", "2020-05-05 18:39:25.621541"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Molestias veniam architecto eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:25.625369"], ["updated_at", "2020-05-05 18:39:25.625369"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum id consequuntur sit?"], ["description", "Odit repellendus odio quo."], ["date", "2020-05-06 18:39:25.627526"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.628902"], ["updated_at", "2020-05-05 18:39:25.628902"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui doloremque porro et?"], ["description", "Laudantium eaque illo rerum."], ["date", "2020-05-06 18:39:25.630448"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.631171"], ["updated_at", "2020-05-05 18:39:25.631171"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed et et cumque?"], ["description", "Harum quae aut commodi."], ["date", "2020-05-06 18:39:25.632418"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.633179"], ["updated_at", "2020-05-05 18:39:25.633179"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis culpa voluptatem et?"], ["description", "Vel deleniti quia vel."], ["date", "2020-05-06 18:39:25.634326"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.635022"], ["updated_at", "2020-05-05 18:39:25.635022"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem non aperiam dolor?"], ["description", "Eum est molestias veniam."], ["date", "2020-05-06 18:39:25.636323"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.637040"], ["updated_at", "2020-05-05 18:39:25.637040"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut ut at adipisci?"], ["description", "Non ab accusamus molestias."], ["date", "2020-05-06 18:39:25.638164"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.638840"], ["updated_at", "2020-05-05 18:39:25.638840"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur nesciunt accusamus quod?"], ["description", "Voluptatibus autem maxime et."], ["date", "2020-05-06 18:39:25.640045"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.641491"], ["updated_at", "2020-05-05 18:39:25.641491"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate quam id architecto?"], ["description", "Exercitationem quidem et iusto."], ["date", "2020-05-06 18:39:25.643378"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.645513"], ["updated_at", "2020-05-05 18:39:25.645513"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In pariatur mollitia ullam?"], ["description", "Id quas non aliquid."], ["date", "2020-05-06 18:39:25.647129"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.668286"], ["updated_at", "2020-05-05 18:39:25.668286"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus qui dolores quibusdam?"], ["description", "Cumque sit voluptatum vel."], ["date", "2020-05-06 18:39:25.670677"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.671672"], ["updated_at", "2020-05-05 18:39:25.671672"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit est et odit?"], ["description", "Unde laborum rerum beatae."], ["date", "2020-05-06 18:39:25.673045"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.673760"], ["updated_at", "2020-05-05 18:39:25.673760"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore eaque quos non?"], ["description", "Qui fugiat nihil vero."], ["date", "2020-05-06 18:39:25.674880"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.675601"], ["updated_at", "2020-05-05 18:39:25.675601"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta dolor repellat officiis?"], ["description", "Ea dolores pariatur a."], ["date", "2020-05-06 18:39:25.676876"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.677974"], ["updated_at", "2020-05-05 18:39:25.677974"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores placeat dicta harum?"], ["description", "Cumque veritatis laboriosam natus."], ["date", "2020-05-06 18:39:25.679712"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.680966"], ["updated_at", "2020-05-05 18:39:25.680966"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus dolorem et eos?"], ["description", "Incidunt qui aspernatur dolores."], ["date", "2020-05-06 18:39:25.682904"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.683836"], ["updated_at", "2020-05-05 18:39:25.683836"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere quae ut sed?"], ["description", "Libero eius fugiat repellendus."], ["date", "2020-05-06 18:39:25.685116"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.685820"], ["updated_at", "2020-05-05 18:39:25.685820"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed dolores suscipit fugiat?"], ["description", "Temporibus cupiditate id id."], ["date", "2020-05-06 18:39:25.687360"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.688176"], ["updated_at", "2020-05-05 18:39:25.688176"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui eos iusto autem?"], ["description", "Praesentium velit distinctio nihil."], ["date", "2020-05-06 18:39:25.689465"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.690176"], ["updated_at", "2020-05-05 18:39:25.690176"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure aut enim eligendi?"], ["description", "A et voluptatem dolor."], ["date", "2020-05-06 18:39:25.691301"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.691997"], ["updated_at", "2020-05-05 18:39:25.691997"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis voluptas repellat aperiam?"], ["description", "Autem doloremque modi quod."], ["date", "2020-05-06 18:39:25.693166"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.693868"], ["updated_at", "2020-05-05 18:39:25.693868"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:39:25 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms) +Completed 404 Not Found in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms | Allocations: 866) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Korey Mueller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oLXKON8nWviE77GEKN32heAUBL4VGxqGBI.97sEFaixy2C3wOKOIi"], ["created_at", "2020-05-05 18:39:25.714517"], ["updated_at", "2020-05-05 18:39:25.714517"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "amet"], ["description", "Ea et nihil occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:25.718469"], ["updated_at", "2020-05-05 18:39:25.718469"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et occaecati quibusdam esse?"], ["description", "Consequuntur possimus aut voluptatem."], ["date", "2020-05-06 18:39:25.720766"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.722753"], ["updated_at", "2020-05-05 18:39:25.722753"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione minima qui rerum?"], ["description", "Quo similique delectus consequatur."], ["date", "2020-05-06 18:39:25.724624"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.726159"], ["updated_at", "2020-05-05 18:39:25.726159"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est ipsam doloremque facilis?"], ["description", "Omnis sunt asperiores magni."], ["date", "2020-05-06 18:39:25.727703"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.728529"], ["updated_at", "2020-05-05 18:39:25.728529"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et qui quos sed?"], ["description", "Adipisci nemo sunt voluptatibus."], ["date", "2020-05-06 18:39:25.729692"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.730436"], ["updated_at", "2020-05-05 18:39:25.730436"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt perspiciatis hic cumque?"], ["description", "Cum rerum nihil beatae."], ["date", "2020-05-06 18:39:25.731607"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.732316"], ["updated_at", "2020-05-05 18:39:25.732316"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem aliquid est veniam?"], ["description", "Aut aut reiciendis modi."], ["date", "2020-05-06 18:39:25.733433"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.734103"], ["updated_at", "2020-05-05 18:39:25.734103"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et accusantium repudiandae magnam?"], ["description", "Facere ut debitis qui."], ["date", "2020-05-06 18:39:25.735226"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.735946"], ["updated_at", "2020-05-05 18:39:25.735946"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia tenetur exercitationem rerum?"], ["description", "Magnam non vitae quo."], ["date", "2020-05-06 18:39:25.737044"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.737771"], ["updated_at", "2020-05-05 18:39:25.737771"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam maiores voluptatem facere?"], ["description", "Fugit nostrum adipisci provident."], ["date", "2020-05-06 18:39:25.738865"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.739602"], ["updated_at", "2020-05-05 18:39:25.739602"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas facilis sint eum?"], ["description", "Deserunt qui occaecati necessitatibus."], ["date", "2020-05-06 18:39:25.742112"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.743221"], ["updated_at", "2020-05-05 18:39:25.743221"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id ut doloribus voluptatem?"], ["description", "Alias enim dolorem mollitia."], ["date", "2020-05-06 18:39:25.744700"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.745847"], ["updated_at", "2020-05-05 18:39:25.745847"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo alias qui qui?"], ["description", "Expedita et sed in."], ["date", "2020-05-06 18:39:25.747586"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.748490"], ["updated_at", "2020-05-05 18:39:25.748490"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui facere nostrum aut?"], ["description", "Ducimus reprehenderit dolorem ipsa."], ["date", "2020-05-06 18:39:25.749653"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.750343"], ["updated_at", "2020-05-05 18:39:25.750343"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit sunt odio distinctio?"], ["description", "Mollitia dolorem in corporis."], ["date", "2020-05-06 18:39:25.751556"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.752203"], ["updated_at", "2020-05-05 18:39:25.752203"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod at autem qui?"], ["description", "Recusandae blanditiis numquam nulla."], ["date", "2020-05-06 18:39:25.753426"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.754112"], ["updated_at", "2020-05-05 18:39:25.754112"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est et dolore necessitatibus?"], ["description", "Sed voluptas voluptas maxime."], ["date", "2020-05-06 18:39:25.755297"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.756025"], ["updated_at", "2020-05-05 18:39:25.756025"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui praesentium ea ut?"], ["description", "Consequatur illo vero odit."], ["date", "2020-05-06 18:39:25.757186"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.757873"], ["updated_at", "2020-05-05 18:39:25.757873"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In exercitationem ut magnam?"], ["description", "Exercitationem optio et adipisci."], ["date", "2020-05-06 18:39:25.759069"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.759752"], ["updated_at", "2020-05-05 18:39:25.759752"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus a est excepturi?"], ["description", "Beatae quas quis cupiditate."], ["date", "2020-05-06 18:39:25.761265"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.763136"], ["updated_at", "2020-05-05 18:39:25.763136"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima est odit non?"], ["description", "Minima quis totam beatae."], ["date", "2020-05-06 18:39:25.765207"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.766274"], ["updated_at", "2020-05-05 18:39:25.766274"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:39:25 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Diego Crona V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RlhnN.ynIU0g/2jnJr2OzufPMOz/sIcf4Ump7KDQ9yhsMa5LSH7YS"], ["created_at", "2020-05-05 18:39:25.785386"], ["updated_at", "2020-05-05 18:39:25.785386"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officiis"], ["description", "Et est occaecati sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:25.789106"], ["updated_at", "2020-05-05 18:39:25.789106"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt animi dolore omnis?"], ["description", "Est est corporis dolores."], ["date", "2020-05-06 18:39:25.790726"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.791660"], ["updated_at", "2020-05-05 18:39:25.791660"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor ut esse rerum?"], ["description", "Eius omnis modi impedit."], ["date", "2020-05-06 18:39:25.792965"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.793739"], ["updated_at", "2020-05-05 18:39:25.793739"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor aut dolores veniam?"], ["description", "Perferendis nam placeat molestiae."], ["date", "2020-05-06 18:39:25.795505"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.796527"], ["updated_at", "2020-05-05 18:39:25.796527"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit illum eum voluptas?"], ["description", "Tempore dolorum rerum deserunt."], ["date", "2020-05-06 18:39:25.797880"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.798611"], ["updated_at", "2020-05-05 18:39:25.798611"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut voluptatem aliquam sit?"], ["description", "Asperiores aut quia harum."], ["date", "2020-05-06 18:39:25.799785"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.800508"], ["updated_at", "2020-05-05 18:39:25.800508"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem sunt perferendis repudiandae?"], ["description", "Reiciendis sunt odio aperiam."], ["date", "2020-05-06 18:39:25.802331"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.803620"], ["updated_at", "2020-05-05 18:39:25.803620"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut delectus et quas?"], ["description", "Et eveniet natus eos."], ["date", "2020-05-06 18:39:25.805586"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.806774"], ["updated_at", "2020-05-05 18:39:25.806774"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est ab ad doloremque?"], ["description", "Voluptatem itaque incidunt tenetur."], ["date", "2020-05-06 18:39:25.808167"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.808902"], ["updated_at", "2020-05-05 18:39:25.808902"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptate consequuntur repellat optio?"], ["description", "Est veniam repellat saepe."], ["date", "2020-05-06 18:39:25.810055"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.810786"], ["updated_at", "2020-05-05 18:39:25.810786"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil rerum totam officia?"], ["description", "In occaecati fugiat ea."], ["date", "2020-05-06 18:39:25.813122"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.814108"], ["updated_at", "2020-05-05 18:39:25.814108"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem sunt voluptatem magnam?"], ["description", "Quas quisquam impedit quibusdam."], ["date", "2020-05-06 18:39:25.815509"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.816356"], ["updated_at", "2020-05-05 18:39:25.816356"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laudantium occaecati quia laborum?"], ["description", "Enim itaque mollitia odio."], ["date", "2020-05-06 18:39:25.817666"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.818431"], ["updated_at", "2020-05-05 18:39:25.818431"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio dolorem voluptate totam?"], ["description", "Aut voluptatem eius labore."], ["date", "2020-05-06 18:39:25.819673"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.820445"], ["updated_at", "2020-05-05 18:39:25.820445"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor qui debitis atque?"], ["description", "Quas quos vitae enim."], ["date", "2020-05-06 18:39:25.822236"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.823460"], ["updated_at", "2020-05-05 18:39:25.823460"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti alias aut nemo?"], ["description", "Iusto enim molestiae consectetur."], ["date", "2020-05-06 18:39:25.824850"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.825555"], ["updated_at", "2020-05-05 18:39:25.825555"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus sed reiciendis et?"], ["description", "Eveniet cum sed voluptates."], ["date", "2020-05-06 18:39:25.826868"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.827680"], ["updated_at", "2020-05-05 18:39:25.827680"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem tenetur qui qui?"], ["description", "Repellat aperiam voluptas est."], ["date", "2020-05-06 18:39:25.829503"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.830500"], ["updated_at", "2020-05-05 18:39:25.830500"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis harum cumque reprehenderit?"], ["description", "Officia officiis nemo nihil."], ["date", "2020-05-06 18:39:25.831940"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.832698"], ["updated_at", "2020-05-05 18:39:25.832698"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Hic voluptatem minus vel?"], ["description", "Excepturi debitis qui optio."], ["date", "2020-05-06 18:39:25.833861"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.834555"], ["updated_at", "2020-05-05 18:39:25.834555"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla perferendis repellat incidunt?"], ["description", "Soluta eius veritatis nobis."], ["date", "2020-05-06 18:39:25.835749"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.836455"], ["updated_at", "2020-05-05 18:39:25.836455"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:39:25 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.8ms) +Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.3ms | Allocations: 1086) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (16.9ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Xochitl Konopelski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7iv9gEZzIoHQt5R9iSMv8Ocn0u98WCaXY4gTLO9hu6qH.CVs3u6S6"], ["created_at", "2020-05-05 18:39:25.854572"], ["updated_at", "2020-05-05 18:39:25.854572"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellat"], ["description", "Nisi ipsa sapiente nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:25.873525"], ["updated_at", "2020-05-05 18:39:25.873525"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non ut blanditiis molestias?"], ["description", "Facilis dolor qui aut."], ["date", "2020-05-06 18:39:25.875117"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.876071"], ["updated_at", "2020-05-05 18:39:25.876071"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem at voluptatem et?"], ["description", "Ut autem vitae perspiciatis."], ["date", "2020-05-06 18:39:25.877473"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.878832"], ["updated_at", "2020-05-05 18:39:25.878832"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia magni voluptas consequatur?"], ["description", "Sapiente ipsum est minus."], ["date", "2020-05-06 18:39:25.880276"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.881120"], ["updated_at", "2020-05-05 18:39:25.881120"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex vel et ut?"], ["description", "Eaque fuga atque qui."], ["date", "2020-05-06 18:39:25.883365"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.884501"], ["updated_at", "2020-05-05 18:39:25.884501"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta inventore fugit sit?"], ["description", "Et veniam quod odio."], ["date", "2020-05-06 18:39:25.886204"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.887703"], ["updated_at", "2020-05-05 18:39:25.887703"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo sunt qui rem?"], ["description", "Sunt magni ut dolor."], ["date", "2020-05-06 18:39:25.889070"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.889793"], ["updated_at", "2020-05-05 18:39:25.889793"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur itaque cum vitae?"], ["description", "Deserunt velit architecto sit."], ["date", "2020-05-06 18:39:25.890984"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.891717"], ["updated_at", "2020-05-05 18:39:25.891717"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est id totam cum?"], ["description", "Quae totam quas autem."], ["date", "2020-05-06 18:39:25.892830"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.893520"], ["updated_at", "2020-05-05 18:39:25.893520"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil nemo molestias laborum?"], ["description", "Aliquid qui non voluptas."], ["date", "2020-05-06 18:39:25.895101"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.896274"], ["updated_at", "2020-05-05 18:39:25.896274"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt sit doloribus rerum?"], ["description", "Qui iure ad illo."], ["date", "2020-05-06 18:39:25.898366"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.899191"], ["updated_at", "2020-05-05 18:39:25.899191"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem et et facere?"], ["description", "Explicabo quia aut inventore."], ["date", "2020-05-06 18:39:25.900434"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.901189"], ["updated_at", "2020-05-05 18:39:25.901189"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur unde nulla sed?"], ["description", "Atque asperiores sint repudiandae."], ["date", "2020-05-06 18:39:25.902984"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.904098"], ["updated_at", "2020-05-05 18:39:25.904098"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque nihil qui optio?"], ["description", "Rem et ducimus odit."], ["date", "2020-05-06 18:39:25.905491"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.906209"], ["updated_at", "2020-05-05 18:39:25.906209"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et facere architecto cum?"], ["description", "Iure alias expedita odio."], ["date", "2020-05-06 18:39:25.907451"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.908172"], ["updated_at", "2020-05-05 18:39:25.908172"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error iste tempora nesciunt?"], ["description", "Est laborum fugit aut."], ["date", "2020-05-06 18:39:25.909378"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.910250"], ["updated_at", "2020-05-05 18:39:25.910250"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores nemo qui facere?"], ["description", "Corrupti dolore officia repellendus."], ["date", "2020-05-06 18:39:25.911983"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.913247"], ["updated_at", "2020-05-05 18:39:25.913247"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam dolores ut ut?"], ["description", "Facere maiores perferendis ut."], ["date", "2020-05-06 18:39:25.914625"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.915382"], ["updated_at", "2020-05-05 18:39:25.915382"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi aut eum dicta?"], ["description", "Blanditiis aliquid nemo quo."], ["date", "2020-05-06 18:39:25.916892"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.917848"], ["updated_at", "2020-05-05 18:39:25.917848"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa ut consequatur ex?"], ["description", "Laboriosam et sapiente aut."], ["date", "2020-05-06 18:39:25.919250"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.920052"], ["updated_at", "2020-05-05 18:39:25.920052"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quibusdam itaque deleniti alias?"], ["description", "Qui asperiores eligendi ullam."], ["date", "2020-05-06 18:39:25.921601"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.923018"], ["updated_at", "2020-05-05 18:39:25.923018"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:39:25 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.68ms) +Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.2ms | Allocations: 1057) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (10.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mikaela Jast"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/z1QcgIUGOysqj35HutlpeGyqYTlhckh5foJIo32HoYuA5UqREqWG"], ["created_at", "2020-05-05 18:39:25.944990"], ["updated_at", "2020-05-05 18:39:25.944990"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "beatae"], ["description", "Ut voluptatem et nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:25.949045"], ["updated_at", "2020-05-05 18:39:25.949045"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores repudiandae deleniti ut?"], ["description", "Dolore aut sapiente excepturi."], ["date", "2020-05-06 18:39:25.950785"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.951729"], ["updated_at", "2020-05-05 18:39:25.951729"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam amet laboriosam eos?"], ["description", "Ad est deserunt sed."], ["date", "2020-05-06 18:39:25.953045"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.953749"], ["updated_at", "2020-05-05 18:39:25.953749"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni magnam qui nulla?"], ["description", "Inventore officiis non voluptate."], ["date", "2020-05-06 18:39:25.954936"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.955761"], ["updated_at", "2020-05-05 18:39:25.955761"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minus ad cupiditate dolor?"], ["description", "Aspernatur possimus saepe ut."], ["date", "2020-05-06 18:39:25.956952"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.957640"], ["updated_at", "2020-05-05 18:39:25.957640"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum qui repudiandae laboriosam?"], ["description", "Dolore dolores autem molestiae."], ["date", "2020-05-06 18:39:25.958827"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.959611"], ["updated_at", "2020-05-05 18:39:25.959611"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quaerat tempora est?"], ["description", "Est non aut tempore."], ["date", "2020-05-06 18:39:25.960894"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.963011"], ["updated_at", "2020-05-05 18:39:25.963011"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus sed temporibus reprehenderit?"], ["description", "Quo perspiciatis consequatur saepe."], ["date", "2020-05-06 18:39:25.966053"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.967732"], ["updated_at", "2020-05-05 18:39:25.967732"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo totam tempore id?"], ["description", "Porro rerum placeat veritatis."], ["date", "2020-05-06 18:39:25.969236"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.969996"], ["updated_at", "2020-05-05 18:39:25.969996"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur porro sit ullam?"], ["description", "Maxime molestiae illo ipsum."], ["date", "2020-05-06 18:39:25.971235"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.971936"], ["updated_at", "2020-05-05 18:39:25.971936"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui delectus inventore suscipit?"], ["description", "Enim beatae consequuntur aut."], ["date", "2020-05-06 18:39:25.973847"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.974670"], ["updated_at", "2020-05-05 18:39:25.974670"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo provident optio possimus?"], ["description", "Provident rerum laudantium dignissimos."], ["date", "2020-05-06 18:39:25.975975"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.976727"], ["updated_at", "2020-05-05 18:39:25.976727"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto quia voluptatem sint?"], ["description", "Accusantium nobis voluptatem et."], ["date", "2020-05-06 18:39:25.977945"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.979109"], ["updated_at", "2020-05-05 18:39:25.979109"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis at mollitia minus?"], ["description", "Ea vel ratione dolor."], ["date", "2020-05-06 18:39:25.980554"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.981769"], ["updated_at", "2020-05-05 18:39:25.981769"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et magni nobis nostrum?"], ["description", "Veritatis fugiat quia libero."], ["date", "2020-05-06 18:39:25.983948"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.985031"], ["updated_at", "2020-05-05 18:39:25.985031"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga commodi cupiditate dolor?"], ["description", "Architecto tempora deleniti iste."], ["date", "2020-05-06 18:39:25.986586"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.987373"], ["updated_at", "2020-05-05 18:39:25.987373"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Adipisci dicta similique ipsa?"], ["description", "Iste illum aliquam aut."], ["date", "2020-05-06 18:39:25.988656"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.989343"], ["updated_at", "2020-05-05 18:39:25.989343"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et deserunt non reprehenderit?"], ["description", "Reprehenderit saepe dolorum quas."], ["date", "2020-05-06 18:39:25.990536"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.991207"], ["updated_at", "2020-05-05 18:39:25.991207"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis libero qui dolorum?"], ["description", "Dolores qui voluptatem iste."], ["date", "2020-05-06 18:39:25.992503"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.993256"], ["updated_at", "2020-05-05 18:39:25.993256"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam unde sit nostrum?"], ["description", "Voluptatem autem amet accusantium."], ["date", "2020-05-06 18:39:25.994467"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.995299"], ["updated_at", "2020-05-05 18:39:25.995299"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quidem et exercitationem?"], ["description", "Cupiditate deserunt nesciunt voluptatem."], ["date", "2020-05-06 18:39:25.997092"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:25.998044"], ["updated_at", "2020-05-05 18:39:25.998044"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:39:25 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 884) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Arden Watsica"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Lry4tozqSQm8DE.4ByS7UenK0ySkmjQUMFUrr7bsmbHRa0wAFWj2."], ["created_at", "2020-05-05 18:39:26.014496"], ["updated_at", "2020-05-05 18:39:26.014496"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolore"], ["description", "Fuga molestiae voluptatem tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.018661"], ["updated_at", "2020-05-05 18:39:26.018661"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et blanditiis deserunt in?"], ["description", "Earum sit facilis ullam."], ["date", "2020-05-06 18:39:26.020237"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.021166"], ["updated_at", "2020-05-05 18:39:26.021166"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut et qui enim?"], ["description", "Nulla suscipit consequatur aut."], ["date", "2020-05-06 18:39:26.023505"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.024862"], ["updated_at", "2020-05-05 18:39:26.024862"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita neque veniam dolorum?"], ["description", "Culpa reiciendis esse nostrum."], ["date", "2020-05-06 18:39:26.026927"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.028003"], ["updated_at", "2020-05-05 18:39:26.028003"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo est numquam pariatur?"], ["description", "Architecto eum error natus."], ["date", "2020-05-06 18:39:26.029574"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.030512"], ["updated_at", "2020-05-05 18:39:26.030512"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem nesciunt cumque perspiciatis?"], ["description", "Ex molestiae accusantium qui."], ["date", "2020-05-06 18:39:26.031749"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.032439"], ["updated_at", "2020-05-05 18:39:26.032439"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est facilis reprehenderit quod?"], ["description", "Aut omnis quos quidem."], ["date", "2020-05-06 18:39:26.033560"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.034271"], ["updated_at", "2020-05-05 18:39:26.034271"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita quaerat et quia?"], ["description", "Quo assumenda aut qui."], ["date", "2020-05-06 18:39:26.035525"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.036386"], ["updated_at", "2020-05-05 18:39:26.036386"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia est sequi et?"], ["description", "Est eum sit accusantium."], ["date", "2020-05-06 18:39:26.037586"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.038269"], ["updated_at", "2020-05-05 18:39:26.038269"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto beatae ab doloremque?"], ["description", "Est occaecati quidem officia."], ["date", "2020-05-06 18:39:26.039393"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.040040"], ["updated_at", "2020-05-05 18:39:26.040040"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis rerum est nisi?"], ["description", "Laboriosam temporibus inventore dolores."], ["date", "2020-05-06 18:39:26.041949"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.042986"], ["updated_at", "2020-05-05 18:39:26.042986"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem hic earum ab?"], ["description", "Voluptates eveniet iste corrupti."], ["date", "2020-05-06 18:39:26.046102"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.047756"], ["updated_at", "2020-05-05 18:39:26.047756"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui dolorem inventore explicabo?"], ["description", "Voluptatem quia dolor voluptatem."], ["date", "2020-05-06 18:39:26.049303"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.050134"], ["updated_at", "2020-05-05 18:39:26.050134"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam commodi officia est?"], ["description", "Exercitationem asperiores eius vitae."], ["date", "2020-05-06 18:39:26.051313"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.051991"], ["updated_at", "2020-05-05 18:39:26.051991"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia qui quia est?"], ["description", "Id dolore officia voluptas."], ["date", "2020-05-06 18:39:26.053252"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.053939"], ["updated_at", "2020-05-05 18:39:26.053939"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut id nesciunt quas?"], ["description", "Amet voluptas adipisci quia."], ["date", "2020-05-06 18:39:26.055156"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.055860"], ["updated_at", "2020-05-05 18:39:26.055860"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui ut qui est?"], ["description", "Ipsum recusandae rerum non."], ["date", "2020-05-06 18:39:26.057067"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.057773"], ["updated_at", "2020-05-05 18:39:26.057773"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis et praesentium iure?"], ["description", "Molestias possimus et vero."], ["date", "2020-05-06 18:39:26.058896"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.059566"], ["updated_at", "2020-05-05 18:39:26.059566"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga in adipisci mollitia?"], ["description", "Accusamus sit ad quia."], ["date", "2020-05-06 18:39:26.060687"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.061388"], ["updated_at", "2020-05-05 18:39:26.061388"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut vel explicabo nihil?"], ["description", "Voluptas et aspernatur nemo."], ["date", "2020-05-06 18:39:26.063783"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.065350"], ["updated_at", "2020-05-05 18:39:26.065350"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit quia saepe illo?"], ["description", "Voluptas eaque est reprehenderit."], ["date", "2020-05-06 18:39:26.066960"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.067813"], ["updated_at", "2020-05-05 18:39:26.067813"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:39:26 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["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: 867) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Fredric Altenwerth"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$wCnggy8kaJZBapD4gFst6.FRKH5c332PWrI8KZqOM96WcHbFPBi3."], ["created_at", "2020-05-05 18:39:26.084070"], ["updated_at", "2020-05-05 18:39:26.084070"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Quas quaerat recusandae reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.087382"], ["updated_at", "2020-05-05 18:39:26.087382"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati nostrum alias error?"], ["description", "Ab iste deleniti eveniet."], ["date", "2020-05-06 18:39:26.088960"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.089896"], ["updated_at", "2020-05-05 18:39:26.089896"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia nulla et molestiae?"], ["description", "Sed blanditiis alias in."], ["date", "2020-05-06 18:39:26.091231"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.091958"], ["updated_at", "2020-05-05 18:39:26.091958"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem nihil et sed?"], ["description", "Neque consequuntur modi incidunt."], ["date", "2020-05-06 18:39:26.093156"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.093995"], ["updated_at", "2020-05-05 18:39:26.093995"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi itaque qui quas?"], ["description", "Cumque ratione quae rem."], ["date", "2020-05-06 18:39:26.095689"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.096625"], ["updated_at", "2020-05-05 18:39:26.096625"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita architecto sapiente aliquam?"], ["description", "Recusandae tempore corporis sed."], ["date", "2020-05-06 18:39:26.097854"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.098542"], ["updated_at", "2020-05-05 18:39:26.098542"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia voluptas velit aperiam?"], ["description", "Veniam nisi dolores quos."], ["date", "2020-05-06 18:39:26.099703"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.100383"], ["updated_at", "2020-05-05 18:39:26.100383"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti illo ducimus qui?"], ["description", "Vel quibusdam pariatur sit."], ["date", "2020-05-06 18:39:26.101533"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.102232"], ["updated_at", "2020-05-05 18:39:26.102232"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus harum autem recusandae?"], ["description", "Ea aliquid voluptas quia."], ["date", "2020-05-06 18:39:26.104183"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.105750"], ["updated_at", "2020-05-05 18:39:26.105750"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit praesentium laborum officiis?"], ["description", "Pariatur rerum ipsam nihil."], ["date", "2020-05-06 18:39:26.107611"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.108528"], ["updated_at", "2020-05-05 18:39:26.108528"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui perferendis praesentium molestiae?"], ["description", "Nesciunt ut sunt ab."], ["date", "2020-05-06 18:39:26.110335"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.111317"], ["updated_at", "2020-05-05 18:39:26.111317"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis quo tempore magnam?"], ["description", "In adipisci qui est."], ["date", "2020-05-06 18:39:26.113102"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.113981"], ["updated_at", "2020-05-05 18:39:26.113981"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione harum necessitatibus et?"], ["description", "Sed amet facere qui."], ["date", "2020-05-06 18:39:26.115180"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.115896"], ["updated_at", "2020-05-05 18:39:26.115896"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae velit maxime corporis?"], ["description", "Sed perspiciatis saepe impedit."], ["date", "2020-05-06 18:39:26.117024"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.117714"], ["updated_at", "2020-05-05 18:39:26.117714"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae ab nostrum unde?"], ["description", "Ipsum quidem officiis voluptatem."], ["date", "2020-05-06 18:39:26.118836"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.119590"], ["updated_at", "2020-05-05 18:39:26.119590"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt voluptas qui reprehenderit?"], ["description", "Eligendi maxime dicta omnis."], ["date", "2020-05-06 18:39:26.120824"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.121532"], ["updated_at", "2020-05-05 18:39:26.121532"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus porro sunt voluptas?"], ["description", "Eum quis aspernatur cupiditate."], ["date", "2020-05-06 18:39:26.122959"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.124273"], ["updated_at", "2020-05-05 18:39:26.124273"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos sed alias nam?"], ["description", "Est atque et voluptates."], ["date", "2020-05-06 18:39:26.125887"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.126938"], ["updated_at", "2020-05-05 18:39:26.126938"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum voluptatem quis qui?"], ["description", "Ipsam et voluptatum saepe."], ["date", "2020-05-06 18:39:26.128820"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.129728"], ["updated_at", "2020-05-05 18:39:26.129728"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque ipsam aut nihil?"], ["description", "Quia aliquid eum dolores."], ["date", "2020-05-06 18:39:26.130865"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.131556"], ["updated_at", "2020-05-05 18:39:26.131556"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum iusto natus sint?"], ["description", "Vel praesentium nesciunt numquam."], ["date", "2020-05-06 18:39:26.132858"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.133567"], ["updated_at", "2020-05-05 18:39:26.133567"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:39:26 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"title"=>"Visit Narnia", "description"=>"false", "date"=>"2020-05-06 15:39:26 -0300", "link"=>"https://zoom.com/fakelink", "meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Visit Narnia"], ["description", "false"], ["date", "2020-05-06 18:39:26"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.160179"], ["updated_at", "2020-05-05 18:39:26.160179"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.53ms) +Completed 201 Created in 7ms (Views: 1.2ms | ActiveRecord: 0.6ms | Allocations: 1699) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Norris Pfannerstill IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3Yhh9h61zWWp7QAZnmFpOeKLiVOvFeERrWGGFM.OBmzCygn9H9ZDe"], ["created_at", "2020-05-05 18:39:26.174689"], ["updated_at", "2020-05-05 18:39:26.174689"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laborum"], ["description", "Cupiditate quis beatae maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.178783"], ["updated_at", "2020-05-05 18:39:26.178783"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam iusto facilis vitae?"], ["description", "Quia odio asperiores qui."], ["date", "2020-05-06 18:39:26.180473"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.181453"], ["updated_at", "2020-05-05 18:39:26.181453"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio accusamus blanditiis qui?"], ["description", "Atque voluptate eum eligendi."], ["date", "2020-05-06 18:39:26.182793"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.184210"], ["updated_at", "2020-05-05 18:39:26.184210"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit fuga fugiat expedita?"], ["description", "Ipsa voluptas consequatur in."], ["date", "2020-05-06 18:39:26.186758"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.187856"], ["updated_at", "2020-05-05 18:39:26.187856"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo a consequatur sint?"], ["description", "Cupiditate consequatur aspernatur tempora."], ["date", "2020-05-06 18:39:26.189138"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.189829"], ["updated_at", "2020-05-05 18:39:26.189829"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit placeat dolores voluptatem?"], ["description", "Nihil voluptatibus expedita quas."], ["date", "2020-05-06 18:39:26.190963"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.191636"], ["updated_at", "2020-05-05 18:39:26.191636"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est qui officia velit?"], ["description", "Molestias nulla dolores vero."], ["date", "2020-05-06 18:39:26.192744"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.193421"], ["updated_at", "2020-05-05 18:39:26.193421"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error enim ducimus vero?"], ["description", "Molestias nesciunt ipsum sapiente."], ["date", "2020-05-06 18:39:26.194559"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.195558"], ["updated_at", "2020-05-05 18:39:26.195558"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis deleniti in debitis?"], ["description", "Corrupti consequatur labore dolorum."], ["date", "2020-05-06 18:39:26.197340"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.198380"], ["updated_at", "2020-05-05 18:39:26.198380"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi ut et ipsam?"], ["description", "Et aut quisquam ab."], ["date", "2020-05-06 18:39:26.199760"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.200506"], ["updated_at", "2020-05-05 18:39:26.200506"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus ea occaecati magni?"], ["description", "Culpa sit fuga et."], ["date", "2020-05-06 18:39:26.202327"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.203159"], ["updated_at", "2020-05-05 18:39:26.203159"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem beatae dolorem quas?"], ["description", "Placeat numquam ut modi."], ["date", "2020-05-06 18:39:26.205152"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.206170"], ["updated_at", "2020-05-05 18:39:26.206170"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum temporibus molestiae pariatur?"], ["description", "Qui laudantium voluptatem voluptatibus."], ["date", "2020-05-06 18:39:26.207621"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.208350"], ["updated_at", "2020-05-05 18:39:26.208350"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur nisi architecto animi?"], ["description", "Accusamus dolor provident corporis."], ["date", "2020-05-06 18:39:26.209612"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.210398"], ["updated_at", "2020-05-05 18:39:26.210398"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem nostrum reprehenderit quo?"], ["description", "Aliquid dolorem voluptatem culpa."], ["date", "2020-05-06 18:39:26.212079"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.213059"], ["updated_at", "2020-05-05 18:39:26.213059"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut libero sed et?"], ["description", "Atque voluptas alias dicta."], ["date", "2020-05-06 18:39:26.214474"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.215260"], ["updated_at", "2020-05-05 18:39:26.215260"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Hic impedit cum accusamus?"], ["description", "Pariatur explicabo laborum omnis."], ["date", "2020-05-06 18:39:26.216532"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.217245"], ["updated_at", "2020-05-05 18:39:26.217245"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut laboriosam ut sed?"], ["description", "Quasi dolorem est quia."], ["date", "2020-05-06 18:39:26.218382"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.219067"], ["updated_at", "2020-05-05 18:39:26.219067"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae est eum quibusdam?"], ["description", "Occaecati animi error qui."], ["date", "2020-05-06 18:39:26.220338"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.221003"], ["updated_at", "2020-05-05 18:39:26.221003"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores omnis ea pariatur?"], ["description", "Ut eveniet nihil aut."], ["date", "2020-05-06 18:39:26.222186"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.222907"], ["updated_at", "2020-05-05 18:39:26.222907"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet atque quam rerum?"], ["description", "Impedit aut aut sit."], ["date", "2020-05-06 18:39:26.224474"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.225660"], ["updated_at", "2020-05-05 18:39:26.225660"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:39:26 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3010) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.4ms) SAVEPOINT active_record_2 + User Create (6.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Moses Gutmann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ui0XM0bo0Z/z7njdfF34N.lLAx2q.sE4XhEEhizcj5QH9I/RmTgk2"], ["created_at", "2020-05-05 18:39:26.243274"], ["updated_at", "2020-05-05 18:39:26.243274"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quam"], ["description", "Sequi incidunt exercitationem et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.253413"], ["updated_at", "2020-05-05 18:39:26.253413"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga quo id impedit?"], ["description", "Dolor molestiae minima quidem."], ["date", "2020-05-06 18:39:26.254979"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.255946"], ["updated_at", "2020-05-05 18:39:26.255946"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quasi ex harum?"], ["description", "Aliquam omnis voluptatem quis."], ["date", "2020-05-06 18:39:26.257297"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.258002"], ["updated_at", "2020-05-05 18:39:26.258002"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum enim et minus?"], ["description", "Optio sequi nostrum harum."], ["date", "2020-05-06 18:39:26.259132"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.259807"], ["updated_at", "2020-05-05 18:39:26.259807"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod temporibus hic dolorem?"], ["description", "Numquam nisi eius quas."], ["date", "2020-05-06 18:39:26.261076"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.262218"], ["updated_at", "2020-05-05 18:39:26.262218"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor suscipit et qui?"], ["description", "Veritatis sit quia eligendi."], ["date", "2020-05-06 18:39:26.263916"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.265935"], ["updated_at", "2020-05-05 18:39:26.265935"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia sit ea neque?"], ["description", "Molestiae ad aut unde."], ["date", "2020-05-06 18:39:26.267879"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.268873"], ["updated_at", "2020-05-05 18:39:26.268873"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis soluta magni laboriosam?"], ["description", "Quia ut tempora repellat."], ["date", "2020-05-06 18:39:26.270169"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.270850"], ["updated_at", "2020-05-05 18:39:26.270850"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem consequatur animi enim?"], ["description", "Et perferendis iure iusto."], ["date", "2020-05-06 18:39:26.271964"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.272651"], ["updated_at", "2020-05-05 18:39:26.272651"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut tenetur architecto veniam?"], ["description", "Tempore quos repellendus voluptas."], ["date", "2020-05-06 18:39:26.273738"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.274414"], ["updated_at", "2020-05-05 18:39:26.274414"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis molestias laudantium molestiae?"], ["description", "Maxime molestias accusamus neque."], ["date", "2020-05-06 18:39:26.276395"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.277636"], ["updated_at", "2020-05-05 18:39:26.277636"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit quam molestiae reiciendis?"], ["description", "Sed accusantium ut qui."], ["date", "2020-05-06 18:39:26.279242"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.280136"], ["updated_at", "2020-05-05 18:39:26.280136"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos magni non totam?"], ["description", "Animi sit et repellendus."], ["date", "2020-05-06 18:39:26.281476"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.282189"], ["updated_at", "2020-05-05 18:39:26.282189"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia odit mollitia quia?"], ["description", "Omnis similique dolorem sapiente."], ["date", "2020-05-06 18:39:26.283452"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.284543"], ["updated_at", "2020-05-05 18:39:26.284543"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem dolor magni iste?"], ["description", "Repudiandae quo sint libero."], ["date", "2020-05-06 18:39:26.286433"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.287455"], ["updated_at", "2020-05-05 18:39:26.287455"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum sint consequatur iusto?"], ["description", "Doloribus magni et explicabo."], ["date", "2020-05-06 18:39:26.288664"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.303416"], ["updated_at", "2020-05-05 18:39:26.303416"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius itaque deleniti quasi?"], ["description", "A dolores vel qui."], ["date", "2020-05-06 18:39:26.305386"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.306508"], ["updated_at", "2020-05-05 18:39:26.306508"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem sapiente cumque dolore?"], ["description", "In qui exercitationem velit."], ["date", "2020-05-06 18:39:26.307921"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.308697"], ["updated_at", "2020-05-05 18:39:26.308697"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis dolorum qui occaecati?"], ["description", "Vel et possimus non."], ["date", "2020-05-06 18:39:26.309954"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.310651"], ["updated_at", "2020-05-05 18:39:26.310651"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia occaecati repudiandae nulla?"], ["description", "Sed aut vero alias."], ["date", "2020-05-06 18:39:26.312029"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.313227"], ["updated_at", "2020-05-05 18:39:26.313227"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum magnam suscipit cumque?"], ["description", "Vel sed et sunt."], ["date", "2020-05-06 18:39:26.314703"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.315589"], ["updated_at", "2020-05-05 18:39:26.315589"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:39:26 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 422 Unprocessable Entity in 4ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 2705) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shauna Grimes"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jD8.vVFJPr4FQiUA9inHUuMdY6B3lsA2X6JhfYNSowu13fOCMM25O"], ["created_at", "2020-05-05 18:39:26.334152"], ["updated_at", "2020-05-05 18:39:26.334152"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "expedita"], ["description", "Dolor id sunt rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.337976"], ["updated_at", "2020-05-05 18:39:26.337976"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti cumque omnis nostrum?"], ["description", "Enim aut veniam suscipit."], ["date", "2020-05-06 18:39:26.339601"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.340543"], ["updated_at", "2020-05-05 18:39:26.340543"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime a odit est?"], ["description", "Necessitatibus eius doloribus corporis."], ["date", "2020-05-06 18:39:26.341882"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.342595"], ["updated_at", "2020-05-05 18:39:26.342595"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos nemo modi accusantium?"], ["description", "Officiis quaerat molestiae repellendus."], ["date", "2020-05-06 18:39:26.344451"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.346828"], ["updated_at", "2020-05-05 18:39:26.346828"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere ex tempora eius?"], ["description", "Minima occaecati tempora nulla."], ["date", "2020-05-06 18:39:26.348871"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.349824"], ["updated_at", "2020-05-05 18:39:26.349824"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam in animi asperiores?"], ["description", "Et enim rerum eos."], ["date", "2020-05-06 18:39:26.351077"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.351795"], ["updated_at", "2020-05-05 18:39:26.351795"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam iure voluptas et?"], ["description", "Totam officiis quae ducimus."], ["date", "2020-05-06 18:39:26.353011"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.353704"], ["updated_at", "2020-05-05 18:39:26.353704"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita molestias dolorem culpa?"], ["description", "Quia omnis ea sed."], ["date", "2020-05-06 18:39:26.354845"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.355542"], ["updated_at", "2020-05-05 18:39:26.355542"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi tempore fugiat illum?"], ["description", "Rerum aliquid explicabo doloremque."], ["date", "2020-05-06 18:39:26.356714"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.357420"], ["updated_at", "2020-05-05 18:39:26.357420"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti aliquid perspiciatis nihil?"], ["description", "Tenetur ad eveniet modi."], ["date", "2020-05-06 18:39:26.358546"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.359210"], ["updated_at", "2020-05-05 18:39:26.359210"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea culpa quia facere?"], ["description", "Natus sit magni et."], ["date", "2020-05-06 18:39:26.361025"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.361881"], ["updated_at", "2020-05-05 18:39:26.361881"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet dolor excepturi dicta?"], ["description", "Quidem sunt explicabo ducimus."], ["date", "2020-05-06 18:39:26.363861"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.365087"], ["updated_at", "2020-05-05 18:39:26.365087"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus at amet vel?"], ["description", "Dolor veritatis consequatur iure."], ["date", "2020-05-06 18:39:26.367066"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.367968"], ["updated_at", "2020-05-05 18:39:26.367968"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Adipisci illo expedita repellat?"], ["description", "Rerum corporis voluptas dicta."], ["date", "2020-05-06 18:39:26.369161"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.369841"], ["updated_at", "2020-05-05 18:39:26.369841"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates reiciendis ut magnam?"], ["description", "Aut consectetur modi eos."], ["date", "2020-05-06 18:39:26.371134"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.371823"], ["updated_at", "2020-05-05 18:39:26.371823"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia aut ut inventore?"], ["description", "Omnis quia ex nobis."], ["date", "2020-05-06 18:39:26.373119"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.373957"], ["updated_at", "2020-05-05 18:39:26.373957"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae voluptas earum ratione?"], ["description", "Voluptatem repellendus aliquam est."], ["date", "2020-05-06 18:39:26.375405"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.376481"], ["updated_at", "2020-05-05 18:39:26.376481"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero esse id deleniti?"], ["description", "Maxime enim voluptas culpa."], ["date", "2020-05-06 18:39:26.378721"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.379692"], ["updated_at", "2020-05-05 18:39:26.379692"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste eum neque nihil?"], ["description", "Maxime sapiente dolores est."], ["date", "2020-05-06 18:39:26.381005"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.381789"], ["updated_at", "2020-05-05 18:39:26.381789"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta repellat et error?"], ["description", "Laborum perspiciatis nesciunt expedita."], ["date", "2020-05-06 18:39:26.383122"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.384030"], ["updated_at", "2020-05-05 18:39:26.384030"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti excepturi maiores quis?"], ["description", "Ab occaecati earum praesentium."], ["date", "2020-05-06 18:39:26.386639"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.387686"], ["updated_at", "2020-05-05 18:39:26.387686"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:39:26 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.0ms) SAVEPOINT active_record_2 + Meeting Update (0.1ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:39:26.392198"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1397) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Billie Hettinger PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JTHlV2TRzzrvclzfbuEE1OzW4c2ZLWkj7pbokV0SEjpcceXI4WHJC"], ["created_at", "2020-05-05 18:39:26.404445"], ["updated_at", "2020-05-05 18:39:26.404445"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Officiis distinctio qui accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.408448"], ["updated_at", "2020-05-05 18:39:26.408448"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est quia illum maxime?"], ["description", "Accusamus voluptatum ut officiis."], ["date", "2020-05-06 18:39:26.410694"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.411835"], ["updated_at", "2020-05-05 18:39:26.411835"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui unde non nostrum?"], ["description", "Vero id molestiae optio."], ["date", "2020-05-06 18:39:26.413830"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.414771"], ["updated_at", "2020-05-05 18:39:26.414771"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam aut facilis reiciendis?"], ["description", "Iste iure est esse."], ["date", "2020-05-06 18:39:26.415971"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.416713"], ["updated_at", "2020-05-05 18:39:26.416713"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat dolorum natus fuga?"], ["description", "Tenetur nihil qui distinctio."], ["date", "2020-05-06 18:39:26.417839"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.418591"], ["updated_at", "2020-05-05 18:39:26.418591"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus culpa cumque enim?"], ["description", "Reprehenderit velit est fuga."], ["date", "2020-05-06 18:39:26.419684"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.420352"], ["updated_at", "2020-05-05 18:39:26.420352"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque quod et eaque?"], ["description", "Sed qui nihil et."], ["date", "2020-05-06 18:39:26.421454"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.422135"], ["updated_at", "2020-05-05 18:39:26.422135"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et et minima ut?"], ["description", "Quod aliquam maiores quam."], ["date", "2020-05-06 18:39:26.423214"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.424006"], ["updated_at", "2020-05-05 18:39:26.424006"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit iure excepturi quis?"], ["description", "Corporis et aliquid error."], ["date", "2020-05-06 18:39:26.426717"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.429105"], ["updated_at", "2020-05-05 18:39:26.429105"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod consequatur nulla aut?"], ["description", "Ut quo autem ut."], ["date", "2020-05-06 18:39:26.431843"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.432837"], ["updated_at", "2020-05-05 18:39:26.432837"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel facere non et?"], ["description", "Provident eos voluptas dignissimos."], ["date", "2020-05-06 18:39:26.434823"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.435624"], ["updated_at", "2020-05-05 18:39:26.435624"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit est illum natus?"], ["description", "Ut eos nulla perferendis."], ["date", "2020-05-06 18:39:26.436904"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.437637"], ["updated_at", "2020-05-05 18:39:26.437637"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil et quae soluta?"], ["description", "Consequatur quaerat ut qui."], ["date", "2020-05-06 18:39:26.439118"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.439889"], ["updated_at", "2020-05-05 18:39:26.439889"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti sunt optio nulla?"], ["description", "Unde exercitationem praesentium qui."], ["date", "2020-05-06 18:39:26.441107"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.441794"], ["updated_at", "2020-05-05 18:39:26.441794"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est nihil dolores aut?"], ["description", "Voluptatem commodi dolores sit."], ["date", "2020-05-06 18:39:26.442940"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.443671"], ["updated_at", "2020-05-05 18:39:26.443671"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.4ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae consequuntur aut ut?"], ["description", "Accusantium est impedit cupiditate."], ["date", "2020-05-06 18:39:26.444983"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.447442"], ["updated_at", "2020-05-05 18:39:26.447442"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis quam id libero?"], ["description", "Sunt dolorem rerum a."], ["date", "2020-05-06 18:39:26.449110"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.449991"], ["updated_at", "2020-05-05 18:39:26.449991"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda soluta quia sed?"], ["description", "Illum est eum architecto."], ["date", "2020-05-06 18:39:26.451281"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.451981"], ["updated_at", "2020-05-05 18:39:26.451981"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas mollitia sunt et?"], ["description", "Veniam dolor cupiditate minima."], ["date", "2020-05-06 18:39:26.453233"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.453910"], ["updated_at", "2020-05-05 18:39:26.453910"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti qui non temporibus?"], ["description", "Quod libero est in."], ["date", "2020-05-06 18:39:26.455195"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.456071"], ["updated_at", "2020-05-05 18:39:26.456071"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi dolore cupiditate expedita?"], ["description", "Qui quis repellendus natus."], ["date", "2020-05-06 18:39:26.457424"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.458128"], ["updated_at", "2020-05-05 18:39:26.458128"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:39:26 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.2ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:39:26.463148"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 4ms (ActiveRecord: 0.5ms | Allocations: 1320) + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Everette Wolf"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4k7ONyDgI6fxX/.NvMYjsuG/VdNAWR1zDQTBNdUD66pEE9NcWkhAS"], ["created_at", "2020-05-05 18:39:26.476975"], ["updated_at", "2020-05-05 18:39:26.476975"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quidem"], ["description", "Adipisci beatae reprehenderit qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.480495"], ["updated_at", "2020-05-05 18:39:26.480495"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam nihil et beatae?"], ["description", "Omnis veritatis ducimus aut."], ["date", "2020-05-06 18:39:26.482137"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.483143"], ["updated_at", "2020-05-05 18:39:26.483143"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit qui ex quibusdam?"], ["description", "Modi iure rem consequatur."], ["date", "2020-05-06 18:39:26.484476"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.485468"], ["updated_at", "2020-05-05 18:39:26.485468"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis rerum maiores suscipit?"], ["description", "Eveniet ipsa et dolore."], ["date", "2020-05-06 18:39:26.487702"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.488917"], ["updated_at", "2020-05-05 18:39:26.488917"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia soluta minus dolores?"], ["description", "Facere error ea sunt."], ["date", "2020-05-06 18:39:26.490725"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.491608"], ["updated_at", "2020-05-05 18:39:26.491608"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio quis at et?"], ["description", "Quas eos sed explicabo."], ["date", "2020-05-06 18:39:26.492710"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.493426"], ["updated_at", "2020-05-05 18:39:26.493426"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo sit odio facilis?"], ["description", "Illo minima expedita voluptates."], ["date", "2020-05-06 18:39:26.495109"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.496058"], ["updated_at", "2020-05-05 18:39:26.496058"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste provident ab laborum?"], ["description", "Amet ea voluptatem ut."], ["date", "2020-05-06 18:39:26.497290"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.497980"], ["updated_at", "2020-05-05 18:39:26.497980"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit debitis enim ut?"], ["description", "Perferendis et temporibus aliquid."], ["date", "2020-05-06 18:39:26.499137"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.499813"], ["updated_at", "2020-05-05 18:39:26.499813"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta pariatur perferendis qui?"], ["description", "Qui perferendis quo nesciunt."], ["date", "2020-05-06 18:39:26.500933"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.501605"], ["updated_at", "2020-05-05 18:39:26.501605"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia qui nam alias?"], ["description", "Consequatur praesentium illum doloribus."], ["date", "2020-05-06 18:39:26.503374"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.504118"], ["updated_at", "2020-05-05 18:39:26.504118"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum reprehenderit fugit nemo?"], ["description", "Rerum tempore distinctio repellat."], ["date", "2020-05-06 18:39:26.505727"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.507483"], ["updated_at", "2020-05-05 18:39:26.507483"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores consequatur illo ut?"], ["description", "Doloremque necessitatibus et pariatur."], ["date", "2020-05-06 18:39:26.508942"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.509757"], ["updated_at", "2020-05-05 18:39:26.509757"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ducimus sapiente iusto aliquam?"], ["description", "Quasi quis corporis excepturi."], ["date", "2020-05-06 18:39:26.511154"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.512344"], ["updated_at", "2020-05-05 18:39:26.512344"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem dolorem unde assumenda?"], ["description", "Qui odio est et."], ["date", "2020-05-06 18:39:26.513850"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.514656"], ["updated_at", "2020-05-05 18:39:26.514656"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas ipsam nobis modi?"], ["description", "In ut nisi consequatur."], ["date", "2020-05-06 18:39:26.515908"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.516689"], ["updated_at", "2020-05-05 18:39:26.516689"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim rerum et temporibus?"], ["description", "Autem provident ex unde."], ["date", "2020-05-06 18:39:26.517901"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.518600"], ["updated_at", "2020-05-05 18:39:26.518600"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim nemo accusamus iste?"], ["description", "Corrupti itaque ipsa ut."], ["date", "2020-05-06 18:39:26.519723"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.520430"], ["updated_at", "2020-05-05 18:39:26.520430"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum rerum vel dolores?"], ["description", "Dolorem ab tempore sunt."], ["date", "2020-05-06 18:39:26.521576"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.522270"], ["updated_at", "2020-05-05 18:39:26.522270"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut ea harum sequi?"], ["description", "Voluptas animi alias rerum."], ["date", "2020-05-06 18:39:26.523414"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.524107"], ["updated_at", "2020-05-05 18:39:26.524107"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates itaque qui accusamus?"], ["description", "Dolore sit neque rerum."], ["date", "2020-05-06 18:39:26.525775"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.528308"], ["updated_at", "2020-05-05 18:39:26.528308"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:39:26 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_2 + User Create (2.0ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Keely Christiansen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$r.LULbP8PpN7HaTf33e9LOKHneKoXaBfA1reCYmjhSQhfwPYLnS/e"], ["created_at", "2020-05-05 18:39:26.544391"], ["updated_at", "2020-05-05 18:39:26.544391"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "occaecati"], ["description", "Recusandae accusamus sit non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.549625"], ["updated_at", "2020-05-05 18:39:26.549625"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero rerum eveniet doloribus?"], ["description", "Consequatur excepturi quis dolore."], ["date", "2020-05-06 18:39:26.551630"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.552599"], ["updated_at", "2020-05-05 18:39:26.552599"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est debitis ut corporis?"], ["description", "Aspernatur optio non perspiciatis."], ["date", "2020-05-06 18:39:26.553884"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.554612"], ["updated_at", "2020-05-05 18:39:26.554612"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione ut aut ipsam?"], ["description", "Aut a quia sapiente."], ["date", "2020-05-06 18:39:26.555797"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.556538"], ["updated_at", "2020-05-05 18:39:26.556538"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta assumenda est officiis?"], ["description", "Consequuntur voluptatum nulla necessitatibus."], ["date", "2020-05-06 18:39:26.557707"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.558391"], ["updated_at", "2020-05-05 18:39:26.558391"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti quod eaque similique?"], ["description", "Sit qui ducimus dolorum."], ["date", "2020-05-06 18:39:26.559488"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.560189"], ["updated_at", "2020-05-05 18:39:26.560189"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In velit nulla aut?"], ["description", "Eaque atque maxime sed."], ["date", "2020-05-06 18:39:26.561381"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.562552"], ["updated_at", "2020-05-05 18:39:26.562552"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi ipsum nobis quo?"], ["description", "Dolores temporibus porro corrupti."], ["date", "2020-05-06 18:39:26.564131"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.565027"], ["updated_at", "2020-05-05 18:39:26.565027"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere iste nemo saepe?"], ["description", "Est saepe vitae perspiciatis."], ["date", "2020-05-06 18:39:26.567570"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.568773"], ["updated_at", "2020-05-05 18:39:26.568773"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi sed eos quos?"], ["description", "Quis rerum eos et."], ["date", "2020-05-06 18:39:26.570632"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.571560"], ["updated_at", "2020-05-05 18:39:26.571560"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam et omnis ea?"], ["description", "Expedita nam vero temporibus."], ["date", "2020-05-06 18:39:26.573380"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.574118"], ["updated_at", "2020-05-05 18:39:26.574118"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio recusandae quia ad?"], ["description", "Rerum dicta odit aut."], ["date", "2020-05-06 18:39:26.575363"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.576091"], ["updated_at", "2020-05-05 18:39:26.576091"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore velit id placeat?"], ["description", "Maiores nulla voluptatem architecto."], ["date", "2020-05-06 18:39:26.577391"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.578635"], ["updated_at", "2020-05-05 18:39:26.578635"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint et sint sequi?"], ["description", "Rerum et illo sunt."], ["date", "2020-05-06 18:39:26.580141"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.580929"], ["updated_at", "2020-05-05 18:39:26.580929"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime occaecati magni ut?"], ["description", "Nisi quia ipsa possimus."], ["date", "2020-05-06 18:39:26.582117"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.582826"], ["updated_at", "2020-05-05 18:39:26.582826"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas officia molestiae soluta?"], ["description", "Accusamus in reiciendis iste."], ["date", "2020-05-06 18:39:26.584006"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.584691"], ["updated_at", "2020-05-05 18:39:26.584691"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor illo repudiandae aliquid?"], ["description", "Suscipit alias sapiente rerum."], ["date", "2020-05-06 18:39:26.586353"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.587679"], ["updated_at", "2020-05-05 18:39:26.587679"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt voluptatem voluptatum asperiores?"], ["description", "Quos odit dicta vel."], ["date", "2020-05-06 18:39:26.589041"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.589775"], ["updated_at", "2020-05-05 18:39:26.589775"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut incidunt est ex?"], ["description", "Et dolores delectus et."], ["date", "2020-05-06 18:39:26.591045"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.591729"], ["updated_at", "2020-05-05 18:39:26.591729"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam est et id?"], ["description", "Molestias quo magnam nam."], ["date", "2020-05-06 18:39:26.592909"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.593692"], ["updated_at", "2020-05-05 18:39:26.593692"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quibusdam cumque animi qui?"], ["description", "Quas quidem sint debitis."], ["date", "2020-05-06 18:39:26.595619"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.596759"], ["updated_at", "2020-05-05 18:39:26.596759"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:39:26 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Eduardo Roob"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$E2udawpjg30QGkuqoLtt0uUFABo15oY0X.9RwmIv52CEnvjLuo8ty"], ["created_at", "2020-05-05 18:39:26.616740"], ["updated_at", "2020-05-05 18:39:26.616740"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Accusamus ratione quia accusantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.620050"], ["updated_at", "2020-05-05 18:39:26.620050"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis sed distinctio libero?"], ["description", "Animi in maxime repellat."], ["date", "2020-05-06 18:39:26.621714"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.622749"], ["updated_at", "2020-05-05 18:39:26.622749"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod et quasi officiis?"], ["description", "Sequi minus qui ipsa."], ["date", "2020-05-06 18:39:26.624139"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.624884"], ["updated_at", "2020-05-05 18:39:26.624884"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id optio quaerat quas?"], ["description", "Et corrupti id maiores."], ["date", "2020-05-06 18:39:26.626542"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.628109"], ["updated_at", "2020-05-05 18:39:26.628109"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi reprehenderit quae esse?"], ["description", "Eaque dolorum et vel."], ["date", "2020-05-06 18:39:26.629829"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.631217"], ["updated_at", "2020-05-05 18:39:26.631217"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi alias sed a?"], ["description", "Qui quos nulla ratione."], ["date", "2020-05-06 18:39:26.632564"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.633253"], ["updated_at", "2020-05-05 18:39:26.633253"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui sit sed illum?"], ["description", "Deserunt neque aut excepturi."], ["date", "2020-05-06 18:39:26.634414"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.635091"], ["updated_at", "2020-05-05 18:39:26.635091"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem ea perspiciatis voluptas?"], ["description", "Libero et maiores repellat."], ["date", "2020-05-06 18:39:26.636263"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.637044"], ["updated_at", "2020-05-05 18:39:26.637044"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A natus iusto suscipit?"], ["description", "Impedit ea inventore quam."], ["date", "2020-05-06 18:39:26.638331"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.639049"], ["updated_at", "2020-05-05 18:39:26.639049"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta quidem officia est?"], ["description", "Et dolorem autem libero."], ["date", "2020-05-06 18:39:26.640128"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.640838"], ["updated_at", "2020-05-05 18:39:26.640838"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum reprehenderit aliquam consequatur?"], ["description", "Voluptates et nam animi."], ["date", "2020-05-06 18:39:26.642668"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.643430"], ["updated_at", "2020-05-05 18:39:26.643430"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos repellendus qui nulla?"], ["description", "Aut omnis vero reprehenderit."], ["date", "2020-05-06 18:39:26.644828"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.646408"], ["updated_at", "2020-05-05 18:39:26.646408"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem unde dicta aut?"], ["description", "Et cumque soluta aspernatur."], ["date", "2020-05-06 18:39:26.648382"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.649344"], ["updated_at", "2020-05-05 18:39:26.649344"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit architecto nisi eligendi?"], ["description", "Magni debitis ex quia."], ["date", "2020-05-06 18:39:26.650633"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.651322"], ["updated_at", "2020-05-05 18:39:26.651322"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem possimus error officiis?"], ["description", "Facilis distinctio est ea."], ["date", "2020-05-06 18:39:26.652557"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.653234"], ["updated_at", "2020-05-05 18:39:26.653234"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Possimus praesentium quibusdam nesciunt?"], ["description", "Odio dolorum laborum et."], ["date", "2020-05-06 18:39:26.654444"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.655126"], ["updated_at", "2020-05-05 18:39:26.655126"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure dolorem occaecati est?"], ["description", "Maxime ut ut excepturi."], ["date", "2020-05-06 18:39:26.656592"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.657596"], ["updated_at", "2020-05-05 18:39:26.657596"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia soluta saepe animi?"], ["description", "Expedita blanditiis nisi occaecati."], ["date", "2020-05-06 18:39:26.659006"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.659894"], ["updated_at", "2020-05-05 18:39:26.659894"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum et commodi ipsam?"], ["description", "Corporis cumque qui voluptates."], ["date", "2020-05-06 18:39:26.661281"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.662563"], ["updated_at", "2020-05-05 18:39:26.662563"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum in aut commodi?"], ["description", "Delectus consequuntur harum laboriosam."], ["date", "2020-05-06 18:39:26.664370"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.665479"], ["updated_at", "2020-05-05 18:39:26.665479"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In velit qui deserunt?"], ["description", "Velit omnis nemo eius."], ["date", "2020-05-06 18:39:26.667504"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:39:26.668586"], ["updated_at", "2020-05-05 18:39:26.668586"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:39:26 -0300 +Processing by MeetingsController#destroy as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + UserMeeting Load (0.2ms) SELECT "user_meetings".* FROM "user_meetings" WHERE "user_meetings"."meeting_id" = ? [["meeting_id", 1]] + Meeting Destroy (0.1ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 8ms (ActiveRecord: 1.2ms | Allocations: 2317) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "libero"], ["description", "Qui voluptatem ullam eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.689545"], ["updated_at", "2020-05-05 18:39:26.689545"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Non facilis adipisci autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.693248"], ["updated_at", "2020-05-05 18:39:26.693248"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestias"], ["description", "Id hic autem iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.695477"], ["updated_at", "2020-05-05 18:39:26.695477"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Sunt autem voluptatum laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.697113"], ["updated_at", "2020-05-05 18:39:26.697113"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sequi"], ["description", "Iure sint ipsum ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.698468"], ["updated_at", "2020-05-05 18:39:26.698468"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Voluptatem quia et eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.699770"], ["updated_at", "2020-05-05 18:39:26.699770"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illum"], ["description", "Quasi id aut quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.701046"], ["updated_at", "2020-05-05 18:39:26.701046"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Aliquid cumque ipsum officiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.702388"], ["updated_at", "2020-05-05 18:39:26.702388"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Et voluptas minima voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.703806"], ["updated_at", "2020-05-05 18:39:26.703806"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Fugiat aut nihil eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.705127"], ["updated_at", "2020-05-05 18:39:26.705127"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shaneka Bednar"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dHRY84TW3tlujA8QeDlq8.W057u0yrgmVXGhdiig1GEVSYYEr2/Sa"], ["created_at", "2020-05-05 18:39:26.708455"], ["updated_at", "2020-05-05 18:39:26.708455"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:39:26 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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.3ms | ActiveRecord: 0.3ms | Allocations: 2912) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (21.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "amet"], ["description", "Repellendus minus consequuntur voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.730217"], ["updated_at", "2020-05-05 18:39:26.730217"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Quis eum mollitia quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.753457"], ["updated_at", "2020-05-05 18:39:26.753457"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Aut amet sed occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.754982"], ["updated_at", "2020-05-05 18:39:26.754982"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Nihil asperiores enim impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.756409"], ["updated_at", "2020-05-05 18:39:26.756409"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Quo aut temporibus aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.757748"], ["updated_at", "2020-05-05 18:39:26.757748"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Modi autem delectus aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.759048"], ["updated_at", "2020-05-05 18:39:26.759048"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Dignissimos qui tempora laboriosam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.760334"], ["updated_at", "2020-05-05 18:39:26.760334"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vero"], ["description", "Similique nihil aut vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.762324"], ["updated_at", "2020-05-05 18:39:26.762324"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "esse"], ["description", "Incidunt veritatis et neque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.763669"], ["updated_at", "2020-05-05 18:39:26.763669"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "itaque"], ["description", "Maiores eius totam non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.764881"], ["updated_at", "2020-05-05 18:39:26.764881"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Harry Heathcote"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HQKoPD01RvG3DO.isebToOmb6KrMZxW6QPPskconQFN0Zlj17DDXG"], ["created_at", "2020-05-05 18:39:26.767985"], ["updated_at", "2020-05-05 18:39:26.767985"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:39:26 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.12ms) +Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms | Allocations: 2842) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.8ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eaque"], ["description", "Et voluptates non voluptatum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.785171"], ["updated_at", "2020-05-05 18:39:26.785171"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Dolores nobis numquam voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.789466"], ["updated_at", "2020-05-05 18:39:26.789466"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eaque"], ["description", "A ab aliquam nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.791687"], ["updated_at", "2020-05-05 18:39:26.791687"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quam"], ["description", "Est ut qui ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.793078"], ["updated_at", "2020-05-05 18:39:26.793078"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Repellat dolor ipsam quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.794496"], ["updated_at", "2020-05-05 18:39:26.794496"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Mollitia omnis nam dolore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.796559"], ["updated_at", "2020-05-05 18:39:26.796559"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "atque"], ["description", "Sed officia odio est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.797962"], ["updated_at", "2020-05-05 18:39:26.797962"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Saepe omnis voluptates id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.799278"], ["updated_at", "2020-05-05 18:39:26.799278"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Cumque fugiat dolorum ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.800713"], ["updated_at", "2020-05-05 18:39:26.800713"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsa"], ["description", "Nihil et sequi deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.801977"], ["updated_at", "2020-05-05 18:39:26.801977"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sharron Becker"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HGTBhapIqRpHPhcQ7lk.cOYjsj3La2A7WM25vKvx8Eiyiuvbb3sSK"], ["created_at", "2020-05-05 18:39:26.804555"], ["updated_at", "2020-05-05 18:39:26.804555"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:39:26 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.35ms) +Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.3ms | Allocations: 2843) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:39:26 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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: 1242) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Vel alias voluptas ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.828801"], ["updated_at", "2020-05-05 18:39:26.828801"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Itaque est consequatur modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.832917"], ["updated_at", "2020-05-05 18:39:26.832917"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cumque"], ["description", "Consequatur aperiam ad est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.834544"], ["updated_at", "2020-05-05 18:39:26.834544"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "at"], ["description", "Sed est sint id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.836116"], ["updated_at", "2020-05-05 18:39:26.836116"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquam"], ["description", "Minus cumque molestias molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.837424"], ["updated_at", "2020-05-05 18:39:26.837424"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "Ut debitis itaque qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.838680"], ["updated_at", "2020-05-05 18:39:26.838680"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Ea exercitationem cumque non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.839997"], ["updated_at", "2020-05-05 18:39:26.839997"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Quod dolorum et eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.841401"], ["updated_at", "2020-05-05 18:39:26.841401"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Et rerum eos repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.842670"], ["updated_at", "2020-05-05 18:39:26.842670"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deserunt"], ["description", "Cumque et explicabo numquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.844538"], ["updated_at", "2020-05-05 18:39:26.844538"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jeramy Pacocha V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$O9azEGKASEthM996tJLiHugrvRVaF88JSwBpmBtfwLJ2mnGAiKGF."], ["created_at", "2020-05-05 18:39:26.848334"], ["updated_at", "2020-05-05 18:39:26.848334"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:39:26 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2842) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:39:26 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.38ms) +Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.2ms | Allocations: 1240) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Officia eos eligendi minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.871915"], ["updated_at", "2020-05-05 18:39:26.871915"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptate"], ["description", "Debitis delectus sit quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.875245"], ["updated_at", "2020-05-05 18:39:26.875245"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Explicabo praesentium molestias optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.877444"], ["updated_at", "2020-05-05 18:39:26.877444"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "amet"], ["description", "Fugiat eum tempora odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.879568"], ["updated_at", "2020-05-05 18:39:26.879568"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "commodi"], ["description", "Ipsam ab fuga qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.881009"], ["updated_at", "2020-05-05 18:39:26.881009"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ullam"], ["description", "Id sapiente reiciendis voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.882304"], ["updated_at", "2020-05-05 18:39:26.882304"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Voluptatem neque labore qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.883618"], ["updated_at", "2020-05-05 18:39:26.883618"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Amet possimus eveniet voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.884881"], ["updated_at", "2020-05-05 18:39:26.884881"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "pariatur"], ["description", "Quaerat error perspiciatis fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.886215"], ["updated_at", "2020-05-05 18:39:26.886215"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "culpa"], ["description", "Et harum nisi repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.887774"], ["updated_at", "2020-05-05 18:39:26.887774"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Eddie Mayert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8lktZoc3jG38Xx.V0pwI3uu9dv4LQ10y5beGMKfEfwqzdYi3hPeSi"], ["created_at", "2020-05-05 18:39:26.891674"], ["updated_at", "2020-05-05 18:39:26.891674"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:39:26 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.38ms) +Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms | Allocations: 2845) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:39:26 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (21.6ms) rollback transaction +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Labore at ut ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.941789"], ["updated_at", "2020-05-05 18:39:26.941789"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Et consequatur laborum cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.945593"], ["updated_at", "2020-05-05 18:39:26.945593"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "inventore"], ["description", "Numquam totam veniam earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.947558"], ["updated_at", "2020-05-05 18:39:26.947558"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "reiciendis"], ["description", "Aspernatur esse et temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.949981"], ["updated_at", "2020-05-05 18:39:26.949981"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nostrum"], ["description", "Molestias beatae quos reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.952324"], ["updated_at", "2020-05-05 18:39:26.952324"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "possimus"], ["description", "Ut voluptas id deleniti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.954221"], ["updated_at", "2020-05-05 18:39:26.954221"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nostrum"], ["description", "Necessitatibus quo eos culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.955663"], ["updated_at", "2020-05-05 18:39:26.955663"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corporis"], ["description", "Voluptatem consectetur dolorem fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.957061"], ["updated_at", "2020-05-05 18:39:26.957061"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "error"], ["description", "Enim quis fugit id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.958425"], ["updated_at", "2020-05-05 18:39:26.958425"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "Aut rem quia qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.959737"], ["updated_at", "2020-05-05 18:39:26.959737"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Booker Bailey"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/GeDuBojvVN0Jg7Vh43xf.262bR/QSYXe5B.P.1WBM5oOtX6yLbVy"], ["created_at", "2020-05-05 18:39:26.962876"], ["updated_at", "2020-05-05 18:39:26.962876"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:39:26 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.67ms) +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 15:39:26 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Doloribus ducimus aut eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.983124"], ["updated_at", "2020-05-05 18:39:26.983124"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facere"], ["description", "Et non et magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.986802"], ["updated_at", "2020-05-05 18:39:26.986802"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Ipsa non non nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.989056"], ["updated_at", "2020-05-05 18:39:26.989056"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "temporibus"], ["description", "Cupiditate tempore itaque vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.990992"], ["updated_at", "2020-05-05 18:39:26.990992"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ducimus"], ["description", "Quis possimus ex ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.992319"], ["updated_at", "2020-05-05 18:39:26.992319"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maiores"], ["description", "Odit deleniti repellendus laboriosam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.994449"], ["updated_at", "2020-05-05 18:39:26.994449"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rem"], ["description", "Incidunt ut perferendis et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.997102"], ["updated_at", "2020-05-05 18:39:26.997102"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Qui id eos nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.998531"], ["updated_at", "2020-05-05 18:39:26.998531"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloribus"], ["description", "Quis nihil debitis totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:26.999816"], ["updated_at", "2020-05-05 18:39:26.999816"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Commodi sed impedit quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.001085"], ["updated_at", "2020-05-05 18:39:27.001085"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Luna Herzog"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/D3huKkn9GuR4EfVAYAXd.KGpG1bns3LbKJFc6EwX83KvbUrAIAGC"], ["created_at", "2020-05-05 18:39:27.003741"], ["updated_at", "2020-05-05 18:39:27.003741"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.9ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:39:27 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:39:27.029135"], ["updated_at", "2020-05-05 18:39:27.029135"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.46ms) +Completed 201 Created in 22ms (Views: 0.9ms | ActiveRecord: 1.3ms | Allocations: 6207) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Maiores corporis nam et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.047205"], ["updated_at", "2020-05-05 18:39:27.047205"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nemo"], ["description", "Libero sint exercitationem esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.052055"], ["updated_at", "2020-05-05 18:39:27.052055"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatum"], ["description", "Veritatis perspiciatis cupiditate perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.054763"], ["updated_at", "2020-05-05 18:39:27.054763"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nisi"], ["description", "Ex aliquid maiores sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.056378"], ["updated_at", "2020-05-05 18:39:27.056378"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Unde vero quam aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.057669"], ["updated_at", "2020-05-05 18:39:27.057669"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Deserunt autem autem unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.058940"], ["updated_at", "2020-05-05 18:39:27.058940"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Doloribus rerum expedita rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.060265"], ["updated_at", "2020-05-05 18:39:27.060265"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consectetur"], ["description", "Enim consequatur numquam facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.061676"], ["updated_at", "2020-05-05 18:39:27.061676"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "delectus"], ["description", "Cumque eum vel pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.063033"], ["updated_at", "2020-05-05 18:39:27.063033"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "commodi"], ["description", "Eaque ipsam dolor est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.064264"], ["updated_at", "2020-05-05 18:39:27.064264"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Carmen Harris"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KrtgjzBqHKazfDl6D.EJBeHw9RSU6Y.LKm23UFX175NI7fLs6Va46"], ["created_at", "2020-05-05 18:39:27.066896"], ["updated_at", "2020-05-05 18:39:27.066896"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.18ms) +Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:39:27 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:39:27.079759"], ["updated_at", "2020-05-05 18:39:27.079759"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.48ms) +Completed 201 Created in 5ms (Views: 0.9ms | ActiveRecord: 0.6ms | Allocations: 2251) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.9ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Culpa cumque et pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.094353"], ["updated_at", "2020-05-05 18:39:27.094353"], ["created_by", "1"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perspiciatis"], ["description", "Blanditiis possimus dolor ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.099407"], ["updated_at", "2020-05-05 18:39:27.099407"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "amet"], ["description", "Placeat illo voluptatem et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.101061"], ["updated_at", "2020-05-05 18:39:27.101061"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Minima eaque sit et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.102396"], ["updated_at", "2020-05-05 18:39:27.102396"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minima"], ["description", "Placeat occaecati rerum nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.103675"], ["updated_at", "2020-05-05 18:39:27.103675"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "delectus"], ["description", "Totam culpa sunt accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.105370"], ["updated_at", "2020-05-05 18:39:27.105370"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Molestiae praesentium rerum nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.107328"], ["updated_at", "2020-05-05 18:39:27.107328"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "exercitationem"], ["description", "Temporibus reprehenderit magni ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.110393"], ["updated_at", "2020-05-05 18:39:27.110393"], ["created_by", "1"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vitae"], ["description", "Amet non eos rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.114461"], ["updated_at", "2020-05-05 18:39:27.114461"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illo"], ["description", "Minima nemo saepe ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.116466"], ["updated_at", "2020-05-05 18:39:27.116466"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Guadalupe Hackett"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VnNjdl3zI84Dqu8S3gzbJehMmEXBX9iRyf27zbjcJiOwh8u8gxq/y"], ["created_at", "2020-05-05 18:39:27.119075"], ["updated_at", "2020-05-05 18:39:27.119075"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.08ms) +Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.1ms | Allocations: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 4006) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illo"], ["description", "Voluptatibus odio exercitationem iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.144953"], ["updated_at", "2020-05-05 18:39:27.144953"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nobis"], ["description", "Quis quidem est ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.149702"], ["updated_at", "2020-05-05 18:39:27.149702"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Id odit occaecati non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.151923"], ["updated_at", "2020-05-05 18:39:27.151923"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Error quia quia unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.153337"], ["updated_at", "2020-05-05 18:39:27.153337"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusamus"], ["description", "Sed dolor amet architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.154636"], ["updated_at", "2020-05-05 18:39:27.154636"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Dolorum ut deleniti in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.156280"], ["updated_at", "2020-05-05 18:39:27.156280"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Expedita omnis velit ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.158356"], ["updated_at", "2020-05-05 18:39:27.158356"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "animi"], ["description", "Quod veritatis at sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.159753"], ["updated_at", "2020-05-05 18:39:27.159753"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Unde sequi necessitatibus sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.161123"], ["updated_at", "2020-05-05 18:39:27.161123"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dignissimos"], ["description", "Sint ratione quo ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.162850"], ["updated_at", "2020-05-05 18:39:27.162850"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cheyenne Vandervort IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$k7S2rEXXhxwdro4EwU2.BuZbCJaMxo/sPb5nOVVRHLX/JHa.o113O"], ["created_at", "2020-05-05 18:39:27.165645"], ["updated_at", "2020-05-05 18:39:27.165645"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.3ms | ActiveRecord: 0.2ms | Allocations: 2840) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.1ms) +Completed 422 Unprocessable Entity in 8ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 3697) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quasi"], ["description", "Ipsa atque illo vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.195334"], ["updated_at", "2020-05-05 18:39:27.195334"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "hic"], ["description", "Hic architecto voluptate illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.198386"], ["updated_at", "2020-05-05 18:39:27.198386"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Itaque ipsa tempora ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.199909"], ["updated_at", "2020-05-05 18:39:27.199909"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tenetur"], ["description", "Atque dolor illo et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.201229"], ["updated_at", "2020-05-05 18:39:27.201229"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Facere a itaque voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.202514"], ["updated_at", "2020-05-05 18:39:27.202514"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cupiditate"], ["description", "Deserunt similique omnis culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.203785"], ["updated_at", "2020-05-05 18:39:27.203785"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Qui similique corrupti alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.205087"], ["updated_at", "2020-05-05 18:39:27.205087"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "totam"], ["description", "Et omnis voluptates nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.206524"], ["updated_at", "2020-05-05 18:39:27.206524"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corrupti"], ["description", "Harum ab ipsam recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.207875"], ["updated_at", "2020-05-05 18:39:27.207875"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magni"], ["description", "Et consequuntur ut qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.209344"], ["updated_at", "2020-05-05 18:39:27.209344"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nicolas Harvey"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nlR3J/rCbwWGFTrHKfGb7Ob5J/rOS1NlYb6nDw76WQPz2AycThi/a"], ["created_at", "2020-05-05 18:39:27.213841"], ["updated_at", "2020-05-05 18:39:27.213841"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | ActiveRecord: 0.1ms | Allocations: 2842) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:39:27.224245"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 1043) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perferendis"], ["description", "Non ab maiores debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.235442"], ["updated_at", "2020-05-05 18:39:27.235442"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "A quo et ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.238538"], ["updated_at", "2020-05-05 18:39:27.238538"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestias"], ["description", "Beatae officiis est optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.240779"], ["updated_at", "2020-05-05 18:39:27.240779"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Omnis qui dicta maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.242303"], ["updated_at", "2020-05-05 18:39:27.242303"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laborum"], ["description", "Dolorum maiores enim dicta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.243877"], ["updated_at", "2020-05-05 18:39:27.243877"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "in"], ["description", "Ducimus at neque culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.245951"], ["updated_at", "2020-05-05 18:39:27.245951"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquid"], ["description", "Aut omnis exercitationem consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.247365"], ["updated_at", "2020-05-05 18:39:27.247365"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Voluptatem accusantium maxime eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.248879"], ["updated_at", "2020-05-05 18:39:27.248879"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "incidunt"], ["description", "Quod a dolor maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.251203"], ["updated_at", "2020-05-05 18:39:27.251203"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "error"], ["description", "Rem officia dolores eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.253198"], ["updated_at", "2020-05-05 18:39:27.253198"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marla Rohan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$bcUXqpGk0zmzvyj97avRJeLuU2iGEKkl1hzngX7b1iBqH.iqe.sBa"], ["created_at", "2020-05-05 18:39:27.256596"], ["updated_at", "2020-05-05 18:39:27.256596"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.1ms | Allocations: 2841) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:39:27.267719"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 998) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "mollitia"], ["description", "Labore dignissimos praesentium quaerat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.278670"], ["updated_at", "2020-05-05 18:39:27.278670"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Enim iste repellat debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.282750"], ["updated_at", "2020-05-05 18:39:27.282750"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "neque"], ["description", "Placeat quod nam molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.284556"], ["updated_at", "2020-05-05 18:39:27.284556"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "distinctio"], ["description", "Assumenda rerum laboriosam repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.286353"], ["updated_at", "2020-05-05 18:39:27.286353"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repudiandae"], ["description", "Et consequatur aperiam aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.287842"], ["updated_at", "2020-05-05 18:39:27.287842"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptates"], ["description", "Culpa provident dolorum non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.289239"], ["updated_at", "2020-05-05 18:39:27.289239"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repudiandae"], ["description", "Aperiam sequi ea sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.291736"], ["updated_at", "2020-05-05 18:39:27.291736"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Non et quis et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.294075"], ["updated_at", "2020-05-05 18:39:27.294075"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Sint voluptas aut molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.295578"], ["updated_at", "2020-05-05 18:39:27.295578"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facere"], ["description", "Omnis culpa itaque sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:39:27.296872"], ["updated_at", "2020-05-05 18:39:27.296872"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Levi Ankunding"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Wk34C3kwZzhite2mgrq0Xe8nygNWYpktryiwMfBeRRBD455DIgRhC"], ["created_at", "2020-05-05 18:39:27.299449"], ["updated_at", "2020-05-05 18:39:27.299449"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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 DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.2ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.2ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 4ms (ActiveRecord: 0.7ms | Allocations: 1205) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Robby Homenick"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$64XzKcu1EtN0.lV8e1C9sOqbHLSzXG0l.f5PTHuWEupW3YmEu0z2a"], ["created_at", "2020-05-05 18:39:27.322901"], ["updated_at", "2020-05-05 18:39:27.322901"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Edward Schiller III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$PhftexOhCCaU6w.460aN4eLs0KXwJFjKbZR9Hmlo.CdBuvvTtpQqm"], ["created_at", "2020-05-05 18:39:27.327661"], ["updated_at", "2020-05-05 18:39:27.327661"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Christopher Brown"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rIPbNdIq16.ZnL4ldtrNMunBNXk0BpyVTVEn.FDsl4.QB0YCY5lZ6"], ["created_at", "2020-05-05 18:39:27.331477"], ["updated_at", "2020-05-05 18:39:27.331477"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Heath Schmeler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2E4yJQntB0P2VVjQxmTEYu0UcCP/nEu4e.t.aPWzwtUyMZ8V31wt6"], ["created_at", "2020-05-05 18:39:27.334906"], ["updated_at", "2020-05-05 18:39:27.334906"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Keena Dare Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fcIfY9sXYFMeEmelOGRYr.x81s4.A80Pj8rYe4CC05hfXaaJKdMRO"], ["created_at", "2020-05-05 18:39:27.337957"], ["updated_at", "2020-05-05 18:39:27.337957"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Larraine Dibbert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$J4hvY6OaX6VGBIvNfO60Q.AiwZxCLjWOVbhKUUOwGEUd.dy9JwySK"], ["created_at", "2020-05-05 18:39:27.340458"], ["updated_at", "2020-05-05 18:39:27.340458"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Catherin Grady PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/5iKSyku.WrP7ieTmfzfk.DuLn2DcErGQLWYuqkOSNizUbxKUWA0i"], ["created_at", "2020-05-05 18:39:27.342776"], ["updated_at", "2020-05-05 18:39:27.342776"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Waldo Bartell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RKZLnXOAoHlH8z5QHVrjvOxeiF155hTQjTOgQaY3KFI1Cs/K83WQ6"], ["created_at", "2020-05-05 18:39:27.345682"], ["updated_at", "2020-05-05 18:39:27.345682"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Xavier Howell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$umgmAWbEY7yhUy/6jnpcTuqSPuOHHFS/Zr.pWHO/PRXAw4bpuA81u"], ["created_at", "2020-05-05 18:39:27.348602"], ["updated_at", "2020-05-05 18:39:27.348602"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bruna Murphy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$M0JYlb6HY4ZTeM77FumaWe2lOCHf/he1yTm4WkdGKQYOuN7LyR8j6"], ["created_at", "2020-05-05 18:39:27.351396"], ["updated_at", "2020-05-05 18:39:27.351396"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.03ms) +Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms | Allocations: 2345) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Brendon Hilpert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$PSkfakcUi/Rwzv88jN7FEerffd.Lc8zFbxiBMAbTJuka/H/14wGwO"], ["created_at", "2020-05-05 18:39:27.371428"], ["updated_at", "2020-05-05 18:39:27.371428"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Arron Legros"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$sadnTPso/4KsXlrxaZq2hufDSgHPBaR1YMHCFCzsz6lU3FaVZIuxS"], ["created_at", "2020-05-05 18:39:27.375592"], ["updated_at", "2020-05-05 18:39:27.375592"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lacy Orn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZGeqAMULKLdhSN5TPX/KfOdVIrA6JKjvnlh1BFA.vPm2tk.z5fNxi"], ["created_at", "2020-05-05 18:39:27.378608"], ["updated_at", "2020-05-05 18:39:27.378608"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jann Casper"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$b4fgbvV5uNgaZoiku.Tv1un8eCvspzmNH60aiFHrxFH7EH.5Mao0m"], ["created_at", "2020-05-05 18:39:27.381576"], ["updated_at", "2020-05-05 18:39:27.381576"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jamaal Oberbrunner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$eAorz4Rk4T7oCAjkmqzAr.B2/rzJ/mJZd4oR5YkziNaY.kOkG4o46"], ["created_at", "2020-05-05 18:39:27.383989"], ["updated_at", "2020-05-05 18:39:27.383989"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Seth Feest"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$U9uk8eHAm.yATQ.4JuS1FOyXQRcIXZ61Lt2VUDtaumhCT5ybB0vbe"], ["created_at", "2020-05-05 18:39:27.386595"], ["updated_at", "2020-05-05 18:39:27.386595"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Margarete Johnson V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$obePM.ZRH/pSs0PlzUvXnukVgQ1RASrqSuzkkAh89HDk4GV9x0I7."], ["created_at", "2020-05-05 18:39:27.388969"], ["updated_at", "2020-05-05 18:39:27.388969"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Danyel White"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NUrQrdiWrN.qzSh49pZgOenu.BKFuWgchQv8Q7zqrdSa/Jr0uSXp6"], ["created_at", "2020-05-05 18:39:27.391846"], ["updated_at", "2020-05-05 18:39:27.391846"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gavin Gulgowski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OG7SLmHSR54s3KG6bfWFgebVOp2gD4.KTv1p5pQ87.hjDNrVkGvM6"], ["created_at", "2020-05-05 18:39:27.395528"], ["updated_at", "2020-05-05 18:39:27.395528"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Twila Homenick"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/y/mFR5RUiWOxC6J85l0ju1kWNXUVGWxhlpfKYVB1l642HHEHu/YS"], ["created_at", "2020-05-05 18:39:27.398641"], ["updated_at", "2020-05-05 18:39:27.398641"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.86ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms | Allocations: 2203) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Robby Weissnat"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$n.q6pzUwXhyfLH3bUp2k5uTegORCcShZbOLa2r5OguWJQvjaJPCKS"], ["created_at", "2020-05-05 18:39:27.416735"], ["updated_at", "2020-05-05 18:39:27.416735"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Korey Gerlach"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GYD9XtAvE5UBb98PgIA0EO0VJj4bDIzoOzm6oMSWXIGy4zqHR6YHC"], ["created_at", "2020-05-05 18:39:27.421354"], ["updated_at", "2020-05-05 18:39:27.421354"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lawrence Champlin Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Mqc.4i/lv8P9vrs5LQb/GujG9Qo/Afi2pwszUSA.jIgay.QJ62Va2"], ["created_at", "2020-05-05 18:39:27.424373"], ["updated_at", "2020-05-05 18:39:27.424373"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shaun Ortiz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$49JrG1MuJU2E7SBGnspduOYm1ldnrP4IJBzqd5u5dcuroXlBF.YCK"], ["created_at", "2020-05-05 18:39:27.427053"], ["updated_at", "2020-05-05 18:39:27.427053"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jackie Weber"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$l7jw2XSS/n713aPd4EIAbOagnnn0aJJC99DaGf6gRmxW4cLBuMM9."], ["created_at", "2020-05-05 18:39:27.430193"], ["updated_at", "2020-05-05 18:39:27.430193"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ludie Christiansen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$IOqMcr21U2bhIW4pWEgsC.P/S8eRxFF2P2M5x5nIsPWLhAIqpvaNO"], ["created_at", "2020-05-05 18:39:27.434413"], ["updated_at", "2020-05-05 18:39:27.434413"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Caron Corwin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7rrAEpHwEXBgFSw.R6lBGeN0Xt/vbDOC6B5YWOlGxLMzef8upbNA6"], ["created_at", "2020-05-05 18:39:27.437389"], ["updated_at", "2020-05-05 18:39:27.437389"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alaina Moen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$zpyoyusc46JS26S4n7N96u//rFYTpj2OQ0yEkgq8u6K8xXY7p1Xce"], ["created_at", "2020-05-05 18:39:27.439944"], ["updated_at", "2020-05-05 18:39:27.439944"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Brett Maggio DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$zM/cSZjhnZYVReNbkGXhrOXQgfmtzTl1mHt7edEr1inwAIYmx.t2y"], ["created_at", "2020-05-05 18:39:27.442302"], ["updated_at", "2020-05-05 18:39:27.442302"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Gale Kihn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7xRwxyFkAJR79sDPqxB1quq7y.88R3cvRuALO6YuIr9R/13Mz4.ZG"], ["created_at", "2020-05-05 18:39:27.445208"], ["updated_at", "2020-05-05 18:39:27.445208"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.05ms) +Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.47ms) +Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Desire Gottlieb"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KLICNdFcQYaQcAXSFySxD.WsCULl8Ltw0vNKwkPyFdniG2S3BSS/S"], ["created_at", "2020-05-05 18:39:27.467442"], ["updated_at", "2020-05-05 18:39:27.467442"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Jeanna Kovacek"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dVk3o0FL9C3YYwL6pXXXNeU5iNawlC.fUYt3J1xUXpVg54BHPbyB."], ["created_at", "2020-05-05 18:39:27.471599"], ["updated_at", "2020-05-05 18:39:27.471599"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Donnie Terry"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nENSB9DznZtRRpQUhVrJju1T89IEW3kA2zJViNWwlhM.xmjocC3w2"], ["created_at", "2020-05-05 18:39:27.475354"], ["updated_at", "2020-05-05 18:39:27.475354"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Phillip Olson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DHABeyD62e6FKzm4CfGkPuGfPQXOb/80DRhzT42vOnXDM2vYMeHUq"], ["created_at", "2020-05-05 18:39:27.478552"], ["updated_at", "2020-05-05 18:39:27.478552"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Katheleen Wolf"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vj2K4NBfM9R1lty.N5kGcudQAlAe2c.TQLrCB5.hf7bctFh4UFgKm"], ["created_at", "2020-05-05 18:39:27.481683"], ["updated_at", "2020-05-05 18:39:27.481683"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Taryn Deckow"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SE.rrh7vbU4yb36DbpuVPeSrzwa0M78WNtRoX13Hm46izWEV8c5F."], ["created_at", "2020-05-05 18:39:27.484045"], ["updated_at", "2020-05-05 18:39:27.484045"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cary Baumbach"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2UE/ZYCG1Z2Sg4Q.bkXIuezqNOCjHM0Vp3joPU4/j4ENtwNxzOMg."], ["created_at", "2020-05-05 18:39:27.486478"], ["updated_at", "2020-05-05 18:39:27.486478"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Windy Green"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dNZgDDJxfpyremWZa2iivetOezys5XXr4zIPhyXDTztOLXAj8tBve"], ["created_at", "2020-05-05 18:39:27.488985"], ["updated_at", "2020-05-05 18:39:27.488985"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Harold Quigley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$J6CK.tM2PXUOmwiIUgzWWOUyCtzZjtSBM1lgWZfx4II6uNUT0fzV6"], ["created_at", "2020-05-05 18:39:27.491723"], ["updated_at", "2020-05-05 18:39:27.491723"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Linwood Padberg"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1MZe.2rQIcpeyaqEXwuq7O4GUUoU.yS8b.vb/YjhPc7N87H7XvK72"], ["created_at", "2020-05-05 18:39:27.495890"], ["updated_at", "2020-05-05 18:39:27.495890"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.73ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.33ms) +Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Teodoro Wyman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$V1aM4stYTLC1j0EOjKKa.uRypoFMFziPqSKI/hqyo7SFbzcV0620m"], ["created_at", "2020-05-05 18:39:27.517362"], ["updated_at", "2020-05-05 18:39:27.517362"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Noe Wiza"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jGZ5XfihsNF1ng/qLgYKNehSJbZOLSUqABvMbx5X28po7BL5s2lKa"], ["created_at", "2020-05-05 18:39:27.522026"], ["updated_at", "2020-05-05 18:39:27.522026"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bulah Greenfelder"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hPMpnRf/ywCONDvlS2pUtuC6BL3kA40N00UpyGDuXAbLa1enPsZn2"], ["created_at", "2020-05-05 18:39:27.524924"], ["updated_at", "2020-05-05 18:39:27.524924"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sidney Bayer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vwePtsK7Zgb5zktQ.jI3nO67y/IjvUbJlHFMB8ItUWzCmbqyqoxx2"], ["created_at", "2020-05-05 18:39:27.527803"], ["updated_at", "2020-05-05 18:39:27.527803"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Loreen Ledner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hrjsVSA6T75GuBWMd7YSV.d2tSoPtpC/.vmwk0mNA7nUM1fnG.kra"], ["created_at", "2020-05-05 18:39:27.530300"], ["updated_at", "2020-05-05 18:39:27.530300"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Yvone Considine"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$E8bex7u3aWC.xJUtqY5q4OZntFJlv5wcFV4Nwnr/7pODBC/IQ0EpG"], ["created_at", "2020-05-05 18:39:27.533569"], ["updated_at", "2020-05-05 18:39:27.533569"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bobby Walter"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6sr3E7zCDncgZyB5ulonMO4l3lYssf7/LDJG5fLlyaEDAOdxKV7Ly"], ["created_at", "2020-05-05 18:39:27.537612"], ["updated_at", "2020-05-05 18:39:27.537612"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Homer Murray DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5ibUgGAgc2jpgydmUa4Qh.GftB8V5JWmNyPgtZjf8ZmBne1JuY5K2"], ["created_at", "2020-05-05 18:39:27.540232"], ["updated_at", "2020-05-05 18:39:27.540232"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Adam MacGyver I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$H9Q.tNyiqbMApHOcepT45.Nlx586ICPvgRvMgIhvAlCDDG4i0iHge"], ["created_at", "2020-05-05 18:39:27.542563"], ["updated_at", "2020-05-05 18:39:27.542563"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bernice Effertz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QcX/tk72RBpjHtEPGrwgS.JO9ZxVzmeDaiyfz4IKPiuljwxvWGLwy"], ["created_at", "2020-05-05 18:39:27.545403"], ["updated_at", "2020-05-05 18:39:27.545403"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.39ms) +Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.9ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Julissa Oberbrunner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$K1pKUYgomDJpy0YQHcrdZuOlgeW0zOJnDitac6vSOW/BM1BO3NmFC"], ["created_at", "2020-05-05 18:39:27.566919"], ["updated_at", "2020-05-05 18:39:27.566919"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jarrett Fritsch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$y6jL5LnoyCcse1XtNJmzkeBphNaj1e.bY6T/P6C8uqTUGa2km7FXq"], ["created_at", "2020-05-05 18:39:27.574001"], ["updated_at", "2020-05-05 18:39:27.574001"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Barton Rohan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aMLhMArzW65TF642ZktQMuoIem5v.xmyWDaX6IjSYHhMXzFyRkgl."], ["created_at", "2020-05-05 18:39:27.636512"], ["updated_at", "2020-05-05 18:39:27.636512"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rory Cassin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nyXYWeZPHYETL01SKpfdmeicfEGvOG9yoMdW/RPoF2.Rk9lAedPiO"], ["created_at", "2020-05-05 18:39:27.642472"], ["updated_at", "2020-05-05 18:39:27.642472"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Jewel Kertzmann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2YoErA0IydMgQfJIYCS4MezW1mCE3fPmDjU.7zzOUm5J4g2HOvBW2"], ["created_at", "2020-05-05 18:39:27.646536"], ["updated_at", "2020-05-05 18:39:27.646536"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Demetrius Reynolds"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TXdlj070KPTGWyPIh7PLVOxHVLysqK0tlsBEWOdcOj74Y1ssU96XG"], ["created_at", "2020-05-05 18:39:27.649137"], ["updated_at", "2020-05-05 18:39:27.649137"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Buddy Parisian III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TA1tStW.yG6N7GEpMhAtEOsrvGSGxuTHXjSRDMgkBXs2HJhnQs.Bm"], ["created_at", "2020-05-05 18:39:27.651729"], ["updated_at", "2020-05-05 18:39:27.651729"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Titus Hane"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Hwwr5HV79K23PPCGqmIcF.9NOEYwCHsXNWAUgY9aLJAfeJXC70ONO"], ["created_at", "2020-05-05 18:39:27.654982"], ["updated_at", "2020-05-05 18:39:27.654982"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Efrain Schmitt"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oillWfZT2TxzDIukQzaWsO3m//xZNva33yNHmeyQDHzM3yS3hfoY6"], ["created_at", "2020-05-05 18:39:27.657642"], ["updated_at", "2020-05-05 18:39:27.657642"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Isaac Boehm"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2Rhc8hxrXG6.altF/nWc6uGRr7e/eMPwBjuEDiBEJUeqFBIuTwny."], ["created_at", "2020-05-05 18:39:27.660124"], ["updated_at", "2020-05-05 18:39:27.660124"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.62ms) +Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.2ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms) +Completed 404 Not Found in 15ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 526) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jannette Tremblay"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/ZdqStQ4l8u8D/wulGZ32u916fOMrJPLmbk6tkankz8ZnP5puX2G."], ["created_at", "2020-05-05 18:39:27.695586"], ["updated_at", "2020-05-05 18:39:27.695586"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Krystle Wilkinson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GS9aD3nA2AKVhffywwkRK.b4jTN24SzLLpKgIkCIAF9vEEZ7oyc22"], ["created_at", "2020-05-05 18:39:27.700746"], ["updated_at", "2020-05-05 18:39:27.700746"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alica Schmitt"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$y.2YqU/QvQfx7ik3PbwaCeUIMV4GHKNZfFKTdlgX1N5ZIZwnt4OTa"], ["created_at", "2020-05-05 18:39:27.703456"], ["updated_at", "2020-05-05 18:39:27.703456"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Danial Bruen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Im26aCO.D2AhXNVZGhuAYuf9jggUsSTxA0Z3ICpsws.kN8b77J/He"], ["created_at", "2020-05-05 18:39:27.705895"], ["updated_at", "2020-05-05 18:39:27.705895"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Helen Ebert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7ghx8KNkXOXfwIv6AMsAqu0GvsUZQRaCK/4up.0XMEj/QNZgjez3C"], ["created_at", "2020-05-05 18:39:27.708468"], ["updated_at", "2020-05-05 18:39:27.708468"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kattie Strosin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jX429irT90EsRtW1zR/QR.3dQcS1BUV6sUKW4saGaPYn5SG4TQTqS"], ["created_at", "2020-05-05 18:39:27.711282"], ["updated_at", "2020-05-05 18:39:27.711282"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Isaac Koch PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$slD97fknsfjIm.SrVswrhOhAhcv0AiS.cQecRFdXOISE1fGHv0IZi"], ["created_at", "2020-05-05 18:39:27.715190"], ["updated_at", "2020-05-05 18:39:27.715190"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tyree Jacobi"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kqu34XBNPNZBuJcqox7mP.MoQHXvD8rU.SeqhIca23n3BCF2Ay5gC"], ["created_at", "2020-05-05 18:39:27.718785"], ["updated_at", "2020-05-05 18:39:27.718785"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Charlette Jacobs Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FXqYcpZoeH19BCRIV4PwKusJq5nE.Kz7gRrbKDoqFk/KhfgS1Jsc2"], ["created_at", "2020-05-05 18:39:27.721281"], ["updated_at", "2020-05-05 18:39:27.721281"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Luz Crona V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VNMXXClJz23NRoq/w7QDSOOzfmHP80D94LRQD6eSYKt84No9csn1S"], ["created_at", "2020-05-05 18:39:27.723662"], ["updated_at", "2020-05-05 18:39:27.723662"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.1ms) +Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Sheyla", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "email"=>"shey@mail.com"} +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sheyla"], ["email", "shey@mail.com"], ["password_digest", "$2a$04$qXP.d8AJ8qu6SXlz5xP/EOurEi2DiPdCZYAexptEWgFr8jvBLoiAC"], ["created_at", "2020-05-05 18:39:27.734220"], ["updated_at", "2020-05-05 18:39:27.734220"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.46ms) +Completed 201 Created in 10ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1716) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jessie Mertz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2tRyoT8l0OtRRsb7uv7y3uYJEjukgSB.5B85/Shx.pDC/8QU1nz.."], ["created_at", "2020-05-05 18:39:27.782431"], ["updated_at", "2020-05-05 18:39:27.782431"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mandi Bins I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$zi50.a75eoVZs6YXFPONW.0BxQ5AKcBwvUd0Da2.T9kVgZc4Zkgqi"], ["created_at", "2020-05-05 18:39:27.786918"], ["updated_at", "2020-05-05 18:39:27.786918"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jenise Rohan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/iP1WXhcfFdtT98561mvG.ov8n/0ce6dMNXhq4edEe8.2uuaxc.Iu"], ["created_at", "2020-05-05 18:39:27.789799"], ["updated_at", "2020-05-05 18:39:27.789799"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Johnnie Blanda"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$cWzL4PUeKnjhczjuOS372u39gaZnTIa1M8e73EYRQwhojdRsg.aOS"], ["created_at", "2020-05-05 18:39:27.792119"], ["updated_at", "2020-05-05 18:39:27.792119"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lurlene Gleichner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$sJcgZkezqXzvx5Xu/bQISOu7dSMcr7bpU2P4SYtmGV0Dx2V9MEhJy"], ["created_at", "2020-05-05 18:39:27.796217"], ["updated_at", "2020-05-05 18:39:27.796217"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leigha Simonis"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GPOGI7bqz1JViny8ZTg/A.Au3/9cMsWyeXa7DT8kBOStFeb5mcdje"], ["created_at", "2020-05-05 18:39:27.799694"], ["updated_at", "2020-05-05 18:39:27.799694"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Demetrius Altenwerth"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TcwS.Nv35BAfc3O2L5Sbruv4hIR.ZZPJCg3vF/U0K1dIdvGSxaPTe"], ["created_at", "2020-05-05 18:39:27.802191"], ["updated_at", "2020-05-05 18:39:27.802191"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dallas Osinski V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Z79VHLCBKHDrRP1.Rp4QkewdMgsu8imjLc28oNjN2TWdquRzguuaW"], ["created_at", "2020-05-05 18:39:27.804619"], ["updated_at", "2020-05-05 18:39:27.804619"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Zula Rosenbaum"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.qsG./Km0Hp5dYF6A3pltOHGnJdivkzGBbfOZ6WXh9SFICpfroRsa"], ["created_at", "2020-05-05 18:39:27.807010"], ["updated_at", "2020-05-05 18:39:27.807010"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Brian Gibson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WLR3KAZwwc.X/UW9qFJYZenyPAxgdMyNf.TQijA04B0zDtV.jwTQS"], ["created_at", "2020-05-05 18:39:27.809531"], ["updated_at", "2020-05-05 18:39:27.809531"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.91ms) +Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms | Allocations: 2204) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Sheyla", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "email"=>"shey@mail.com"} +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sheyla"], ["email", "shey@mail.com"], ["password_digest", "$2a$04$xj0RraiXNb4IqMMh.4Poke7s70/vHFx8jUncHH7wD8jprbc2DC/l."], ["created_at", "2020-05-05 18:39:27.822192"], ["updated_at", "2020-05-05 18:39:27.822192"], ["picture", "https://joeschmoe.io/api/v1/jacques"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.45ms) +Completed 201 Created in 6ms (Views: 0.8ms | ActiveRecord: 0.3ms | Allocations: 1326) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Sandy Blick"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Zn3bQr/W0fVwvNp2NSIQMOzauiNbgwuQJ7rTL1HBugG68WaUhIJmW"], ["created_at", "2020-05-05 18:39:27.837541"], ["updated_at", "2020-05-05 18:39:27.837541"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Stevie Reilly DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7sWS.d9QC0SSjML5UQkj..YfMFrGrfdUxpcCB7GobL1pQ1dHhY9Yi"], ["created_at", "2020-05-05 18:39:27.841486"], ["updated_at", "2020-05-05 18:39:27.841486"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rosalee Hoeger"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ASijpo4aW0dP1Lia/BSFIubCUqX520h0/DlcYh9xKhALGeAzuYzsy"], ["created_at", "2020-05-05 18:39:27.844338"], ["updated_at", "2020-05-05 18:39:27.844338"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rolf Rempel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YQXPAFxEYHDe0SxBx9qtOOXvw3Iye1tvDLFCpC3WEpQ7wySfEyCMe"], ["created_at", "2020-05-05 18:39:27.847373"], ["updated_at", "2020-05-05 18:39:27.847373"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marty Johnston"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DLb0aS5XhC7PTrZ4woKz5OuFBHj2gN4lV49VxJ.79Fpio2SsQBLsW"], ["created_at", "2020-05-05 18:39:27.849877"], ["updated_at", "2020-05-05 18:39:27.849877"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Felipe Hoeger"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$L0Ww7JJVlf6CD380FmMzDuKD.St4w0tOynHKQw/f78NHOj7WbCQ8C"], ["created_at", "2020-05-05 18:39:27.852319"], ["updated_at", "2020-05-05 18:39:27.852319"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ashley Bode"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TG/lUbgSnMbDzpUaOrdj/u4hLTroJQK.gCyVldsKAlUVarDOn5WfO"], ["created_at", "2020-05-05 18:39:27.855321"], ["updated_at", "2020-05-05 18:39:27.855321"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sulema Sawayn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$sb7GXDdc1jWPklJYZZmE9.KiDz1sLaKmNmEl.tbMOp0f7dHlZKNMq"], ["created_at", "2020-05-05 18:39:27.858715"], ["updated_at", "2020-05-05 18:39:27.858715"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Willodean Goodwin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1QhdZFufcN3HzHP78yMuousL7KTWMUngBVRZfj53mEbVdb2uirW/i"], ["created_at", "2020-05-05 18:39:27.861653"], ["updated_at", "2020-05-05 18:39:27.861653"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mica Conn MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ifdWLJx3679cBj0Fzvf84.6lA7NAgR/PniE.Hz8ukXorCj4WUdzS2"], ["created_at", "2020-05-05 18:39:27.865148"], ["updated_at", "2020-05-05 18:39:27.865148"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.88ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Foobar"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms) +Completed 401 Unauthorized in 4ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 1817) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Neoma Stamm"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qma31EcY14vfhrLAV4zB1uyotRitOfsVv6t7OvNtNREIeuBzMSgO2"], ["created_at", "2020-05-05 18:39:27.887684"], ["updated_at", "2020-05-05 18:39:27.887684"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gilda Predovic"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7GbmdYO26DeehSkpkQHxmu3CtoFxsZN/z4oWz92TrmqlRG.gb1sA2"], ["created_at", "2020-05-05 18:39:27.892266"], ["updated_at", "2020-05-05 18:39:27.892266"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Eduardo Huel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$IuwSFjbDXoxQ9HWbxbBOO.kfzHn.wbAhOgAOGKD/WpvMWKw6ju4q2"], ["created_at", "2020-05-05 18:39:27.896008"], ["updated_at", "2020-05-05 18:39:27.896008"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jessenia Schinner I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$b1bZ0IeNhZWQgkacn9EEuubE5nFVwQN9.VsFb0ws/N0iWq8vPqzta"], ["created_at", "2020-05-05 18:39:27.899171"], ["updated_at", "2020-05-05 18:39:27.899171"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Arletha Jaskolski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mlKu6qQ1A2b9LNNJ/BraDe7tXUh6lL1DBRKOoOa7qacDtLy0mpF3y"], ["created_at", "2020-05-05 18:39:27.902523"], ["updated_at", "2020-05-05 18:39:27.902523"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Buddy Koelpin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$y28ieFRiJ2N/JNcTUCxYH.6G4HMhSAuRZ9jG1BE731YqLBwMpxMLW"], ["created_at", "2020-05-05 18:39:27.905696"], ["updated_at", "2020-05-05 18:39:27.905696"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cyrus Orn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Xf5.ue3ON42dgbEML/H3oONiDGLEqgPEt1w8fR7Ahvb2tRJnHv.DW"], ["created_at", "2020-05-05 18:39:27.909837"], ["updated_at", "2020-05-05 18:39:27.909837"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tanika Hirthe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$S68mpXtctq6LyAnvbJ6mVOwPrAw.n2cQQiUhCLrH0HI2ezOKQxuKW"], ["created_at", "2020-05-05 18:39:27.913868"], ["updated_at", "2020-05-05 18:39:27.913868"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gaye Upton"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Et/CApx8lToN60KLsLAX7.si/erHk4vYUzbFBvhm5qAtFLyIQ3Mhe"], ["created_at", "2020-05-05 18:39:27.917671"], ["updated_at", "2020-05-05 18:39:27.917671"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Brooks Beer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WxsAhmW4mndmMPvdV/lrNOJ/57EBx31lwlRIJWaFHAx6/.URTrExW"], ["created_at", "2020-05-05 18:39:27.920682"], ["updated_at", "2020-05-05 18:39:27.920682"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.66ms) +Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:39:27 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms) +Completed 401 Unauthorized in 3ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 1597) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (4.9ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.2ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (131.1ms) DELETE FROM "meetings"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (84.1ms) DELETE FROM "user_meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (110.0ms) DELETE FROM "user_meetings"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.8ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (96.3ms) DELETE FROM "meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (98.2ms) DELETE FROM "conversations"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (93.9ms) DELETE FROM "messagems"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (121.7ms) DELETE FROM "users"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Milford Legros"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$IRVG/kUexWVpkB9E73Db9Oe.cDiz2pMiGEIf./t2nkNN/jicpqq6W"], ["created_at", "2020-05-05 18:40:14.016248"], ["updated_at", "2020-05-05 18:40:14.016248"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Ea aspernatur est tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:14.033263"], ["updated_at", "2020-05-05 18:40:14.033263"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus quos harum ipsum?"], ["description", "Minima cumque fugit facere."], ["date", "2020-05-06 18:40:14.056897"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.082791"], ["updated_at", "2020-05-05 18:40:14.082791"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati ea perspiciatis alias?"], ["description", "Doloremque odio ea unde."], ["date", "2020-05-06 18:40:14.084568"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.085466"], ["updated_at", "2020-05-05 18:40:14.085466"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est ut molestias necessitatibus?"], ["description", "Dolor ut officia quis."], ["date", "2020-05-06 18:40:14.086808"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.087696"], ["updated_at", "2020-05-05 18:40:14.087696"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur iure nam enim?"], ["description", "Nisi aut commodi unde."], ["date", "2020-05-06 18:40:14.089572"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.090653"], ["updated_at", "2020-05-05 18:40:14.090653"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt et fuga voluptate?"], ["description", "Possimus harum aspernatur consequatur."], ["date", "2020-05-06 18:40:14.091937"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.092652"], ["updated_at", "2020-05-05 18:40:14.092652"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed porro magni dolores?"], ["description", "Deserunt quasi quia et."], ["date", "2020-05-06 18:40:14.094126"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.095111"], ["updated_at", "2020-05-05 18:40:14.095111"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis esse rem sed?"], ["description", "Vel harum aliquid praesentium."], ["date", "2020-05-06 18:40:14.096498"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.097345"], ["updated_at", "2020-05-05 18:40:14.097345"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos quia amet repudiandae?"], ["description", "Quae corporis quis ut."], ["date", "2020-05-06 18:40:14.098563"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.099297"], ["updated_at", "2020-05-05 18:40:14.099297"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Culpa perferendis dolores possimus?"], ["description", "Quia enim magnam amet."], ["date", "2020-05-06 18:40:14.100522"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.101254"], ["updated_at", "2020-05-05 18:40:14.101254"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque officia sit doloribus?"], ["description", "Est fuga accusantium voluptate."], ["date", "2020-05-06 18:40:14.103156"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.103952"], ["updated_at", "2020-05-05 18:40:14.103952"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis et et a?"], ["description", "Et doloremque incidunt saepe."], ["date", "2020-05-06 18:40:14.105176"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.105956"], ["updated_at", "2020-05-05 18:40:14.105956"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque quis aut sed?"], ["description", "Illum fugit ut voluptatem."], ["date", "2020-05-06 18:40:14.107252"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.108249"], ["updated_at", "2020-05-05 18:40:14.108249"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta quas modi voluptates?"], ["description", "Officia animi libero quam."], ["date", "2020-05-06 18:40:14.110184"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.111179"], ["updated_at", "2020-05-05 18:40:14.111179"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur id minima qui?"], ["description", "Id ex corporis ut."], ["date", "2020-05-06 18:40:14.113246"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.114346"], ["updated_at", "2020-05-05 18:40:14.114346"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident voluptatem nihil eaque?"], ["description", "Cupiditate quo qui veritatis."], ["date", "2020-05-06 18:40:14.115929"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.117017"], ["updated_at", "2020-05-05 18:40:14.117017"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id dolorem quidem nesciunt?"], ["description", "Corporis blanditiis praesentium eius."], ["date", "2020-05-06 18:40:14.118642"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.119486"], ["updated_at", "2020-05-05 18:40:14.119486"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium velit quia omnis?"], ["description", "Nihil iusto provident velit."], ["date", "2020-05-06 18:40:14.121027"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.121811"], ["updated_at", "2020-05-05 18:40:14.121811"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut recusandae est et?"], ["description", "In unde et iure."], ["date", "2020-05-06 18:40:14.123266"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.124061"], ["updated_at", "2020-05-05 18:40:14.124061"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit cupiditate quod hic?"], ["description", "Qui quisquam et sunt."], ["date", "2020-05-06 18:40:14.125517"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.126457"], ["updated_at", "2020-05-05 18:40:14.126457"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum repudiandae soluta est?"], ["description", "Consequatur rem velit officiis."], ["date", "2020-05-06 18:40:14.128068"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.129406"], ["updated_at", "2020-05-05 18:40:14.129406"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:40:14 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.23ms) +Completed 200 OK in 35ms (Views: 15.8ms | ActiveRecord: 0.5ms | Allocations: 8638) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dawne Jaskolski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZzYcqNhCtE9YPKlNcwSc5OrDW71QikKGXAKsXodbMNCQyRQ5rE9FW"], ["created_at", "2020-05-05 18:40:14.216201"], ["updated_at", "2020-05-05 18:40:14.216201"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "pariatur"], ["description", "Iure eius placeat dignissimos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:14.219529"], ["updated_at", "2020-05-05 18:40:14.219529"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A est et dolorem?"], ["description", "Doloribus ducimus minus qui."], ["date", "2020-05-06 18:40:14.221698"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.222680"], ["updated_at", "2020-05-05 18:40:14.222680"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur repudiandae similique possimus?"], ["description", "Qui ut commodi a."], ["date", "2020-05-06 18:40:14.223967"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.224815"], ["updated_at", "2020-05-05 18:40:14.224815"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas suscipit quo vero?"], ["description", "Sapiente repellat sequi quos."], ["date", "2020-05-06 18:40:14.226220"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.227327"], ["updated_at", "2020-05-05 18:40:14.227327"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore voluptatem cupiditate doloribus?"], ["description", "Suscipit maxime fugiat eveniet."], ["date", "2020-05-06 18:40:14.229254"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.230917"], ["updated_at", "2020-05-05 18:40:14.230917"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda voluptatem ullam dolores?"], ["description", "Non est sed dicta."], ["date", "2020-05-06 18:40:14.232433"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.233253"], ["updated_at", "2020-05-05 18:40:14.233253"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum provident asperiores velit?"], ["description", "Voluptatem impedit voluptatem debitis."], ["date", "2020-05-06 18:40:14.234473"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.235281"], ["updated_at", "2020-05-05 18:40:14.235281"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint consequatur repellat eos?"], ["description", "Culpa nihil laboriosam repellendus."], ["date", "2020-05-06 18:40:14.236874"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.238346"], ["updated_at", "2020-05-05 18:40:14.238346"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim modi non earum?"], ["description", "Eum ipsam aperiam omnis."], ["date", "2020-05-06 18:40:14.239822"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.240623"], ["updated_at", "2020-05-05 18:40:14.240623"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio ea eos ut?"], ["description", "Nesciunt quis qui sint."], ["date", "2020-05-06 18:40:14.241787"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.242487"], ["updated_at", "2020-05-05 18:40:14.242487"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis repudiandae est non?"], ["description", "Distinctio consequatur voluptatem aliquid."], ["date", "2020-05-06 18:40:14.245041"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.246008"], ["updated_at", "2020-05-05 18:40:14.246008"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum dolor itaque sed?"], ["description", "Molestiae vitae provident qui."], ["date", "2020-05-06 18:40:14.247403"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.248133"], ["updated_at", "2020-05-05 18:40:14.248133"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam error aut vero?"], ["description", "Aliquid maiores est dolorem."], ["date", "2020-05-06 18:40:14.249676"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.251028"], ["updated_at", "2020-05-05 18:40:14.251028"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi eum qui et?"], ["description", "Rerum itaque saepe sed."], ["date", "2020-05-06 18:40:14.252411"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.253163"], ["updated_at", "2020-05-05 18:40:14.253163"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos assumenda exercitationem tempora?"], ["description", "Recusandae consequatur nihil dolor."], ["date", "2020-05-06 18:40:14.254481"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.255359"], ["updated_at", "2020-05-05 18:40:14.255359"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni ut repellendus minima?"], ["description", "Ut omnis doloribus rem."], ["date", "2020-05-06 18:40:14.256646"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.257409"], ["updated_at", "2020-05-05 18:40:14.257409"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugiat est molestias omnis?"], ["description", "Et delectus vero tempore."], ["date", "2020-05-06 18:40:14.258703"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.259437"], ["updated_at", "2020-05-05 18:40:14.259437"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam et dolores sed?"], ["description", "Eum enim exercitationem illum."], ["date", "2020-05-06 18:40:14.261104"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.262125"], ["updated_at", "2020-05-05 18:40:14.262125"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore sint tempora repellendus?"], ["description", "Perspiciatis tempora qui ut."], ["date", "2020-05-06 18:40:14.263597"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.264381"], ["updated_at", "2020-05-05 18:40:14.264381"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem et sed repellendus?"], ["description", "Ipsa culpa adipisci eius."], ["date", "2020-05-06 18:40:14.265723"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.266482"], ["updated_at", "2020-05-05 18:40:14.266482"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam voluptatibus qui commodi?"], ["description", "Dolores perferendis voluptates velit."], ["date", "2020-05-06 18:40:14.267720"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.268533"], ["updated_at", "2020-05-05 18:40:14.268533"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:40:14 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.13ms) +Completed 200 OK in 11ms (Views: 9.9ms | ActiveRecord: 0.3ms | Allocations: 5513) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dominick Kutch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4NAhzqTBGcr6wj3NuiZTAOrbtdw0VzyjoAPQmw70ZrNk62Ei3bLYC"], ["created_at", "2020-05-05 18:40:14.297984"], ["updated_at", "2020-05-05 18:40:14.297984"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "itaque"], ["description", "Totam voluptas illum expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:14.301655"], ["updated_at", "2020-05-05 18:40:14.301655"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed debitis magnam cum?"], ["description", "Distinctio cupiditate eum optio."], ["date", "2020-05-06 18:40:14.303265"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.304261"], ["updated_at", "2020-05-05 18:40:14.304261"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi est earum suscipit?"], ["description", "Nisi voluptatem quis iusto."], ["date", "2020-05-06 18:40:14.305929"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.306813"], ["updated_at", "2020-05-05 18:40:14.306813"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo et nulla eum?"], ["description", "Voluptates beatae est et."], ["date", "2020-05-06 18:40:14.308157"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.309186"], ["updated_at", "2020-05-05 18:40:14.309186"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime vel molestiae et?"], ["description", "Nihil harum doloribus debitis."], ["date", "2020-05-06 18:40:14.313057"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.314484"], ["updated_at", "2020-05-05 18:40:14.314484"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe blanditiis velit magnam?"], ["description", "Ullam et fuga quia."], ["date", "2020-05-06 18:40:14.316091"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.317127"], ["updated_at", "2020-05-05 18:40:14.317127"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non praesentium consequuntur rem?"], ["description", "Aut nesciunt quisquam excepturi."], ["date", "2020-05-06 18:40:14.318593"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.319443"], ["updated_at", "2020-05-05 18:40:14.319443"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus possimus aut porro?"], ["description", "Voluptates magni est vitae."], ["date", "2020-05-06 18:40:14.320810"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.321552"], ["updated_at", "2020-05-05 18:40:14.321552"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere dolores quo omnis?"], ["description", "Consequuntur atque id unde."], ["date", "2020-05-06 18:40:14.322716"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.323398"], ["updated_at", "2020-05-05 18:40:14.323398"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates dolores veritatis odit?"], ["description", "Quisquam reiciendis tempora quis."], ["date", "2020-05-06 18:40:14.324781"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.343745"], ["updated_at", "2020-05-05 18:40:14.343745"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur assumenda hic cum?"], ["description", "Voluptas quia excepturi aut."], ["date", "2020-05-06 18:40:14.346444"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.347452"], ["updated_at", "2020-05-05 18:40:14.347452"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium fugit magnam perferendis?"], ["description", "At nesciunt iure neque."], ["date", "2020-05-06 18:40:14.348959"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.350272"], ["updated_at", "2020-05-05 18:40:14.350272"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati et aut exercitationem?"], ["description", "Architecto qui nesciunt iusto."], ["date", "2020-05-06 18:40:14.351878"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.352734"], ["updated_at", "2020-05-05 18:40:14.352734"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident eius enim temporibus?"], ["description", "Deserunt id aspernatur et."], ["date", "2020-05-06 18:40:14.353988"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.354717"], ["updated_at", "2020-05-05 18:40:14.354717"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente at delectus dolorum?"], ["description", "Officiis aut ut aspernatur."], ["date", "2020-05-06 18:40:14.356160"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.356953"], ["updated_at", "2020-05-05 18:40:14.356953"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae maiores iusto corrupti?"], ["description", "Et voluptate ratione modi."], ["date", "2020-05-06 18:40:14.358256"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.358957"], ["updated_at", "2020-05-05 18:40:14.358957"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus quo aut enim?"], ["description", "Pariatur quam minus aperiam."], ["date", "2020-05-06 18:40:14.360180"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.360953"], ["updated_at", "2020-05-05 18:40:14.360953"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem est sunt qui?"], ["description", "Atque molestias eligendi dicta."], ["date", "2020-05-06 18:40:14.362915"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.363918"], ["updated_at", "2020-05-05 18:40:14.363918"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui et exercitationem dolor?"], ["description", "Vitae assumenda rem autem."], ["date", "2020-05-06 18:40:14.365336"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.366227"], ["updated_at", "2020-05-05 18:40:14.366227"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa repellat dolores qui?"], ["description", "Natus est ipsam eligendi."], ["date", "2020-05-06 18:40:14.367529"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.368252"], ["updated_at", "2020-05-05 18:40:14.368252"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error id quia asperiores?"], ["description", "Est sint qui quis."], ["date", "2020-05-06 18:40:14.369404"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.370482"], ["updated_at", "2020-05-05 18:40:14.370482"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:40:14 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms) +Completed 404 Not Found in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms | Allocations: 866) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Shawn Dach"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xvZN9mdIcfdak/5ghFGLiOIByQCp.vP6.EWPtQp7xqgM/o9Vpht8m"], ["created_at", "2020-05-05 18:40:14.390982"], ["updated_at", "2020-05-05 18:40:14.390982"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Officia quos numquam voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:14.395123"], ["updated_at", "2020-05-05 18:40:14.395123"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur neque quidem omnis?"], ["description", "Aut veniam voluptate itaque."], ["date", "2020-05-06 18:40:14.396928"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.397958"], ["updated_at", "2020-05-05 18:40:14.397958"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum velit similique veniam?"], ["description", "Et sed totam iste."], ["date", "2020-05-06 18:40:14.399362"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.400093"], ["updated_at", "2020-05-05 18:40:14.400093"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem est quaerat eveniet?"], ["description", "Magnam eos est molestiae."], ["date", "2020-05-06 18:40:14.401261"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.401938"], ["updated_at", "2020-05-05 18:40:14.401938"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est minus optio vel?"], ["description", "Corrupti asperiores amet ut."], ["date", "2020-05-06 18:40:14.403075"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.403777"], ["updated_at", "2020-05-05 18:40:14.403777"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe molestiae inventore et?"], ["description", "Repellat nostrum id temporibus."], ["date", "2020-05-06 18:40:14.405090"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.405890"], ["updated_at", "2020-05-05 18:40:14.405890"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt adipisci eveniet totam?"], ["description", "Vel perspiciatis quia quo."], ["date", "2020-05-06 18:40:14.407136"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.407831"], ["updated_at", "2020-05-05 18:40:14.407831"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est doloremque officia sint?"], ["description", "Consequatur eos quis sit."], ["date", "2020-05-06 18:40:14.409022"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.410102"], ["updated_at", "2020-05-05 18:40:14.410102"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos rerum deserunt et?"], ["description", "Ipsa consectetur dolores suscipit."], ["date", "2020-05-06 18:40:14.413125"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.414668"], ["updated_at", "2020-05-05 18:40:14.414668"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Delectus et consequatur eius?"], ["description", "Aspernatur placeat est sed."], ["date", "2020-05-06 18:40:14.416189"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.417002"], ["updated_at", "2020-05-05 18:40:14.417002"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium ratione soluta pariatur?"], ["description", "Eius ea autem qui."], ["date", "2020-05-06 18:40:14.418924"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.419718"], ["updated_at", "2020-05-05 18:40:14.419718"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et velit ut eos?"], ["description", "Illum velit saepe molestiae."], ["date", "2020-05-06 18:40:14.421119"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.421870"], ["updated_at", "2020-05-05 18:40:14.421870"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit deserunt eligendi earum?"], ["description", "Maiores quas est repellat."], ["date", "2020-05-06 18:40:14.423066"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.423761"], ["updated_at", "2020-05-05 18:40:14.423761"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas aut nihil qui?"], ["description", "Hic nemo reprehenderit asperiores."], ["date", "2020-05-06 18:40:14.424962"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.425697"], ["updated_at", "2020-05-05 18:40:14.425697"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur placeat quia doloremque?"], ["description", "Velit et beatae quas."], ["date", "2020-05-06 18:40:14.427218"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.428374"], ["updated_at", "2020-05-05 18:40:14.428374"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi laboriosam suscipit quae?"], ["description", "Quod aspernatur laborum sequi."], ["date", "2020-05-06 18:40:14.430023"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.431547"], ["updated_at", "2020-05-05 18:40:14.431547"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur ullam iste illo?"], ["description", "Consectetur et qui non."], ["date", "2020-05-06 18:40:14.433042"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.433843"], ["updated_at", "2020-05-05 18:40:14.433843"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum velit consectetur esse?"], ["description", "Quo corporis ut asperiores."], ["date", "2020-05-06 18:40:14.435158"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.435921"], ["updated_at", "2020-05-05 18:40:14.435921"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo cupiditate aut dolore?"], ["description", "Maxime consectetur quia fugiat."], ["date", "2020-05-06 18:40:14.437270"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.437967"], ["updated_at", "2020-05-05 18:40:14.437967"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem omnis velit ut?"], ["description", "Sunt numquam recusandae et."], ["date", "2020-05-06 18:40:14.439198"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.439931"], ["updated_at", "2020-05-05 18:40:14.439931"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur beatae est facere?"], ["description", "Numquam quia et aut."], ["date", "2020-05-06 18:40:14.441252"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.441954"], ["updated_at", "2020-05-05 18:40:14.441954"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:40:14 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 509) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (13.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Melissa Cronin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$yY/K/YaUFBslP0FFyGErqe5j5sGYz305hdzZ.aZedad7uUi7iw40q"], ["created_at", "2020-05-05 18:40:14.468095"], ["updated_at", "2020-05-05 18:40:14.468095"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Quos quo voluptatem quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:14.471862"], ["updated_at", "2020-05-05 18:40:14.471862"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est ipsum recusandae occaecati?"], ["description", "Reprehenderit ut consectetur id."], ["date", "2020-05-06 18:40:14.473981"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.475585"], ["updated_at", "2020-05-05 18:40:14.475585"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis maiores ducimus accusantium?"], ["description", "Alias qui eos cum."], ["date", "2020-05-06 18:40:14.477762"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.478694"], ["updated_at", "2020-05-05 18:40:14.478694"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae deleniti corporis corrupti?"], ["description", "Eaque omnis eum ut."], ["date", "2020-05-06 18:40:14.479955"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.480654"], ["updated_at", "2020-05-05 18:40:14.480654"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum eligendi ipsam ab?"], ["description", "Quasi neque hic corrupti."], ["date", "2020-05-06 18:40:14.481852"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.482541"], ["updated_at", "2020-05-05 18:40:14.482541"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis fuga deleniti et?"], ["description", "Qui et qui voluptatem."], ["date", "2020-05-06 18:40:14.483688"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.484374"], ["updated_at", "2020-05-05 18:40:14.484374"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti est veritatis quod?"], ["description", "Cupiditate illo aut sit."], ["date", "2020-05-06 18:40:14.485608"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.486377"], ["updated_at", "2020-05-05 18:40:14.486377"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi est voluptate voluptatibus?"], ["description", "Nemo labore recusandae quia."], ["date", "2020-05-06 18:40:14.487449"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.488149"], ["updated_at", "2020-05-05 18:40:14.488149"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo non perspiciatis ipsam?"], ["description", "Excepturi maiores et et."], ["date", "2020-05-06 18:40:14.489254"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.490026"], ["updated_at", "2020-05-05 18:40:14.490026"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident veniam et aut?"], ["description", "Nobis aspernatur dolores aliquam."], ["date", "2020-05-06 18:40:14.492209"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.493412"], ["updated_at", "2020-05-05 18:40:14.493412"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae omnis aliquid modi?"], ["description", "Doloremque vitae distinctio non."], ["date", "2020-05-06 18:40:14.496751"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.497788"], ["updated_at", "2020-05-05 18:40:14.497788"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni pariatur dicta facere?"], ["description", "Voluptatem voluptatem aspernatur commodi."], ["date", "2020-05-06 18:40:14.499240"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.499959"], ["updated_at", "2020-05-05 18:40:14.499959"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis quo optio ut?"], ["description", "Id totam earum et."], ["date", "2020-05-06 18:40:14.501253"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.502012"], ["updated_at", "2020-05-05 18:40:14.502012"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem est praesentium saepe?"], ["description", "Eos tempora aliquam quidem."], ["date", "2020-05-06 18:40:14.503284"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.504068"], ["updated_at", "2020-05-05 18:40:14.504068"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime unde facere excepturi?"], ["description", "Eligendi hic praesentium et."], ["date", "2020-05-06 18:40:14.505238"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.505942"], ["updated_at", "2020-05-05 18:40:14.505942"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil laudantium aut possimus?"], ["description", "Et illo qui tempora."], ["date", "2020-05-06 18:40:14.507177"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.507905"], ["updated_at", "2020-05-05 18:40:14.507905"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis voluptas corrupti laudantium?"], ["description", "Occaecati ab omnis cupiditate."], ["date", "2020-05-06 18:40:14.509079"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.509770"], ["updated_at", "2020-05-05 18:40:14.509770"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis ratione vel et?"], ["description", "Consequuntur dolorum asperiores eaque."], ["date", "2020-05-06 18:40:14.511798"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.513426"], ["updated_at", "2020-05-05 18:40:14.513426"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim minima totam facere?"], ["description", "Hic dolores sit sunt."], ["date", "2020-05-06 18:40:14.515184"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.516034"], ["updated_at", "2020-05-05 18:40:14.516034"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio aliquam facilis et?"], ["description", "Harum est aperiam impedit."], ["date", "2020-05-06 18:40:14.517292"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.518012"], ["updated_at", "2020-05-05 18:40:14.518012"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores consequuntur corrupti beatae?"], ["description", "Quis maxime quas iusto."], ["date", "2020-05-06 18:40:14.519197"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.519887"], ["updated_at", "2020-05-05 18:40:14.519887"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:40:14 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.83ms) +Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.2ms | Allocations: 1086) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jacqualine Conn I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CzENtWumtDlsF1j17jeyOuEBtQT3gFxmpKClsqy.FAL/.yh/6TJgi"], ["created_at", "2020-05-05 18:40:14.537118"], ["updated_at", "2020-05-05 18:40:14.537118"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nobis"], ["description", "Numquam et voluptas alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:14.540310"], ["updated_at", "2020-05-05 18:40:14.540310"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur perspiciatis unde ipsa?"], ["description", "Aperiam ab quis tempore."], ["date", "2020-05-06 18:40:14.541869"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.542797"], ["updated_at", "2020-05-05 18:40:14.542797"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel deleniti est voluptatem?"], ["description", "Dolorem ipsum et consequatur."], ["date", "2020-05-06 18:40:14.544929"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.546245"], ["updated_at", "2020-05-05 18:40:14.546245"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta nostrum accusantium id?"], ["description", "Et eaque cum sunt."], ["date", "2020-05-06 18:40:14.547711"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.548559"], ["updated_at", "2020-05-05 18:40:14.548559"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo inventore et eum?"], ["description", "Ullam aliquam accusamus et."], ["date", "2020-05-06 18:40:14.549841"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.551238"], ["updated_at", "2020-05-05 18:40:14.551238"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id id non aperiam?"], ["description", "Maiores non ad quibusdam."], ["date", "2020-05-06 18:40:14.553294"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.554347"], ["updated_at", "2020-05-05 18:40:14.554347"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora corporis in suscipit?"], ["description", "Neque qui sed ut."], ["date", "2020-05-06 18:40:14.556269"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.557173"], ["updated_at", "2020-05-05 18:40:14.557173"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe aliquam qui quae?"], ["description", "Est ea voluptas voluptates."], ["date", "2020-05-06 18:40:14.558615"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.559343"], ["updated_at", "2020-05-05 18:40:14.559343"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit illo quam et?"], ["description", "Hic minus aperiam sint."], ["date", "2020-05-06 18:40:14.560821"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.561588"], ["updated_at", "2020-05-05 18:40:14.561588"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste aspernatur autem dolore?"], ["description", "Et numquam consectetur sapiente."], ["date", "2020-05-06 18:40:14.562831"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.563547"], ["updated_at", "2020-05-05 18:40:14.563547"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime natus quam iste?"], ["description", "Enim excepturi quod non."], ["date", "2020-05-06 18:40:14.565645"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.566493"], ["updated_at", "2020-05-05 18:40:14.566493"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ducimus voluptas pariatur et?"], ["description", "Minus doloribus iste praesentium."], ["date", "2020-05-06 18:40:14.567821"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.568612"], ["updated_at", "2020-05-05 18:40:14.568612"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et nostrum doloribus non?"], ["description", "Et nostrum molestias repudiandae."], ["date", "2020-05-06 18:40:14.569901"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.570882"], ["updated_at", "2020-05-05 18:40:14.570882"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos vel saepe tempore?"], ["description", "Reprehenderit eum quis non."], ["date", "2020-05-06 18:40:14.572706"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.573636"], ["updated_at", "2020-05-05 18:40:14.573636"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores corporis delectus ut?"], ["description", "Mollitia quaerat reprehenderit ea."], ["date", "2020-05-06 18:40:14.575005"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.575791"], ["updated_at", "2020-05-05 18:40:14.575791"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem deleniti sint ad?"], ["description", "Eos nihil dicta voluptatibus."], ["date", "2020-05-06 18:40:14.577074"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.577936"], ["updated_at", "2020-05-05 18:40:14.577936"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse id dolor vel?"], ["description", "Accusantium reprehenderit commodi nihil."], ["date", "2020-05-06 18:40:14.579609"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.580522"], ["updated_at", "2020-05-05 18:40:14.580522"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil sint nisi qui?"], ["description", "Qui fuga quae sunt."], ["date", "2020-05-06 18:40:14.582062"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.583047"], ["updated_at", "2020-05-05 18:40:14.583047"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut soluta fugit sequi?"], ["description", "Enim non est quia."], ["date", "2020-05-06 18:40:14.584491"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.585286"], ["updated_at", "2020-05-05 18:40:14.585286"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem deserunt nemo laboriosam?"], ["description", "Sunt sed laudantium numquam."], ["date", "2020-05-06 18:40:14.586600"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.587437"], ["updated_at", "2020-05-05 18:40:14.587437"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi ut quidem non?"], ["description", "Nostrum harum libero sed."], ["date", "2020-05-06 18:40:14.588777"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.589646"], ["updated_at", "2020-05-05 18:40:14.589646"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:40:14 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.82ms) +Completed 200 OK in 4ms (Views: 1.3ms | ActiveRecord: 0.2ms | Allocations: 1058) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Delmar Murphy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Rc5qu9GL1z83JBGPTZNjJe1S9/hRYrHAhEpIbT/.W.YG/hidDYgwW"], ["created_at", "2020-05-05 18:40:14.607010"], ["updated_at", "2020-05-05 18:40:14.607010"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "harum"], ["description", "Aut dolores distinctio suscipit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:14.609878"], ["updated_at", "2020-05-05 18:40:14.609878"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos fuga sit aut?"], ["description", "Architecto soluta velit placeat."], ["date", "2020-05-06 18:40:14.613504"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.614804"], ["updated_at", "2020-05-05 18:40:14.614804"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut aliquam enim doloribus?"], ["description", "Voluptas fuga possimus qui."], ["date", "2020-05-06 18:40:14.616907"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.617819"], ["updated_at", "2020-05-05 18:40:14.617819"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur et repellendus alias?"], ["description", "Est repudiandae incidunt modi."], ["date", "2020-05-06 18:40:14.619045"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.619769"], ["updated_at", "2020-05-05 18:40:14.619769"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo vero impedit rerum?"], ["description", "Doloremque accusantium aliquid impedit."], ["date", "2020-05-06 18:40:14.620927"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.621598"], ["updated_at", "2020-05-05 18:40:14.621598"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est qui aut sunt?"], ["description", "Nulla voluptas accusamus debitis."], ["date", "2020-05-06 18:40:14.622787"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.623481"], ["updated_at", "2020-05-05 18:40:14.623481"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit vitae suscipit iure?"], ["description", "Et quia excepturi nihil."], ["date", "2020-05-06 18:40:14.624583"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.625285"], ["updated_at", "2020-05-05 18:40:14.625285"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reiciendis similique temporibus et?"], ["description", "Ipsum sapiente voluptas fugiat."], ["date", "2020-05-06 18:40:14.626709"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.627960"], ["updated_at", "2020-05-05 18:40:14.627960"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque eligendi dolore et?"], ["description", "Incidunt tenetur reiciendis deserunt."], ["date", "2020-05-06 18:40:14.629450"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.630328"], ["updated_at", "2020-05-05 18:40:14.630328"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quibusdam aut molestias possimus?"], ["description", "Saepe quibusdam repellendus sint."], ["date", "2020-05-06 18:40:14.632148"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.633518"], ["updated_at", "2020-05-05 18:40:14.633518"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi rerum voluptatibus facilis?"], ["description", "Provident quas vitae distinctio."], ["date", "2020-05-06 18:40:14.636331"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.637284"], ["updated_at", "2020-05-05 18:40:14.637284"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit eveniet nihil omnis?"], ["description", "Autem nobis aliquid et."], ["date", "2020-05-06 18:40:14.638804"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.639611"], ["updated_at", "2020-05-05 18:40:14.639611"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias eos quia dolorum?"], ["description", "Dolores id iure ratione."], ["date", "2020-05-06 18:40:14.640766"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.641459"], ["updated_at", "2020-05-05 18:40:14.641459"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure perferendis voluptates quae?"], ["description", "Voluptatum est dignissimos explicabo."], ["date", "2020-05-06 18:40:14.642637"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.643424"], ["updated_at", "2020-05-05 18:40:14.643424"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia suscipit eaque saepe?"], ["description", "Doloribus delectus tenetur quia."], ["date", "2020-05-06 18:40:14.645555"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.646543"], ["updated_at", "2020-05-05 18:40:14.646543"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem occaecati necessitatibus sint?"], ["description", "Aut occaecati nobis provident."], ["date", "2020-05-06 18:40:14.647980"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.648706"], ["updated_at", "2020-05-05 18:40:14.648706"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel temporibus quod inventore?"], ["description", "Debitis dolorum omnis possimus."], ["date", "2020-05-06 18:40:14.649896"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.650798"], ["updated_at", "2020-05-05 18:40:14.650798"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat a doloribus qui?"], ["description", "Quibusdam eos non assumenda."], ["date", "2020-05-06 18:40:14.653013"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.654025"], ["updated_at", "2020-05-05 18:40:14.654025"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque autem est maiores?"], ["description", "Quae et non qui."], ["date", "2020-05-06 18:40:14.655338"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.656288"], ["updated_at", "2020-05-05 18:40:14.656288"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur aut quaerat ab?"], ["description", "Eveniet consequuntur maxime sed."], ["date", "2020-05-06 18:40:14.657473"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.658171"], ["updated_at", "2020-05-05 18:40:14.658171"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis fugiat et animi?"], ["description", "Dolor sed dicta sed."], ["date", "2020-05-06 18:40:14.659498"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.660403"], ["updated_at", "2020-05-05 18:40:14.660403"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:40:14 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 884) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kaitlyn Lesch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JgpmPEaprN0m74i2jp.1IO9CPUjL6mLvjg22wLQnKCp79W.PzGI3q"], ["created_at", "2020-05-05 18:40:14.677467"], ["updated_at", "2020-05-05 18:40:14.677467"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Sed eius labore hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:14.680573"], ["updated_at", "2020-05-05 18:40:14.680573"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non et tenetur velit?"], ["description", "Ut et ullam harum."], ["date", "2020-05-06 18:40:14.682085"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.683014"], ["updated_at", "2020-05-05 18:40:14.683014"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa reiciendis voluptas nesciunt?"], ["description", "Molestiae et fugit aut."], ["date", "2020-05-06 18:40:14.684329"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.685058"], ["updated_at", "2020-05-05 18:40:14.685058"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et earum iste aliquam?"], ["description", "Dolorem aut molestias nostrum."], ["date", "2020-05-06 18:40:14.686580"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.687539"], ["updated_at", "2020-05-05 18:40:14.687539"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum velit dolore incidunt?"], ["description", "Sit ipsam similique iure."], ["date", "2020-05-06 18:40:14.688859"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.689572"], ["updated_at", "2020-05-05 18:40:14.689572"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos distinctio hic magnam?"], ["description", "Aspernatur nihil tenetur similique."], ["date", "2020-05-06 18:40:14.690798"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.691789"], ["updated_at", "2020-05-05 18:40:14.691789"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur accusamus incidunt sed?"], ["description", "Voluptas repudiandae quos ut."], ["date", "2020-05-06 18:40:14.694677"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.696049"], ["updated_at", "2020-05-05 18:40:14.696049"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est doloremque voluptas sint?"], ["description", "Corporis deserunt aut quo."], ["date", "2020-05-06 18:40:14.698056"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.699068"], ["updated_at", "2020-05-05 18:40:14.699068"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed sed quas iure?"], ["description", "Perspiciatis quisquam repudiandae veritatis."], ["date", "2020-05-06 18:40:14.700444"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.701203"], ["updated_at", "2020-05-05 18:40:14.701203"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati quis et dolores?"], ["description", "Eos magnam consectetur sunt."], ["date", "2020-05-06 18:40:14.702354"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.703031"], ["updated_at", "2020-05-05 18:40:14.703031"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam sequi excepturi porro?"], ["description", "Facilis impedit id est."], ["date", "2020-05-06 18:40:14.704910"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.705723"], ["updated_at", "2020-05-05 18:40:14.705723"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut praesentium optio sed?"], ["description", "In consequatur similique vero."], ["date", "2020-05-06 18:40:14.707052"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.707780"], ["updated_at", "2020-05-05 18:40:14.707780"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt numquam inventore voluptatibus?"], ["description", "Et eos et voluptas."], ["date", "2020-05-06 18:40:14.708960"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.709708"], ["updated_at", "2020-05-05 18:40:14.709708"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat veritatis autem voluptate?"], ["description", "Sit a eos similique."], ["date", "2020-05-06 18:40:14.711931"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.714499"], ["updated_at", "2020-05-05 18:40:14.714499"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus sit expedita aut?"], ["description", "Et illo eius molestiae."], ["date", "2020-05-06 18:40:14.716283"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.717237"], ["updated_at", "2020-05-05 18:40:14.717237"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit veniam vero dolores?"], ["description", "Esse pariatur sint exercitationem."], ["date", "2020-05-06 18:40:14.718689"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.719575"], ["updated_at", "2020-05-05 18:40:14.719575"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et tempore rerum et?"], ["description", "Et omnis quis consequatur."], ["date", "2020-05-06 18:40:14.721011"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.721902"], ["updated_at", "2020-05-05 18:40:14.721902"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia illo est quia?"], ["description", "Modi laboriosam ipsam voluptatem."], ["date", "2020-05-06 18:40:14.723331"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.724886"], ["updated_at", "2020-05-05 18:40:14.724886"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed nostrum et accusantium?"], ["description", "Non officia minima alias."], ["date", "2020-05-06 18:40:14.726738"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.728264"], ["updated_at", "2020-05-05 18:40:14.728264"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum occaecati et et?"], ["description", "Ad consequuntur praesentium et."], ["date", "2020-05-06 18:40:14.729751"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.730580"], ["updated_at", "2020-05-05 18:40:14.730580"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni ut ut deserunt?"], ["description", "Vitae similique quibusdam officiis."], ["date", "2020-05-06 18:40:14.732089"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.733482"], ["updated_at", "2020-05-05 18:40:14.733482"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:40:14 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 867) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (14.0ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Anya Hilll"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BMot23VLssurPSQma68wkum5hEiDxZ/blhudZIuCqMv.orK0yHLha"], ["created_at", "2020-05-05 18:40:14.750309"], ["updated_at", "2020-05-05 18:40:14.750309"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tenetur"], ["description", "Consequatur dolorum veritatis et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:14.766485"], ["updated_at", "2020-05-05 18:40:14.766485"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente corrupti qui reprehenderit?"], ["description", "Accusamus quisquam sed consequuntur."], ["date", "2020-05-06 18:40:14.768061"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.769033"], ["updated_at", "2020-05-05 18:40:14.769033"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod aut omnis aut?"], ["description", "Reprehenderit vero quasi aut."], ["date", "2020-05-06 18:40:14.770285"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.771048"], ["updated_at", "2020-05-05 18:40:14.771048"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit ullam ut quasi?"], ["description", "Occaecati tempora culpa optio."], ["date", "2020-05-06 18:40:14.773030"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.774331"], ["updated_at", "2020-05-05 18:40:14.774331"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint dolorum et optio?"], ["description", "Incidunt eligendi quos expedita."], ["date", "2020-05-06 18:40:14.776669"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.777907"], ["updated_at", "2020-05-05 18:40:14.777907"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt incidunt odio perferendis?"], ["description", "Qui fugiat eveniet asperiores."], ["date", "2020-05-06 18:40:14.779424"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.780240"], ["updated_at", "2020-05-05 18:40:14.780240"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum ab sequi id?"], ["description", "Dolorum sequi sed rerum."], ["date", "2020-05-06 18:40:14.781449"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.782161"], ["updated_at", "2020-05-05 18:40:14.782161"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed harum non eum?"], ["description", "Sequi rerum et aperiam."], ["date", "2020-05-06 18:40:14.783265"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.783955"], ["updated_at", "2020-05-05 18:40:14.783955"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio dignissimos quos provident?"], ["description", "Facilis molestiae doloremque eligendi."], ["date", "2020-05-06 18:40:14.785116"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.786047"], ["updated_at", "2020-05-05 18:40:14.786047"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quia culpa ut?"], ["description", "Voluptas fuga iusto qui."], ["date", "2020-05-06 18:40:14.787360"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.788143"], ["updated_at", "2020-05-05 18:40:14.788143"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo minus beatae aut?"], ["description", "Quibusdam labore id sint."], ["date", "2020-05-06 18:40:14.790003"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.790783"], ["updated_at", "2020-05-05 18:40:14.790783"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex et nihil ea?"], ["description", "Sed illo sit omnis."], ["date", "2020-05-06 18:40:14.792348"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.793669"], ["updated_at", "2020-05-05 18:40:14.793669"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia provident dolorum dolore?"], ["description", "Reiciendis sit voluptatem deserunt."], ["date", "2020-05-06 18:40:14.795219"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.796949"], ["updated_at", "2020-05-05 18:40:14.796949"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum nisi earum illum?"], ["description", "Libero distinctio est quas."], ["date", "2020-05-06 18:40:14.798612"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.799505"], ["updated_at", "2020-05-05 18:40:14.799505"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus qui aut et?"], ["description", "Unde cupiditate et expedita."], ["date", "2020-05-06 18:40:14.800861"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.801599"], ["updated_at", "2020-05-05 18:40:14.801599"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et esse distinctio dignissimos?"], ["description", "Mollitia sit magnam molestiae."], ["date", "2020-05-06 18:40:14.802778"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.803468"], ["updated_at", "2020-05-05 18:40:14.803468"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A sed ut autem?"], ["description", "Et est omnis eveniet."], ["date", "2020-05-06 18:40:14.804675"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.805351"], ["updated_at", "2020-05-05 18:40:14.805351"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum porro et ut?"], ["description", "Voluptas temporibus veniam ut."], ["date", "2020-05-06 18:40:14.806654"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.807379"], ["updated_at", "2020-05-05 18:40:14.807379"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam autem qui est?"], ["description", "Molestias voluptas quisquam iste."], ["date", "2020-05-06 18:40:14.808625"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.809346"], ["updated_at", "2020-05-05 18:40:14.809346"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea explicabo saepe hic?"], ["description", "Ratione est fugit repellendus."], ["date", "2020-05-06 18:40:14.810991"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.812182"], ["updated_at", "2020-05-05 18:40:14.812182"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi at et amet?"], ["description", "Et ea reiciendis sed."], ["date", "2020-05-06 18:40:14.814008"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.814940"], ["updated_at", "2020-05-05 18:40:14.814940"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:40:14 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"title"=>"Visit Narnia", "description"=>"false", "date"=>"2020-05-06 15:40:14 -0300", "link"=>"https://zoom.com/fakelink", "meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Visit Narnia"], ["description", "false"], ["date", "2020-05-06 18:40:14"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.841989"], ["updated_at", "2020-05-05 18:40:14.841989"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.67ms) +Completed 201 Created in 5ms (Views: 1.4ms | ActiveRecord: 0.4ms | Allocations: 1699) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (14.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Terrell Haley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9RLT.pDUMRqJXwSOdnaU9.USfQ8ry3twJHEWmd3INnwR1A8pu.ppi"], ["created_at", "2020-05-05 18:40:14.865191"], ["updated_at", "2020-05-05 18:40:14.865191"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Asperiores reprehenderit ducimus sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:14.868891"], ["updated_at", "2020-05-05 18:40:14.868891"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias provident alias qui?"], ["description", "Sit dolorem rerum nulla."], ["date", "2020-05-06 18:40:14.870543"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.871496"], ["updated_at", "2020-05-05 18:40:14.871496"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit et qui id?"], ["description", "Tempore ex mollitia dolorum."], ["date", "2020-05-06 18:40:14.873302"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.874896"], ["updated_at", "2020-05-05 18:40:14.874896"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut dolores ut ut?"], ["description", "Velit ratione quas nulla."], ["date", "2020-05-06 18:40:14.877635"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.878732"], ["updated_at", "2020-05-05 18:40:14.878732"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit enim rerum sed?"], ["description", "Aut corporis magni nihil."], ["date", "2020-05-06 18:40:14.880074"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.880783"], ["updated_at", "2020-05-05 18:40:14.880783"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni animi consectetur ullam?"], ["description", "Omnis nemo velit qui."], ["date", "2020-05-06 18:40:14.881892"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.882583"], ["updated_at", "2020-05-05 18:40:14.882583"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem odio rerum nam?"], ["description", "Maiores quam ad ut."], ["date", "2020-05-06 18:40:14.883779"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.884476"], ["updated_at", "2020-05-05 18:40:14.884476"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas minima corporis dicta?"], ["description", "Error dolorem quis magni."], ["date", "2020-05-06 18:40:14.885645"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.886382"], ["updated_at", "2020-05-05 18:40:14.886382"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui libero dicta vel?"], ["description", "Dolorem veritatis temporibus esse."], ["date", "2020-05-06 18:40:14.887473"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.888149"], ["updated_at", "2020-05-05 18:40:14.888149"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae molestiae dolorem distinctio?"], ["description", "Quod molestiae qui beatae."], ["date", "2020-05-06 18:40:14.889296"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.889983"], ["updated_at", "2020-05-05 18:40:14.889983"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae tempora rerum consequatur?"], ["description", "Quo quia voluptas amet."], ["date", "2020-05-06 18:40:14.891877"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.892883"], ["updated_at", "2020-05-05 18:40:14.892883"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident architecto vel in?"], ["description", "Iure dolor mollitia quis."], ["date", "2020-05-06 18:40:14.895921"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.896929"], ["updated_at", "2020-05-05 18:40:14.896929"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequuntur atque rem magnam?"], ["description", "Magnam dolores quis non."], ["date", "2020-05-06 18:40:14.898210"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.898951"], ["updated_at", "2020-05-05 18:40:14.898951"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente nulla omnis ea?"], ["description", "Temporibus nam porro voluptatem."], ["date", "2020-05-06 18:40:14.900169"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.900894"], ["updated_at", "2020-05-05 18:40:14.900894"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum est aut sint?"], ["description", "Beatae consequatur ut autem."], ["date", "2020-05-06 18:40:14.902118"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.902824"], ["updated_at", "2020-05-05 18:40:14.902824"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam est velit maxime?"], ["description", "Ut voluptatem occaecati velit."], ["date", "2020-05-06 18:40:14.903988"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.904665"], ["updated_at", "2020-05-05 18:40:14.904665"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequuntur sint laboriosam non?"], ["description", "Assumenda est cumque facilis."], ["date", "2020-05-06 18:40:14.905972"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.906751"], ["updated_at", "2020-05-05 18:40:14.906751"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat sed harum laborum?"], ["description", "Unde quo alias sunt."], ["date", "2020-05-06 18:40:14.908079"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.908800"], ["updated_at", "2020-05-05 18:40:14.908800"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit qui esse debitis?"], ["description", "Quae tempora rem esse."], ["date", "2020-05-06 18:40:14.910018"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.910713"], ["updated_at", "2020-05-05 18:40:14.910713"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque ut aliquam molestiae?"], ["description", "In consequatur earum id."], ["date", "2020-05-06 18:40:14.912630"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.914046"], ["updated_at", "2020-05-05 18:40:14.914046"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae atque iusto architecto?"], ["description", "Et quia et debitis."], ["date", "2020-05-06 18:40:14.915679"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.916553"], ["updated_at", "2020-05-05 18:40:14.916553"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:40:14 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3010) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (13.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leigha Hane"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$r.VITbjuP8CWorR7IocSMOjoYutycDDJ9gPVFKqqrvssYj12ZK2tu"], ["created_at", "2020-05-05 18:40:14.942458"], ["updated_at", "2020-05-05 18:40:14.942458"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quae"], ["description", "Aut non nobis debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:14.947364"], ["updated_at", "2020-05-05 18:40:14.947364"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil alias eaque repudiandae?"], ["description", "Voluptatem est omnis autem."], ["date", "2020-05-06 18:40:14.949237"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.950328"], ["updated_at", "2020-05-05 18:40:14.950328"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum est omnis optio?"], ["description", "Id quod placeat suscipit."], ["date", "2020-05-06 18:40:14.951946"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.952834"], ["updated_at", "2020-05-05 18:40:14.952834"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus et quam aliquid?"], ["description", "Quia autem alias eum."], ["date", "2020-05-06 18:40:14.954880"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.956026"], ["updated_at", "2020-05-05 18:40:14.956026"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit error autem necessitatibus?"], ["description", "Sit cumque facilis exercitationem."], ["date", "2020-05-06 18:40:14.958051"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.958992"], ["updated_at", "2020-05-05 18:40:14.958992"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut sit dolor repellat?"], ["description", "Similique in doloribus minima."], ["date", "2020-05-06 18:40:14.960146"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.960878"], ["updated_at", "2020-05-05 18:40:14.960878"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero et tempore eaque?"], ["description", "Repellat eos quo aliquam."], ["date", "2020-05-06 18:40:14.962012"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.962713"], ["updated_at", "2020-05-05 18:40:14.962713"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non blanditiis porro sint?"], ["description", "Adipisci maiores omnis ad."], ["date", "2020-05-06 18:40:14.963775"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.964446"], ["updated_at", "2020-05-05 18:40:14.964446"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam omnis voluptatem enim?"], ["description", "Recusandae rerum et cum."], ["date", "2020-05-06 18:40:14.965453"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.966173"], ["updated_at", "2020-05-05 18:40:14.966173"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro debitis quis non?"], ["description", "Voluptate natus inventore non."], ["date", "2020-05-06 18:40:14.967224"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.967895"], ["updated_at", "2020-05-05 18:40:14.967895"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quod sit aut?"], ["description", "Alias enim sint qui."], ["date", "2020-05-06 18:40:14.969727"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.970514"], ["updated_at", "2020-05-05 18:40:14.970514"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro ipsam et non?"], ["description", "Et voluptatum et earum."], ["date", "2020-05-06 18:40:14.971684"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.972360"], ["updated_at", "2020-05-05 18:40:14.972360"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi et qui tempora?"], ["description", "Dolorem qui blanditiis consequatur."], ["date", "2020-05-06 18:40:14.973976"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.975166"], ["updated_at", "2020-05-05 18:40:14.975166"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab debitis nihil repellendus?"], ["description", "Doloremque sed ipsum exercitationem."], ["date", "2020-05-06 18:40:14.977015"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.978064"], ["updated_at", "2020-05-05 18:40:14.978064"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident nulla doloribus deleniti?"], ["description", "Ut magni exercitationem non."], ["date", "2020-05-06 18:40:14.979551"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.980344"], ["updated_at", "2020-05-05 18:40:14.980344"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe omnis totam aut?"], ["description", "Ut assumenda veniam quo."], ["date", "2020-05-06 18:40:14.981441"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:14.997717"], ["updated_at", "2020-05-05 18:40:14.997717"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate mollitia voluptates atque?"], ["description", "Molestiae minus perspiciatis voluptatum."], ["date", "2020-05-06 18:40:14.999248"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.000070"], ["updated_at", "2020-05-05 18:40:15.000070"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique et autem itaque?"], ["description", "Dolor ut dignissimos unde."], ["date", "2020-05-06 18:40:15.001211"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.001925"], ["updated_at", "2020-05-05 18:40:15.001925"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non quas eum enim?"], ["description", "Qui sit voluptatem dignissimos."], ["date", "2020-05-06 18:40:15.003178"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.003886"], ["updated_at", "2020-05-05 18:40:15.003886"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit minus voluptates et?"], ["description", "Aspernatur enim fuga aliquam."], ["date", "2020-05-06 18:40:15.005042"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.005842"], ["updated_at", "2020-05-05 18:40:15.005842"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem dolorum dolor neque?"], ["description", "Architecto aut impedit et."], ["date", "2020-05-06 18:40:15.007144"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.007892"], ["updated_at", "2020-05-05 18:40:15.007892"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 2705) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Chu Homenick"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nXJd0XomNMHVWXO1XindQup7uwXsG5wIUt0BnMguGaBu9Y8BqKEhe"], ["created_at", "2020-05-05 18:40:15.025503"], ["updated_at", "2020-05-05 18:40:15.025503"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Autem autem est eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.029735"], ["updated_at", "2020-05-05 18:40:15.029735"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque ducimus ut asperiores?"], ["description", "Occaecati at ullam eum."], ["date", "2020-05-06 18:40:15.031660"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.032660"], ["updated_at", "2020-05-05 18:40:15.032660"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi molestias quos harum?"], ["description", "Impedit omnis commodi illo."], ["date", "2020-05-06 18:40:15.034779"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.036065"], ["updated_at", "2020-05-05 18:40:15.036065"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis vel tenetur omnis?"], ["description", "Cumque laboriosam voluptas aspernatur."], ["date", "2020-05-06 18:40:15.037926"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.038892"], ["updated_at", "2020-05-05 18:40:15.038892"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut qui dolore inventore?"], ["description", "Cum ea maxime earum."], ["date", "2020-05-06 18:40:15.040187"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.040980"], ["updated_at", "2020-05-05 18:40:15.040980"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui autem totam ea?"], ["description", "Laborum sunt at odio."], ["date", "2020-05-06 18:40:15.042222"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.043361"], ["updated_at", "2020-05-05 18:40:15.043361"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut ea ab modi?"], ["description", "Consequatur molestias explicabo officia."], ["date", "2020-05-06 18:40:15.045134"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.046051"], ["updated_at", "2020-05-05 18:40:15.046051"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae ullam facere a?"], ["description", "Cumque aperiam quisquam quae."], ["date", "2020-05-06 18:40:15.047276"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.047985"], ["updated_at", "2020-05-05 18:40:15.047985"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae vel est sapiente?"], ["description", "Quia qui dolorem atque."], ["date", "2020-05-06 18:40:15.049127"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.049841"], ["updated_at", "2020-05-05 18:40:15.049841"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut nam consectetur molestiae?"], ["description", "In qui qui blanditiis."], ["date", "2020-05-06 18:40:15.050987"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.051678"], ["updated_at", "2020-05-05 18:40:15.051678"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe et ut dolor?"], ["description", "Voluptatum repudiandae sint odio."], ["date", "2020-05-06 18:40:15.053807"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.055169"], ["updated_at", "2020-05-05 18:40:15.055169"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit ab aliquam eaque?"], ["description", "Ducimus illo distinctio soluta."], ["date", "2020-05-06 18:40:15.056735"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.057575"], ["updated_at", "2020-05-05 18:40:15.057575"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto consectetur autem quia?"], ["description", "Omnis ea non et."], ["date", "2020-05-06 18:40:15.058665"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.059338"], ["updated_at", "2020-05-05 18:40:15.059338"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed odit eveniet non?"], ["description", "Non velit non quod."], ["date", "2020-05-06 18:40:15.060511"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.061333"], ["updated_at", "2020-05-05 18:40:15.061333"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et sit est aperiam?"], ["description", "Dolor in sed omnis."], ["date", "2020-05-06 18:40:15.062979"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.063907"], ["updated_at", "2020-05-05 18:40:15.063907"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia ut aliquid autem?"], ["description", "Omnis officia nihil at."], ["date", "2020-05-06 18:40:15.065252"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.066078"], ["updated_at", "2020-05-05 18:40:15.066078"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo pariatur eaque aut?"], ["description", "Amet nam earum dolorum."], ["date", "2020-05-06 18:40:15.067299"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.068014"], ["updated_at", "2020-05-05 18:40:15.068014"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias dolorem nulla dolorem?"], ["description", "Enim et qui alias."], ["date", "2020-05-06 18:40:15.069133"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.069833"], ["updated_at", "2020-05-05 18:40:15.069833"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas ut et maiores?"], ["description", "Sint harum ducimus deserunt."], ["date", "2020-05-06 18:40:15.071051"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.071769"], ["updated_at", "2020-05-05 18:40:15.071769"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est sit dolore rerum?"], ["description", "Debitis rem consequatur occaecati."], ["date", "2020-05-06 18:40:15.072901"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.073768"], ["updated_at", "2020-05-05 18:40:15.073768"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero et itaque vel?"], ["description", "Eum in vitae ipsam."], ["date", "2020-05-06 18:40:15.075749"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.077274"], ["updated_at", "2020-05-05 18:40:15.077274"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.1ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:40:15.081866"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1396) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Wilton Bode"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3El5X7D9GGyvmogQaqenuO5a4L6HI8whGpyt2zLwhusZjEHVIWCyu"], ["created_at", "2020-05-05 18:40:15.095209"], ["updated_at", "2020-05-05 18:40:15.095209"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "libero"], ["description", "Tempore alias vitae nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.099487"], ["updated_at", "2020-05-05 18:40:15.099487"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime velit porro et?"], ["description", "Reiciendis error nulla harum."], ["date", "2020-05-06 18:40:15.101118"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.102067"], ["updated_at", "2020-05-05 18:40:15.102067"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam ex tenetur impedit?"], ["description", "Quas dolorem ut officia."], ["date", "2020-05-06 18:40:15.103396"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.104122"], ["updated_at", "2020-05-05 18:40:15.104122"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga nihil dolorem doloremque?"], ["description", "Dicta aut omnis aut."], ["date", "2020-05-06 18:40:15.105378"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.106193"], ["updated_at", "2020-05-05 18:40:15.106193"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis velit deleniti sint?"], ["description", "Et laborum cum voluptatem."], ["date", "2020-05-06 18:40:15.107375"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.108060"], ["updated_at", "2020-05-05 18:40:15.108060"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores qui dicta exercitationem?"], ["description", "Quaerat dicta autem eligendi."], ["date", "2020-05-06 18:40:15.109228"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.110067"], ["updated_at", "2020-05-05 18:40:15.110067"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel vero eveniet accusamus?"], ["description", "Cupiditate voluptatem maiores ipsum."], ["date", "2020-05-06 18:40:15.111468"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.112646"], ["updated_at", "2020-05-05 18:40:15.112646"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis aut aliquam et?"], ["description", "Non vitae modi aperiam."], ["date", "2020-05-06 18:40:15.114080"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.115999"], ["updated_at", "2020-05-05 18:40:15.115999"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus dignissimos suscipit impedit?"], ["description", "Ex qui officia qui."], ["date", "2020-05-06 18:40:15.118004"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.119032"], ["updated_at", "2020-05-05 18:40:15.119032"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam et voluptates qui?"], ["description", "Minima voluptas id explicabo."], ["date", "2020-05-06 18:40:15.120361"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.121058"], ["updated_at", "2020-05-05 18:40:15.121058"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni distinctio ea ut?"], ["description", "Aut aut pariatur aspernatur."], ["date", "2020-05-06 18:40:15.122911"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.123671"], ["updated_at", "2020-05-05 18:40:15.123671"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos aut nobis esse?"], ["description", "Similique aliquid quam autem."], ["date", "2020-05-06 18:40:15.124901"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.125673"], ["updated_at", "2020-05-05 18:40:15.125673"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed ea ipsa mollitia?"], ["description", "Corrupti dolorem possimus veniam."], ["date", "2020-05-06 18:40:15.127233"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.128510"], ["updated_at", "2020-05-05 18:40:15.128510"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit et aperiam fugiat?"], ["description", "Magni deserunt voluptas ut."], ["date", "2020-05-06 18:40:15.129950"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.130703"], ["updated_at", "2020-05-05 18:40:15.130703"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel similique dolores repellendus?"], ["description", "Fugiat debitis expedita vel."], ["date", "2020-05-06 18:40:15.131849"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.132544"], ["updated_at", "2020-05-05 18:40:15.132544"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia delectus magnam ex?"], ["description", "Molestiae nulla quidem doloribus."], ["date", "2020-05-06 18:40:15.133825"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.134847"], ["updated_at", "2020-05-05 18:40:15.134847"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis facere vitae nobis?"], ["description", "Deserunt autem distinctio non."], ["date", "2020-05-06 18:40:15.136547"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.137444"], ["updated_at", "2020-05-05 18:40:15.137444"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea aliquid dolorem ipsum?"], ["description", "Nostrum aut nihil alias."], ["date", "2020-05-06 18:40:15.138659"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.139337"], ["updated_at", "2020-05-05 18:40:15.139337"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum voluptatem et aliquam?"], ["description", "Distinctio quia illo eum."], ["date", "2020-05-06 18:40:15.140620"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.141342"], ["updated_at", "2020-05-05 18:40:15.141342"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est quia voluptatem aliquam?"], ["description", "Aut molestias quibusdam dolor."], ["date", "2020-05-06 18:40:15.142717"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.143992"], ["updated_at", "2020-05-05 18:40:15.143992"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam perspiciatis odit vitae?"], ["description", "Mollitia atque ea id."], ["date", "2020-05-06 18:40:15.145899"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.146869"], ["updated_at", "2020-05-05 18:40:15.146869"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.2ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:40:15.151412"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1303) + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Julius Toy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pF/T5us52nZETPZPhMSLo.uUIR2TeCpvr057zk9iFn.aAzTTuYG3i"], ["created_at", "2020-05-05 18:40:15.167974"], ["updated_at", "2020-05-05 18:40:15.167974"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nemo"], ["description", "Quia vitae velit animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.170917"], ["updated_at", "2020-05-05 18:40:15.170917"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus vel officiis id?"], ["description", "Non magni quis velit."], ["date", "2020-05-06 18:40:15.172420"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.173362"], ["updated_at", "2020-05-05 18:40:15.173362"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi dicta eligendi nobis?"], ["description", "Odit perspiciatis similique ipsam."], ["date", "2020-05-06 18:40:15.175315"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.176683"], ["updated_at", "2020-05-05 18:40:15.176683"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur voluptatem est veritatis?"], ["description", "Asperiores id consequatur beatae."], ["date", "2020-05-06 18:40:15.179340"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.180396"], ["updated_at", "2020-05-05 18:40:15.180396"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus nihil dolorum maiores?"], ["description", "Mollitia eum hic aspernatur."], ["date", "2020-05-06 18:40:15.181778"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.182541"], ["updated_at", "2020-05-05 18:40:15.182541"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed et maiores quo?"], ["description", "Quis aut ut recusandae."], ["date", "2020-05-06 18:40:15.183670"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.184369"], ["updated_at", "2020-05-05 18:40:15.184369"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda delectus accusantium sunt?"], ["description", "Iure aspernatur non voluptatem."], ["date", "2020-05-06 18:40:15.185580"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.186321"], ["updated_at", "2020-05-05 18:40:15.186321"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam animi recusandae cum?"], ["description", "Optio harum dignissimos dolorem."], ["date", "2020-05-06 18:40:15.187469"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.188154"], ["updated_at", "2020-05-05 18:40:15.188154"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum id nemo nulla?"], ["description", "Fugit in voluptatibus doloribus."], ["date", "2020-05-06 18:40:15.189304"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.189979"], ["updated_at", "2020-05-05 18:40:15.189979"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error et asperiores officiis?"], ["description", "Magni perspiciatis adipisci hic."], ["date", "2020-05-06 18:40:15.191190"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.191956"], ["updated_at", "2020-05-05 18:40:15.191956"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel ea et voluptatem?"], ["description", "Assumenda ex maxime vel."], ["date", "2020-05-06 18:40:15.194938"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.197161"], ["updated_at", "2020-05-05 18:40:15.197161"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto ex sint fuga?"], ["description", "Illo autem sit et."], ["date", "2020-05-06 18:40:15.199311"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.200242"], ["updated_at", "2020-05-05 18:40:15.200242"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In quia facere eos?"], ["description", "Accusantium quasi quod illum."], ["date", "2020-05-06 18:40:15.201518"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.202220"], ["updated_at", "2020-05-05 18:40:15.202220"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit veritatis eius amet?"], ["description", "Ea id explicabo fugiat."], ["date", "2020-05-06 18:40:15.203477"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.204184"], ["updated_at", "2020-05-05 18:40:15.204184"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam quae nihil sit?"], ["description", "Commodi molestiae nisi aliquam."], ["date", "2020-05-06 18:40:15.205480"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.206248"], ["updated_at", "2020-05-05 18:40:15.206248"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam voluptatibus et qui?"], ["description", "Ut vitae ut reprehenderit."], ["date", "2020-05-06 18:40:15.207559"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.208258"], ["updated_at", "2020-05-05 18:40:15.208258"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor id dolore omnis?"], ["description", "Nihil sint et saepe."], ["date", "2020-05-06 18:40:15.209452"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.210146"], ["updated_at", "2020-05-05 18:40:15.210146"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint non sit beatae?"], ["description", "Eos eaque recusandae id."], ["date", "2020-05-06 18:40:15.211613"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.212636"], ["updated_at", "2020-05-05 18:40:15.212636"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui repellat voluptatem voluptates?"], ["description", "Nihil unde maxime dolorem."], ["date", "2020-05-06 18:40:15.214031"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.215030"], ["updated_at", "2020-05-05 18:40:15.215030"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non voluptate in non?"], ["description", "Dolores rerum perferendis quis."], ["date", "2020-05-06 18:40:15.217030"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.217940"], ["updated_at", "2020-05-05 18:40:15.217940"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus magni odit non?"], ["description", "Voluptatem et qui ut."], ["date", "2020-05-06 18:40:15.219156"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.219825"], ["updated_at", "2020-05-05 18:40:15.219825"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["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: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (18.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ernestine McKenzie"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$zbqx14VJ3ko8.6IQgEsWWOUW5XP6KyiugAUetoJg2g5PdW1MlS7VK"], ["created_at", "2020-05-05 18:40:15.247158"], ["updated_at", "2020-05-05 18:40:15.247158"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consectetur"], ["description", "Quia ut nisi aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.249969"], ["updated_at", "2020-05-05 18:40:15.249969"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta adipisci facilis hic?"], ["description", "Aspernatur rerum doloribus hic."], ["date", "2020-05-06 18:40:15.251452"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.252379"], ["updated_at", "2020-05-05 18:40:15.252379"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores aspernatur est dicta?"], ["description", "Quis nemo cumque odio."], ["date", "2020-05-06 18:40:15.253740"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.254636"], ["updated_at", "2020-05-05 18:40:15.254636"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto voluptates ut ut?"], ["description", "Voluptates officia et ab."], ["date", "2020-05-06 18:40:15.256912"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.258147"], ["updated_at", "2020-05-05 18:40:15.258147"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus cumque dolorum excepturi?"], ["description", "Deserunt mollitia ut in."], ["date", "2020-05-06 18:40:15.259776"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.260647"], ["updated_at", "2020-05-05 18:40:15.260647"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id assumenda sit officia?"], ["description", "Quia eos quo qui."], ["date", "2020-05-06 18:40:15.262464"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.263416"], ["updated_at", "2020-05-05 18:40:15.263416"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem sequi omnis rem?"], ["description", "Rem perferendis sit quos."], ["date", "2020-05-06 18:40:15.264801"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.265644"], ["updated_at", "2020-05-05 18:40:15.265644"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint odit cupiditate quis?"], ["description", "Sit at quo officiis."], ["date", "2020-05-06 18:40:15.266867"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.267582"], ["updated_at", "2020-05-05 18:40:15.267582"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque laborum quia labore?"], ["description", "Quidem necessitatibus aliquid a."], ["date", "2020-05-06 18:40:15.268782"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.269456"], ["updated_at", "2020-05-05 18:40:15.269456"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque et animi quis?"], ["description", "Est voluptas rerum aut."], ["date", "2020-05-06 18:40:15.270610"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.271286"], ["updated_at", "2020-05-05 18:40:15.271286"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut nam quis dolores?"], ["description", "Odio rem reprehenderit excepturi."], ["date", "2020-05-06 18:40:15.273154"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.273882"], ["updated_at", "2020-05-05 18:40:15.273882"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus accusamus molestiae aut?"], ["description", "Impedit aut consectetur facilis."], ["date", "2020-05-06 18:40:15.275939"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.278412"], ["updated_at", "2020-05-05 18:40:15.278412"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa ut ullam sapiente?"], ["description", "Aut cumque ut ab."], ["date", "2020-05-06 18:40:15.280357"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.281253"], ["updated_at", "2020-05-05 18:40:15.281253"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos qui maxime distinctio?"], ["description", "Fugit sint possimus asperiores."], ["date", "2020-05-06 18:40:15.282467"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.283149"], ["updated_at", "2020-05-05 18:40:15.283149"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi vero repellat dolorem?"], ["description", "Quisquam minus omnis sed."], ["date", "2020-05-06 18:40:15.284356"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.285037"], ["updated_at", "2020-05-05 18:40:15.285037"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut et ab est?"], ["description", "Dignissimos illum et a."], ["date", "2020-05-06 18:40:15.286242"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.286999"], ["updated_at", "2020-05-05 18:40:15.286999"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi aut quam quisquam?"], ["description", "Dicta ducimus officia rerum."], ["date", "2020-05-06 18:40:15.288245"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.288924"], ["updated_at", "2020-05-05 18:40:15.288924"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur et est non?"], ["description", "Rerum et consequatur molestias."], ["date", "2020-05-06 18:40:15.290104"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.290874"], ["updated_at", "2020-05-05 18:40:15.290874"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur et exercitationem repellat?"], ["description", "Sed vel facilis quia."], ["date", "2020-05-06 18:40:15.292129"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.292816"], ["updated_at", "2020-05-05 18:40:15.292816"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod accusamus aut ipsam?"], ["description", "Ratione libero optio id."], ["date", "2020-05-06 18:40:15.294239"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.295826"], ["updated_at", "2020-05-05 18:40:15.295826"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas sint labore minus?"], ["description", "Dignissimos omnis voluptatibus exercitationem."], ["date", "2020-05-06 18:40:15.298085"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.299052"], ["updated_at", "2020-05-05 18:40:15.299052"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["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: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Cordia Blick"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nIhXGN9rVVkSZDSvwPJtL.xhRwfuY5NIc12ha6ozwDhRRCw0bz94m"], ["created_at", "2020-05-05 18:40:15.315742"], ["updated_at", "2020-05-05 18:40:15.315742"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "debitis"], ["description", "Exercitationem nostrum facere eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.319854"], ["updated_at", "2020-05-05 18:40:15.319854"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut facilis atque nobis?"], ["description", "In dolor et illum."], ["date", "2020-05-06 18:40:15.321428"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.322390"], ["updated_at", "2020-05-05 18:40:15.322390"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam et non dolor?"], ["description", "Nobis ut reiciendis ea."], ["date", "2020-05-06 18:40:15.323724"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.324441"], ["updated_at", "2020-05-05 18:40:15.324441"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est porro autem tempore?"], ["description", "Facere consequuntur est adipisci."], ["date", "2020-05-06 18:40:15.326293"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.327572"], ["updated_at", "2020-05-05 18:40:15.327572"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur quia velit cupiditate?"], ["description", "Sit nihil libero unde."], ["date", "2020-05-06 18:40:15.328930"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.329623"], ["updated_at", "2020-05-05 18:40:15.329623"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut occaecati repellat sed?"], ["description", "Ipsa quos voluptate enim."], ["date", "2020-05-06 18:40:15.330750"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.331432"], ["updated_at", "2020-05-05 18:40:15.331432"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor sequi fuga soluta?"], ["description", "Provident occaecati reprehenderit nesciunt."], ["date", "2020-05-06 18:40:15.332561"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.333237"], ["updated_at", "2020-05-05 18:40:15.333237"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias voluptatibus nam veniam?"], ["description", "Veniam voluptatem voluptatum culpa."], ["date", "2020-05-06 18:40:15.334401"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.335327"], ["updated_at", "2020-05-05 18:40:15.335327"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit et aut ipsum?"], ["description", "Aperiam libero aut architecto."], ["date", "2020-05-06 18:40:15.337476"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.338765"], ["updated_at", "2020-05-05 18:40:15.338765"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis rerum rerum nemo?"], ["description", "Aut qui voluptate voluptas."], ["date", "2020-05-06 18:40:15.340483"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.341321"], ["updated_at", "2020-05-05 18:40:15.341321"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem qui perferendis est?"], ["description", "Aut et ea et."], ["date", "2020-05-06 18:40:15.343936"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.345284"], ["updated_at", "2020-05-05 18:40:15.345284"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus impedit aut consequatur?"], ["description", "Explicabo rerum expedita et."], ["date", "2020-05-06 18:40:15.346910"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.347858"], ["updated_at", "2020-05-05 18:40:15.347858"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam ut reiciendis aut?"], ["description", "Velit reiciendis adipisci suscipit."], ["date", "2020-05-06 18:40:15.349284"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.350062"], ["updated_at", "2020-05-05 18:40:15.350062"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque eaque quis sint?"], ["description", "Sed odit iure dolor."], ["date", "2020-05-06 18:40:15.351320"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.352030"], ["updated_at", "2020-05-05 18:40:15.352030"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam libero omnis sed?"], ["description", "Totam sed ad id."], ["date", "2020-05-06 18:40:15.353340"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.354042"], ["updated_at", "2020-05-05 18:40:15.354042"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto ut ipsum quos?"], ["description", "Nostrum quibusdam temporibus magnam."], ["date", "2020-05-06 18:40:15.355448"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.356795"], ["updated_at", "2020-05-05 18:40:15.356795"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et fuga id praesentium?"], ["description", "Molestiae quia labore quaerat."], ["date", "2020-05-06 18:40:15.358278"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.359087"], ["updated_at", "2020-05-05 18:40:15.359087"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt aut voluptate consectetur?"], ["description", "A et ab provident."], ["date", "2020-05-06 18:40:15.360330"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.361063"], ["updated_at", "2020-05-05 18:40:15.361063"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum quisquam et ab?"], ["description", "Omnis aliquam quam quos."], ["date", "2020-05-06 18:40:15.362299"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.363108"], ["updated_at", "2020-05-05 18:40:15.363108"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et qui voluptas ipsum?"], ["description", "Et optio qui amet."], ["date", "2020-05-06 18:40:15.364345"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.365069"], ["updated_at", "2020-05-05 18:40:15.365069"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo eius quaerat est?"], ["description", "Animi et est sed."], ["date", "2020-05-06 18:40:15.366346"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:15.367097"], ["updated_at", "2020-05-05 18:40:15.367097"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetingsController#destroy as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + UserMeeting Load (0.1ms) SELECT "user_meetings".* FROM "user_meetings" WHERE "user_meetings"."meeting_id" = ? [["meeting_id", 1]] + Meeting Destroy (0.2ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 6ms (ActiveRecord: 0.9ms | Allocations: 2317) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Cupiditate ex dolores nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.386985"], ["updated_at", "2020-05-05 18:40:15.386985"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cupiditate"], ["description", "Ipsum assumenda similique esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.389910"], ["updated_at", "2020-05-05 18:40:15.389910"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minus"], ["description", "Ut et saepe quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.391382"], ["updated_at", "2020-05-05 18:40:15.391382"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nesciunt"], ["description", "Qui dicta consectetur vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.392619"], ["updated_at", "2020-05-05 18:40:15.392619"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Consequuntur animi consectetur expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.394510"], ["updated_at", "2020-05-05 18:40:15.394510"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eveniet"], ["description", "Veniam quidem voluptate illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.398688"], ["updated_at", "2020-05-05 18:40:15.398688"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "amet"], ["description", "Qui tempora est minus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.401244"], ["updated_at", "2020-05-05 18:40:15.401244"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eaque"], ["description", "Perferendis iure est fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.402701"], ["updated_at", "2020-05-05 18:40:15.402701"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Est porro dolorem autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.403980"], ["updated_at", "2020-05-05 18:40:15.403980"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Tenetur enim accusamus praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.405495"], ["updated_at", "2020-05-05 18:40:15.405495"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bettyann Schneider"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3CXJ5Zd3iU51mozyVqKsUuKxlnXzHNJsDrB08IuOE40OVYkfIPfzK"], ["created_at", "2020-05-05 18:40:15.408115"], ["updated_at", "2020-05-05 18:40:15.408115"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.45ms) +Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.3ms | Allocations: 2914) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ab"], ["description", "Repellendus est occaecati accusantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.427714"], ["updated_at", "2020-05-05 18:40:15.427714"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Et odio doloremque impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.431097"], ["updated_at", "2020-05-05 18:40:15.431097"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloremque"], ["description", "Facere commodi dolorum non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.433145"], ["updated_at", "2020-05-05 18:40:15.433145"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Voluptatibus at quibusdam dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.434501"], ["updated_at", "2020-05-05 18:40:15.434501"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Ipsa tenetur voluptas iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.436077"], ["updated_at", "2020-05-05 18:40:15.436077"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Expedita quia repellat sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.438544"], ["updated_at", "2020-05-05 18:40:15.438544"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Asperiores eos aperiam animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.440619"], ["updated_at", "2020-05-05 18:40:15.440619"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corporis"], ["description", "Amet alias repudiandae et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.442052"], ["updated_at", "2020-05-05 18:40:15.442052"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nisi"], ["description", "Inventore est laborum expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.443342"], ["updated_at", "2020-05-05 18:40:15.443342"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Ex voluptatem aliquam voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.445365"], ["updated_at", "2020-05-05 18:40:15.445365"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Lasandra DuBuque"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$R3s41D8PXI9xjIoznxaHzeSVLeFmBYuE4cem63uEGdjE0oxjkBLrW"], ["created_at", "2020-05-05 18:40:15.448286"], ["updated_at", "2020-05-05 18:40:15.448286"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2846) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "exercitationem"], ["description", "Praesentium aliquam ratione ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.466291"], ["updated_at", "2020-05-05 18:40:15.466291"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ratione"], ["description", "Maxime tempora incidunt sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.469917"], ["updated_at", "2020-05-05 18:40:15.469917"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veniam"], ["description", "Eaque numquam sunt praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.471702"], ["updated_at", "2020-05-05 18:40:15.471702"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Consectetur distinctio atque architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.473181"], ["updated_at", "2020-05-05 18:40:15.473181"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "necessitatibus"], ["description", "Nostrum sapiente voluptas dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.474653"], ["updated_at", "2020-05-05 18:40:15.474653"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deserunt"], ["description", "Sunt possimus maiores voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.476251"], ["updated_at", "2020-05-05 18:40:15.476251"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "esse"], ["description", "Et est rerum temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.479672"], ["updated_at", "2020-05-05 18:40:15.479672"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Soluta atque voluptatem voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.481869"], ["updated_at", "2020-05-05 18:40:15.481869"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Corporis consequuntur labore facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.483254"], ["updated_at", "2020-05-05 18:40:15.483254"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Unde quaerat porro quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.484586"], ["updated_at", "2020-05-05 18:40:15.484586"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Julissa Dare"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1sjvcVreWdWH7Wj2tXpfyOP3JyJn9cj/AeNiZSljjI/QE4JJmzId6"], ["created_at", "2020-05-05 18:40:15.487384"], ["updated_at", "2020-05-05 18:40:15.487384"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.64ms) +Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms | Allocations: 2846) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.35ms) +Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.3ms | Allocations: 1242) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "commodi"], ["description", "Quis similique quas ullam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.511002"], ["updated_at", "2020-05-05 18:40:15.511002"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Est est voluptates consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.514806"], ["updated_at", "2020-05-05 18:40:15.514806"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptate"], ["description", "Odio autem suscipit non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.516890"], ["updated_at", "2020-05-05 18:40:15.516890"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Inventore sint vero placeat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.519034"], ["updated_at", "2020-05-05 18:40:15.519034"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempora"], ["description", "Qui et dolores minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.520638"], ["updated_at", "2020-05-05 18:40:15.520638"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Eum voluptate aut consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.522678"], ["updated_at", "2020-05-05 18:40:15.522678"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "saepe"], ["description", "Numquam sed dolorum velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.524383"], ["updated_at", "2020-05-05 18:40:15.524383"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fuga"], ["description", "Aut ut libero qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.525760"], ["updated_at", "2020-05-05 18:40:15.525760"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nobis"], ["description", "Et fugiat aut minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.527623"], ["updated_at", "2020-05-05 18:40:15.527623"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Quia architecto eum molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.529326"], ["updated_at", "2020-05-05 18:40:15.529326"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Willena Cassin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3EcXkwNgfU/44pufJfp8p.uBo/QVNOKqRgxqvieQygC43XX09gJ8m"], ["created_at", "2020-05-05 18:40:15.532055"], ["updated_at", "2020-05-05 18:40:15.532055"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.16ms) +Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.1ms | Allocations: 2843) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.91ms) +Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.3ms | Allocations: 1240) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Qui blanditiis qui et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.555672"], ["updated_at", "2020-05-05 18:40:15.555672"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Aut labore magni ullam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.559764"], ["updated_at", "2020-05-05 18:40:15.559764"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Eos explicabo et quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.562385"], ["updated_at", "2020-05-05 18:40:15.562385"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vitae"], ["description", "Sit fugit quibusdam dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.564178"], ["updated_at", "2020-05-05 18:40:15.564178"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quod"], ["description", "Vel qui dicta sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.565766"], ["updated_at", "2020-05-05 18:40:15.565766"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officiis"], ["description", "Magnam mollitia voluptatibus vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.567104"], ["updated_at", "2020-05-05 18:40:15.567104"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugit"], ["description", "Cum doloribus non magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.568414"], ["updated_at", "2020-05-05 18:40:15.568414"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Voluptatem nihil aut totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.569716"], ["updated_at", "2020-05-05 18:40:15.569716"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Non amet quis excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.571037"], ["updated_at", "2020-05-05 18:40:15.571037"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptate"], ["description", "Qui mollitia nostrum magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.572378"], ["updated_at", "2020-05-05 18:40:15.572378"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bradford Renner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Wue3YI9Chb/g092snA9Uzeo1SE27W8dMzFK5nNyGQ4vBBDrPTIEwu"], ["created_at", "2020-05-05 18:40:15.574989"], ["updated_at", "2020-05-05 18:40:15.574989"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetsController#index as HTML + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.57ms) +Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.5ms | Allocations: 2842) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Consequatur neque velit quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.599970"], ["updated_at", "2020-05-05 18:40:15.599970"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Culpa illo in aperiam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.617926"], ["updated_at", "2020-05-05 18:40:15.617926"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vero"], ["description", "Velit cumque quaerat at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.620773"], ["updated_at", "2020-05-05 18:40:15.620773"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "occaecati"], ["description", "Ad consectetur sint aliquid."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.622294"], ["updated_at", "2020-05-05 18:40:15.622294"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "modi"], ["description", "Sit animi et vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.623661"], ["updated_at", "2020-05-05 18:40:15.623661"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "exercitationem"], ["description", "Sint quae quasi odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.624976"], ["updated_at", "2020-05-05 18:40:15.624976"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Velit quam earum sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.626444"], ["updated_at", "2020-05-05 18:40:15.626444"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Non ut quasi nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.628423"], ["updated_at", "2020-05-05 18:40:15.628423"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "exercitationem"], ["description", "Reprehenderit at iusto explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.630379"], ["updated_at", "2020-05-05 18:40:15.630379"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rem"], ["description", "Ratione officia tempora voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.631902"], ["updated_at", "2020-05-05 18:40:15.631902"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rosendo Bradtke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mKZexfCisQ/zKcWZH5YMReDJYLXW6nSGgPBM3scN1ZnDGRbheWFYi"], ["created_at", "2020-05-05 18:40:15.634591"], ["updated_at", "2020-05-05 18:40:15.634591"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.33ms) +Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.2ms | Allocations: 2841) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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.2ms | Allocations: 512) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.9ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquid"], ["description", "Magnam qui explicabo quaerat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.655740"], ["updated_at", "2020-05-05 18:40:15.655740"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eius"], ["description", "Consequuntur exercitationem culpa consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.660376"], ["updated_at", "2020-05-05 18:40:15.660376"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "unde"], ["description", "Quisquam nesciunt quam vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.662647"], ["updated_at", "2020-05-05 18:40:15.662647"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatibus"], ["description", "Quidem vel corrupti itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.664360"], ["updated_at", "2020-05-05 18:40:15.664360"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Nam aut architecto et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.665770"], ["updated_at", "2020-05-05 18:40:15.665770"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Quam minima occaecati quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.667118"], ["updated_at", "2020-05-05 18:40:15.667118"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Molestias doloribus velit explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.668374"], ["updated_at", "2020-05-05 18:40:15.668374"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Repellat voluptates veritatis ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.669782"], ["updated_at", "2020-05-05 18:40:15.669782"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Magni dolorum qui sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.671100"], ["updated_at", "2020-05-05 18:40:15.671100"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laudantium"], ["description", "Voluptatem sed earum veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.672371"], ["updated_at", "2020-05-05 18:40:15.672371"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dwight Armstrong"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ffaIY5bs2pK.V4duivUkD..TK9kTo.NE4sg8IOQJ0CipXFQgwRVL6"], ["created_at", "2020-05-05 18:40:15.675014"], ["updated_at", "2020-05-05 18:40:15.675014"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.08ms) +Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.3ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:40:15 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:40:15.701221"], ["updated_at", "2020-05-05 18:40:15.701221"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.53ms) +Completed 201 Created in 22ms (Views: 1.0ms | ActiveRecord: 1.2ms | Allocations: 6207) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Et ullam pariatur ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.717414"], ["updated_at", "2020-05-05 18:40:15.717414"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "reprehenderit"], ["description", "Nesciunt quam odit deleniti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.721825"], ["updated_at", "2020-05-05 18:40:15.721825"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Illo quia sunt vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.723380"], ["updated_at", "2020-05-05 18:40:15.723380"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Voluptatem consequatur velit quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.724668"], ["updated_at", "2020-05-05 18:40:15.724668"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellendus"], ["description", "Sed non quia et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.726135"], ["updated_at", "2020-05-05 18:40:15.726135"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "debitis"], ["description", "Commodi esse velit omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.728118"], ["updated_at", "2020-05-05 18:40:15.728118"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "modi"], ["description", "Aut eum aut veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.729739"], ["updated_at", "2020-05-05 18:40:15.729739"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Quis voluptatem aliquid reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.731018"], ["updated_at", "2020-05-05 18:40:15.731018"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptates"], ["description", "Dolor odit fugiat sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.732318"], ["updated_at", "2020-05-05 18:40:15.732318"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perspiciatis"], ["description", "Beatae perferendis tenetur delectus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.733615"], ["updated_at", "2020-05-05 18:40:15.733615"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kaila Beahan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mSMxg6KzjD1FDZchnxuOj.dH85QZKwwC61gFh/Ya.1ZCWVIWWoJhq"], ["created_at", "2020-05-05 18:40:15.736257"], ["updated_at", "2020-05-05 18:40:15.736257"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.82ms) +Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.3ms | Allocations: 2841) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:40:15 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:40:15.750815"], ["updated_at", "2020-05-05 18:40:15.750815"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.46ms) +Completed 201 Created in 5ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 2251) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "neque"], ["description", "Alias nostrum velit porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.765065"], ["updated_at", "2020-05-05 18:40:15.765065"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Sequi quis autem adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.768297"], ["updated_at", "2020-05-05 18:40:15.768297"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Nam sit voluptatem libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.770335"], ["updated_at", "2020-05-05 18:40:15.770335"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "error"], ["description", "Ratione modi non eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.771854"], ["updated_at", "2020-05-05 18:40:15.771854"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Harum consequatur possimus dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.773178"], ["updated_at", "2020-05-05 18:40:15.773178"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Dolorem quo iste consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.774482"], ["updated_at", "2020-05-05 18:40:15.774482"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veniam"], ["description", "Officiis dolores et consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.775761"], ["updated_at", "2020-05-05 18:40:15.775761"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Molestiae provident repellendus tenetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.777283"], ["updated_at", "2020-05-05 18:40:15.777283"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Aut qui unde consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.780326"], ["updated_at", "2020-05-05 18:40:15.780326"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minus"], ["description", "Quas asperiores ut amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.782622"], ["updated_at", "2020-05-05 18:40:15.782622"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Zachary Mosciski PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$z7kehPaTLBDzGy25rnXT7O6cOfvfXPvUo9Wy4Xn/o.1KCHvGuI54i"], ["created_at", "2020-05-05 18:40:15.785556"], ["updated_at", "2020-05-05 18:40:15.785556"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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 POST "/meets" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 4006) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corporis"], ["description", "Ratione aspernatur nihil et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.809608"], ["updated_at", "2020-05-05 18:40:15.809608"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Odio cumque voluptatum sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.813821"], ["updated_at", "2020-05-05 18:40:15.813821"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veritatis"], ["description", "Reiciendis porro sunt rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.815533"], ["updated_at", "2020-05-05 18:40:15.815533"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "in"], ["description", "Consequatur aut sed quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.817126"], ["updated_at", "2020-05-05 18:40:15.817126"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatibus"], ["description", "Quis quidem ratione mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.818853"], ["updated_at", "2020-05-05 18:40:15.818853"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illo"], ["description", "Sed consectetur voluptatibus suscipit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.820699"], ["updated_at", "2020-05-05 18:40:15.820699"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deserunt"], ["description", "Sequi iusto molestias praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.822723"], ["updated_at", "2020-05-05 18:40:15.822723"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Non animi aliquid necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.824575"], ["updated_at", "2020-05-05 18:40:15.824575"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Voluptatem corrupti necessitatibus totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.826064"], ["updated_at", "2020-05-05 18:40:15.826064"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "in"], ["description", "Ipsa laboriosam ut et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.827984"], ["updated_at", "2020-05-05 18:40:15.827984"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hanh Pfannerstill"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$//71PjM3e1Go03zj6YuVBeywyvCefWvr3JlcAIy/xH1ugcri.HKXm"], ["created_at", "2020-05-05 18:40:15.830747"], ["updated_at", "2020-05-05 18:40:15.830747"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.1ms | Allocations: 2845) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 3697) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corporis"], ["description", "Ullam nobis labore molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.854706"], ["updated_at", "2020-05-05 18:40:15.854706"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Dolor ut et error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.858483"], ["updated_at", "2020-05-05 18:40:15.858483"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "saepe"], ["description", "Eos ad et est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.860700"], ["updated_at", "2020-05-05 18:40:15.860700"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Consequuntur labore et facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.862831"], ["updated_at", "2020-05-05 18:40:15.862831"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Minima eum quas doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.864471"], ["updated_at", "2020-05-05 18:40:15.864471"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "exercitationem"], ["description", "Earum aut voluptas perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.866336"], ["updated_at", "2020-05-05 18:40:15.866336"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "suscipit"], ["description", "Quis a sequi qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.868342"], ["updated_at", "2020-05-05 18:40:15.868342"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Quod nisi voluptatem deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.869678"], ["updated_at", "2020-05-05 18:40:15.869678"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Facilis tempore rerum quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.870953"], ["updated_at", "2020-05-05 18:40:15.870953"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "Aspernatur quae laboriosam vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.872255"], ["updated_at", "2020-05-05 18:40:15.872255"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nathan Gislason"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SApynHrocOVgKZHGL/FdheNgUw4YN/Z7NSUGqmezXI5w9jAyJlrNW"], ["created_at", "2020-05-05 18:40:15.874875"], ["updated_at", "2020-05-05 18:40:15.874875"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (2.97ms) +Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:40:15.886307"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1044) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Possimus vitae adipisci tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.896298"], ["updated_at", "2020-05-05 18:40:15.896298"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "placeat"], ["description", "Placeat distinctio itaque quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.900152"], ["updated_at", "2020-05-05 18:40:15.900152"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maiores"], ["description", "Autem placeat iste ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.902509"], ["updated_at", "2020-05-05 18:40:15.902509"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "temporibus"], ["description", "Maiores modi nesciunt error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.903961"], ["updated_at", "2020-05-05 18:40:15.903961"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deserunt"], ["description", "Dolor magni voluptatum adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.905531"], ["updated_at", "2020-05-05 18:40:15.905531"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perferendis"], ["description", "Eum est sit doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.907050"], ["updated_at", "2020-05-05 18:40:15.907050"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Consequatur ipsum distinctio aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.908339"], ["updated_at", "2020-05-05 18:40:15.908339"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugiat"], ["description", "Sunt quis commodi dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.909597"], ["updated_at", "2020-05-05 18:40:15.909597"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Sint quos non dignissimos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.911028"], ["updated_at", "2020-05-05 18:40:15.911028"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsam"], ["description", "Natus ad eveniet sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.912958"], ["updated_at", "2020-05-05 18:40:15.912958"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mauricio Boyle III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gSMncaX9iSrVPCCp4ctmper4HEo.F3/GWPMfz4LfSJmZCv8hnMgxm"], ["created_at", "2020-05-05 18:40:15.915717"], ["updated_at", "2020-05-05 18:40:15.915717"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.64ms) +Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:40:15.928228"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 999) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "necessitatibus"], ["description", "Aut ratione odit quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.938408"], ["updated_at", "2020-05-05 18:40:15.938408"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "expedita"], ["description", "Labore sunt harum corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.942714"], ["updated_at", "2020-05-05 18:40:15.942714"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "in"], ["description", "Quo provident quia architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.944910"], ["updated_at", "2020-05-05 18:40:15.944910"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusantium"], ["description", "In ut voluptas nisi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.946676"], ["updated_at", "2020-05-05 18:40:15.946676"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatum"], ["description", "Laboriosam consequatur porro cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.948006"], ["updated_at", "2020-05-05 18:40:15.948006"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "mollitia"], ["description", "Quam illo vitae sequi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.949330"], ["updated_at", "2020-05-05 18:40:15.949330"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rem"], ["description", "Accusantium necessitatibus odio repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.950583"], ["updated_at", "2020-05-05 18:40:15.950583"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Cupiditate nobis voluptate deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.951892"], ["updated_at", "2020-05-05 18:40:15.951892"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Odio vel neque illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.953223"], ["updated_at", "2020-05-05 18:40:15.953223"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "esse"], ["description", "Aperiam reprehenderit pariatur est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:15.954503"], ["updated_at", "2020-05-05 18:40:15.954503"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Assunta Reichel III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gtErwAmv4J9GzSG8mC3Vfuhrk0rJJFQdQrqhMcMqltRuDIOrgpLc2"], ["created_at", "2020-05-05 18:40:15.957210"], ["updated_at", "2020-05-05 18:40:15.957210"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.3ms) +Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.3ms | Allocations: 2842) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:40:15 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1205) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Vincent Barrows"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/ICbdnZRODL12EHFI/uxEuIg7gAP2yKilGI/L9c17Rgc89tU/012q"], ["created_at", "2020-05-05 18:40:15.983315"], ["updated_at", "2020-05-05 18:40:15.983315"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Eduardo Frami PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$IO4G.3asnyHR2VD5qgIQIuzoaZZunQbKXwHGlYojbVi36zDRA4DAW"], ["created_at", "2020-05-05 18:40:15.988263"], ["updated_at", "2020-05-05 18:40:15.988263"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rhona Keeling"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6MpEIFYZj3W7K3/JbaGsruKuy43Mqy394TuiIq1JnPbN5VOl1lZKi"], ["created_at", "2020-05-05 18:40:15.991011"], ["updated_at", "2020-05-05 18:40:15.991011"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Antoine West"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HrwHfcNaPeTn2GnkC9muzOYk6lOzlzgRgQ3OEPz76nfUHQBwQODB2"], ["created_at", "2020-05-05 18:40:15.993445"], ["updated_at", "2020-05-05 18:40:15.993445"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Danilo White"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nxFEm9awIKI2ZDRES27/1euDIg0ElBMvFnfvvGpsRGVUPigy8P84C"], ["created_at", "2020-05-05 18:40:15.995849"], ["updated_at", "2020-05-05 18:40:15.995849"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Joshua Fahey"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$O847tBO0.RIS7CG8e5L1GeFS0sIQKmHwZE6TB4IWJPhxSlQamKTpW"], ["created_at", "2020-05-05 18:40:15.998334"], ["updated_at", "2020-05-05 18:40:15.998334"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sarai Beatty"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ASnHHp.0vXmj46FMmdB57.uz8sXL8Xr2x/8U5vZ2FP8YrKkfMKrNy"], ["created_at", "2020-05-05 18:40:16.001411"], ["updated_at", "2020-05-05 18:40:16.001411"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Elsy Weissnat"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$zJglEnc6/Uy6PpZPKKVi..jkNiomP1sc.uiFU3DZq0.pbOhHH/012"], ["created_at", "2020-05-05 18:40:16.004930"], ["updated_at", "2020-05-05 18:40:16.004930"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Meghan Gottlieb II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YNBixtKYux.dYEa7YTWGCO8gcSGMLI4sBUkO8OpqQ9AIvZvFdxqTK"], ["created_at", "2020-05-05 18:40:16.007647"], ["updated_at", "2020-05-05 18:40:16.007647"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lillian Boehm DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$iqJx9mquk.DsVy6K/CZtQed13cqEuJQtGoCSRhTb4KfqJQLUgeD/q"], ["created_at", "2020-05-05 18:40:16.010059"], ["updated_at", "2020-05-05 18:40:16.010059"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:40:16 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.81ms) +Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms | Allocations: 2345) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Milo Cummings"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tyL7V8VoKnQrIRe98umu1eT5tqhH8qyz7/AROpQHdV6imIuO/5Ia2"], ["created_at", "2020-05-05 18:40:16.030306"], ["updated_at", "2020-05-05 18:40:16.030306"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Donella Runolfsdottir"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HIdu0lfwcvXgZPd.h4I7BOOHRD07Ev6c8Z90uJ0mx6IT.tOfDVY0e"], ["created_at", "2020-05-05 18:40:16.035030"], ["updated_at", "2020-05-05 18:40:16.035030"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Micaela Tromp"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KQKF/ngEuk0pY6pQlP8nK.4vDTPx/h3xwR5N3Jefd0jLQ.uGrgtE2"], ["created_at", "2020-05-05 18:40:16.037947"], ["updated_at", "2020-05-05 18:40:16.037947"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Erasmo Bogisich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$daqnJysX53cYmKD7KeEnXu3Ld.gUYDw0sYMLLgPopLBrl3eVaa5yS"], ["created_at", "2020-05-05 18:40:16.041150"], ["updated_at", "2020-05-05 18:40:16.041150"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Reuben Bogisich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hyNde6x1KuFlG2WW0vcVKeuCleyVrTKY7T1PLPtd2pklUGvtfwcdS"], ["created_at", "2020-05-05 18:40:16.044873"], ["updated_at", "2020-05-05 18:40:16.044873"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Caryn Connelly"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JHijCZmzuSQGhszDjg3d6O5Zpe4U56Hsfzqv3JnX4FomJFxMF2Y9C"], ["created_at", "2020-05-05 18:40:16.047797"], ["updated_at", "2020-05-05 18:40:16.047797"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Brendon Bergnaum"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$evvSB.p615nLOC308P0klOOwzFp4.rKSJ5TkJdFHFw4W8zqnE3/d2"], ["created_at", "2020-05-05 18:40:16.050140"], ["updated_at", "2020-05-05 18:40:16.050140"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Wilber Marquardt"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BNiPrWv5siR5.9rUwT.V1ecxSwdX.JhI6eQOR.ymMUkE/Cc8vVDWC"], ["created_at", "2020-05-05 18:40:16.052536"], ["updated_at", "2020-05-05 18:40:16.052536"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Donnell Kihn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$iKFBuqbjSAXK5HZMij26U.XX1K/RHHQMs5f/mrE45Xk4tvqdLqjka"], ["created_at", "2020-05-05 18:40:16.054906"], ["updated_at", "2020-05-05 18:40:16.054906"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Noe Rohan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2QEy2PWp9m.I4NrVH8/JceMMAiLIUFqGetUhX1rGSAgoMl0NbeLDi"], ["created_at", "2020-05-05 18:40:16.057453"], ["updated_at", "2020-05-05 18:40:16.057453"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:40:16 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.05ms) +Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms | Allocations: 2203) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "James Kihn DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NtHA2dKuXBkwNK9Q7ExWv.oGqj1akzxMbxVwCF7/6MSBu6YmB2ig6"], ["created_at", "2020-05-05 18:40:16.075540"], ["updated_at", "2020-05-05 18:40:16.075540"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jaimie Wehner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$x8fdhhP3L1i8O.kUpGxLfeFrpBMPVKFcDGglHUUBbD1tdC1XXrEAS"], ["created_at", "2020-05-05 18:40:16.080142"], ["updated_at", "2020-05-05 18:40:16.080142"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Luciano Kling"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$A/iE8w/YV6/CANOfMFzz.OKsrAiBGTZf4LM62i6zu.rawtPAYxSNS"], ["created_at", "2020-05-05 18:40:16.083751"], ["updated_at", "2020-05-05 18:40:16.083751"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Andrew Gutkowski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5sg8cE09tDH5gbm5eIBCZuByyDBMTD50iX9AY1Q2Rq1MfgLcX/DpS"], ["created_at", "2020-05-05 18:40:16.086985"], ["updated_at", "2020-05-05 18:40:16.086985"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Wilford Lakin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$X6PVhHoYZsSyXQjRPC7Gbupsemn908rUxZ72CD7nqDCWAidEedm.."], ["created_at", "2020-05-05 18:40:16.089571"], ["updated_at", "2020-05-05 18:40:16.089571"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Euna MacGyver"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZeUV7drw7HVh0qKOYtA0kepeBQQi1shn/EVZLX9gYwThDedoMZI4y"], ["created_at", "2020-05-05 18:40:16.091980"], ["updated_at", "2020-05-05 18:40:16.091980"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Stevie Mosciski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/i48LSkrbAUHft/9eT3dN.KrsghFa.u/WtakHSozpg74QbPpxx0ry"], ["created_at", "2020-05-05 18:40:16.094742"], ["updated_at", "2020-05-05 18:40:16.094742"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lon Koelpin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$F9qM.pIGCuZCCyMDEwhjiu72cHUWHEsO.du/LPJvBMBSK/VHKH73m"], ["created_at", "2020-05-05 18:40:16.097628"], ["updated_at", "2020-05-05 18:40:16.097628"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Meredith Mueller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6guuT6PmsY8iBLZKa7SWn.TaX3paJ7MegIPQ5Lr6L7R8uUFlEpL6O"], ["created_at", "2020-05-05 18:40:16.100508"], ["updated_at", "2020-05-05 18:40:16.100508"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Edward Nitzsche"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$V9RvOSWtowiFYBXrIdQMYepf9kNT5qO8u5GF6h2ipBx4Z6BwNAedu"], ["created_at", "2020-05-05 18:40:16.104046"], ["updated_at", "2020-05-05 18:40:16.104046"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:40:16 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.21ms) +Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:40:16 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.5ms) +Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (30.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Beata Greenholt"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$86V0E1J8TwyHNyASbI6lPue2KIbjvcWEVtlsR3x.AAac0DUT7GznS"], ["created_at", "2020-05-05 18:40:16.150422"], ["updated_at", "2020-05-05 18:40:16.150422"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Emanuel Oberbrunner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Ha.j6XCJOmcPQ3EEOGHPmeS44T8w2cyxUFRuUMaFJE/uUB8XbnG6G"], ["created_at", "2020-05-05 18:40:16.154204"], ["updated_at", "2020-05-05 18:40:16.154204"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Olinda Brakus"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GcOOBpL0Yvh.u0ebi9B1W.NgLVadZvHbD4HXQrHcR3loCpA5oxpCO"], ["created_at", "2020-05-05 18:40:16.156812"], ["updated_at", "2020-05-05 18:40:16.156812"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Danna D'Amore"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pNPDXfmsNF/zPPyTv7coAOqu0G5Xp0kZN9nsDnhNifyEjG.LqT0bG"], ["created_at", "2020-05-05 18:40:16.159269"], ["updated_at", "2020-05-05 18:40:16.159269"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rick Johnston"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ofztXLg135TmVHrgRnZw5.oYNS/Xp0u5k4a0PuQY2oVUQdKdzK0e6"], ["created_at", "2020-05-05 18:40:16.162885"], ["updated_at", "2020-05-05 18:40:16.162885"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Brunilda Upton"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$j.xRRWUAVrQlTEXHmb91fOUJ2CxzpheRl3mypGA.vxL0HsohygtLS"], ["created_at", "2020-05-05 18:40:16.166894"], ["updated_at", "2020-05-05 18:40:16.166894"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Michael Mosciski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LWuh3SJ3T2516OJC/faMU.9aCuhLwW6arYw0LHYJULSCXlVbFteAC"], ["created_at", "2020-05-05 18:40:16.169930"], ["updated_at", "2020-05-05 18:40:16.169930"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Benton Wolff"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$sZ61lEdZajTFttOjRQ8lUuS/3TrAgzoamqTZIETjJk7WkTWEZvrc2"], ["created_at", "2020-05-05 18:40:16.172480"], ["updated_at", "2020-05-05 18:40:16.172480"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Douglass Morissette"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nFasCJBmlw4anaBG354F9u8kZTMj7blRMoj0dt8Ewf4/QRcn0RnBa"], ["created_at", "2020-05-05 18:40:16.174870"], ["updated_at", "2020-05-05 18:40:16.174870"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Jamison Jacobson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3K/s5RbKZa.zZsyXpEo3ZuXMQN9bndjjM2qktlZXdam2CBhvXDn0."], ["created_at", "2020-05-05 18:40:16.177570"], ["updated_at", "2020-05-05 18:40:16.177570"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:40:16 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.74ms) +Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:40:16 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.34ms) +Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (45.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.4ms) SAVEPOINT active_record_2 + User Create (2.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "America Fay"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ih0A6THHmfh7oMe4KefYiuTnBkVgOLg/B6e5aGAAyzOcG8yYyrx3i"], ["created_at", "2020-05-05 18:40:16.242928"], ["updated_at", "2020-05-05 18:40:16.242928"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nena Hartmann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$MqpxEC4GBF9bsHNTkxjurOxDNYJ4Ebyv8JZl1F6WpRT/N/sJIpSp."], ["created_at", "2020-05-05 18:40:16.253893"], ["updated_at", "2020-05-05 18:40:16.253893"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Pasquale Nienow"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$w0O4fkev3Au3WUaV5D3y1.rRjhRmjmEQrLhZzqy.8hX0NWBEPF8lS"], ["created_at", "2020-05-05 18:40:16.261645"], ["updated_at", "2020-05-05 18:40:16.261645"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Javier Wyman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hxmLHFbXJr45hiJLwfmqGOIB1DJ1.Ylr8UtejjuXXMYjj4xnmbwHW"], ["created_at", "2020-05-05 18:40:16.270778"], ["updated_at", "2020-05-05 18:40:16.270778"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Raisa Grady"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aVWW8jZzoebV4edBXh19ZOzZmGgYSAVLJsPZImZ72TJqE82sAburK"], ["created_at", "2020-05-05 18:40:16.278247"], ["updated_at", "2020-05-05 18:40:16.278247"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Jennie Rolfson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fMF8aCcJNY38.BQhoIhxK.2UjHBRdhY4W01asaVwXxPJxWlM.0MJu"], ["created_at", "2020-05-05 18:40:16.283136"], ["updated_at", "2020-05-05 18:40:16.283136"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marlin Smith Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$h6e7290iHWzJC6GO0MTkGezMJqHNw57O9ecuHgxX/DtsS7mbHbWsu"], ["created_at", "2020-05-05 18:40:16.286048"], ["updated_at", "2020-05-05 18:40:16.286048"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Malinda Donnelly"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UWIXrq4K97SXEZF0E.WwU./eeUsBJa5aP1JMPk.1zKChNihhW/2IG"], ["created_at", "2020-05-05 18:40:16.288585"], ["updated_at", "2020-05-05 18:40:16.288585"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kip Gerlach"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xcWTZlXeDOKRL3KauAH13Ove2Dx9gvXA.FUsmlVKUvBV3c7ttJ9Ge"], ["created_at", "2020-05-05 18:40:16.290969"], ["updated_at", "2020-05-05 18:40:16.290969"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Georgine Lindgren"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$MLGuNBU3xs8q6kIc2e8AYeqX9luHagVaT78dfXPTY11.0OVg6ZjEK"], ["created_at", "2020-05-05 18:40:16.293521"], ["updated_at", "2020-05-05 18:40:16.293521"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:40:16 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.06ms) +Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:40:16 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leonora Considine I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LxUo17ILxDoag.1uTsqExuG1pVB1dtHTrn4RL8lZa5upn0TC/2SUa"], ["created_at", "2020-05-05 18:40:16.314448"], ["updated_at", "2020-05-05 18:40:16.314448"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rita Roob"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4ZIaHoX9YHEReSBwFGzfh.pEthJ80aq2QDmJBlWjEhmQ7AWHFZDSq"], ["created_at", "2020-05-05 18:40:16.318320"], ["updated_at", "2020-05-05 18:40:16.318320"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Janett Considine"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Xk7PrPz53BjNxrsRFR.L6ehQ9Vz/kAE0/fllZSp/hGK7r31vVUtfy"], ["created_at", "2020-05-05 18:40:16.320884"], ["updated_at", "2020-05-05 18:40:16.320884"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Judson Sauer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nZeU8o1k1vAJZ7d/28o5FeFecg2xyJrJ8ngQpeiXq01XI.eEfds9S"], ["created_at", "2020-05-05 18:40:16.324299"], ["updated_at", "2020-05-05 18:40:16.324299"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Phillip Borer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SWZrg7KuwPNBHRIO6hezauZ0yhInfV37kNv/DFr8sabBjgtiZbyMa"], ["created_at", "2020-05-05 18:40:16.328089"], ["updated_at", "2020-05-05 18:40:16.328089"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Oscar Kemmer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZpjfeBPxZgfv8JTobn.y8O87ymm.JQbSvF4qDho9Dl9EY3NrAVAnG"], ["created_at", "2020-05-05 18:40:16.330827"], ["updated_at", "2020-05-05 18:40:16.330827"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ariel Frami"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$sCJrbsxgENB2spr1727L1Oei.pbmt/6OvC5Hgcx8/TOlfh.c3Nd/."], ["created_at", "2020-05-05 18:40:16.333243"], ["updated_at", "2020-05-05 18:40:16.333243"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kathlene Klein"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XxYocVgHM4LDmDarLadyxuvZiROIbqh/2yWMtPQyqjWFfSf1MV6kq"], ["created_at", "2020-05-05 18:40:16.335670"], ["updated_at", "2020-05-05 18:40:16.335670"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Evan Orn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6NErmB0hn6MQYMFvwOMEz.Gc2Lty1xzIvthSXHqL/AOlOzmY72kmG"], ["created_at", "2020-05-05 18:40:16.338117"], ["updated_at", "2020-05-05 18:40:16.338117"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sean Runte"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$IS.rSROTukrf8kU4GC.B8.MfTFR7I1V714P//Cp5E25UlbW.gBJl6"], ["created_at", "2020-05-05 18:40:16.340559"], ["updated_at", "2020-05-05 18:40:16.340559"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:40:16 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.82ms) +Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:40:16 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 15ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 526) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.9ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Harry Welch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$11ee6W3vacdtWdknooVMhugkxHm90TlKBdQIlf9Bce.TlAXTVHqQq"], ["created_at", "2020-05-05 18:40:16.376438"], ["updated_at", "2020-05-05 18:40:16.376438"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Louie Waters"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$z7MvR5b6/H02MywPn1/kqudh.ciULXM9/1Eyou0RqUkInmL9JkLLe"], ["created_at", "2020-05-05 18:40:16.382694"], ["updated_at", "2020-05-05 18:40:16.382694"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jessie Graham"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GJYj8MX0D9S52KU.9Ze92eyZzyWQ5h86DhqNZXy4hRJkzESH08Kb2"], ["created_at", "2020-05-05 18:40:16.386059"], ["updated_at", "2020-05-05 18:40:16.386059"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Andres Robel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VfpJgO.fLhYvWmpec.80UeIEF9WNKpwZ9NwWgl4OLPYsJHnAV0IFC"], ["created_at", "2020-05-05 18:40:16.389372"], ["updated_at", "2020-05-05 18:40:16.389372"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Perry Gulgowski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WfQ3D4QXS38rvAE6j299p.3Xq0NdKxVsGBxfEXccrzDnXgtGIxREe"], ["created_at", "2020-05-05 18:40:16.391957"], ["updated_at", "2020-05-05 18:40:16.391957"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Rueben Stracke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FInn0IMBYcql5WsRFvZJCO3WcSc6sg4s4cfZFOql0InxWrfJsDkP."], ["created_at", "2020-05-05 18:40:16.394395"], ["updated_at", "2020-05-05 18:40:16.394395"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Deshawn Bernier"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$AwMDXK160m1ThJTIHOlXiuDjsHj/r4z87LcVtyx5VyAbWeAOY7AMS"], ["created_at", "2020-05-05 18:40:16.396968"], ["updated_at", "2020-05-05 18:40:16.396968"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Donn Stark"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mq8hQ/2SDhjNN10o4qI80.kYUp/5vkN4ElfqKGR5fxlYt4nEs6O8W"], ["created_at", "2020-05-05 18:40:16.399399"], ["updated_at", "2020-05-05 18:40:16.399399"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lavon Rowe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1JiH/dl5tvyp6lOqiWWnxuNpvBqae4nPN5SiOXtwMk0uOuI6NpMJW"], ["created_at", "2020-05-05 18:40:16.401863"], ["updated_at", "2020-05-05 18:40:16.401863"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Marcela Smith"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9nUXARlZXbBCIAI/9MJRO.ImWDupkRB7NSo7RspQX5aHkIXUiywq2"], ["created_at", "2020-05-05 18:40:16.405201"], ["updated_at", "2020-05-05 18:40:16.405201"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:40:16 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.3ms) +Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:40:16 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Sheyla", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "email"=>"shey@mail.com"} +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sheyla"], ["email", "shey@mail.com"], ["password_digest", "$2a$04$m5CCJ/PMKZiqHRPyXc3YNuxWxId.hy5n0fe/1jvKScADn4IMNVHwC"], ["created_at", "2020-05-05 18:40:16.415939"], ["updated_at", "2020-05-05 18:40:16.415939"], ["picture", "https://joeschmoe.io/api/v1/jia"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.57ms) +Completed 201 Created in 10ms (Views: 1.0ms | ActiveRecord: 0.4ms | Allocations: 1716) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.0ms) rollback transaction +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Derek Davis"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6EsmEMBhCuzROb5sXhfJ3eqP5t3iVnSUoVymgZNTSwDol.6aprwVW"], ["created_at", "2020-05-05 18:40:16.467003"], ["updated_at", "2020-05-05 18:40:16.467003"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Camie Lueilwitz III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ioFyZe6GjlUMGIKt28rrE.79DClC7dHCuVNmhC4rAO5ePU/XpDHAG"], ["created_at", "2020-05-05 18:40:16.472152"], ["updated_at", "2020-05-05 18:40:16.472152"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kerri Gislason"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HZV9chfk5iiwMjzCx9G8buEbpvqgo67vzGOT5R5.4xxy05Vj9E9Wu"], ["created_at", "2020-05-05 18:40:16.475259"], ["updated_at", "2020-05-05 18:40:16.475259"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Raleigh McClure"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5S3OGBNr0XFT0otS4KaBpOgjEBytck1bqMYAlEvNBxWBAk33tD32u"], ["created_at", "2020-05-05 18:40:16.478532"], ["updated_at", "2020-05-05 18:40:16.478532"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Everett Parisian"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$piYoJ2ct.y5iGxSuFCVTt.P.8GTkhmfwgz6CEf/cLHWC1dVWAsIru"], ["created_at", "2020-05-05 18:40:16.481738"], ["updated_at", "2020-05-05 18:40:16.481738"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jenee Lehner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Z8geUu3Q0pn3D10fRCfYnOI4AHlq1gBZO4rkSrY/haeswiZITqS9i"], ["created_at", "2020-05-05 18:40:16.486138"], ["updated_at", "2020-05-05 18:40:16.486138"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Reginald Zboncak IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BMITFaoXyI6IDsjUTV8weevxsoXT.J3DlLH3UwB9G8bLd8l9w3fTC"], ["created_at", "2020-05-05 18:40:16.489124"], ["updated_at", "2020-05-05 18:40:16.489124"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Brenton Funk V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CMF4NO.1cH.uN7XLKkOwXOyegxPr5pS3SyJqJJyWfTxvFa2UDNOz2"], ["created_at", "2020-05-05 18:40:16.491585"], ["updated_at", "2020-05-05 18:40:16.491585"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Priscilla Vandervort"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$j3bB7SjDe0/JdfSW2FvRUeycAjQRyjbIHr5.PsxcCW06SDgQBy/oq"], ["created_at", "2020-05-05 18:40:16.494716"], ["updated_at", "2020-05-05 18:40:16.494716"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Keven Auer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2hZC5I.jB/8uavQ.JoM4sOg04v4damx5WXjhPUhiHxvax76sRxyf2"], ["created_at", "2020-05-05 18:40:16.498212"], ["updated_at", "2020-05-05 18:40:16.498212"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:40:16 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.62ms) +Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.1ms | Allocations: 2204) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:40:16 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Sheyla", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "email"=>"shey@mail.com"} +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sheyla"], ["email", "shey@mail.com"], ["password_digest", "$2a$04$SBZNAYGyNKw7N1L2haC2oeg8PkyGGFt8RhnauMttdyBBaPwEM7eAy"], ["created_at", "2020-05-05 18:40:16.509070"], ["updated_at", "2020-05-05 18:40:16.509070"], ["picture", "https://joeschmoe.io/api/v1/jess"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.44ms) +Completed 201 Created in 7ms (Views: 0.8ms | ActiveRecord: 0.3ms | Allocations: 1329) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Chelsey Muller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$iN46oNjtWaaZvisG78e/juIrTPcpTWFebEwVO2.ihtYeq5X3FPe.i"], ["created_at", "2020-05-05 18:40:16.524437"], ["updated_at", "2020-05-05 18:40:16.524437"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jenna Harvey"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NWnlp2dZ.C1VM.G.it.vs.VwR/QEhr7V4Seb/qyeZa.HzBM4r6Lp2"], ["created_at", "2020-05-05 18:40:16.528830"], ["updated_at", "2020-05-05 18:40:16.528830"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Edward Beatty"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$EALKv2P2HPGnQn7PAt2bX.n9gYN190fA1PnuR09jCqkrCUSw/u766"], ["created_at", "2020-05-05 18:40:16.531712"], ["updated_at", "2020-05-05 18:40:16.531712"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Davina Tremblay Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0EgmupVLwbI.5XBD/XyGlutozRuNQpOnSNC2Ww4PUQPVBEjO4Ge7a"], ["created_at", "2020-05-05 18:40:16.534226"], ["updated_at", "2020-05-05 18:40:16.534226"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Milo Terry"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TKNEZPWXwCWxfGfgN.7/wuyDjtOQ3rKfYc5zGaH0n2mPzbqxY5UYC"], ["created_at", "2020-05-05 18:40:16.536669"], ["updated_at", "2020-05-05 18:40:16.536669"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jerilyn Price DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1ZVjXkmc0aMOwtsfClMQmOxE0vbQH47QoJR17sofnCih103WkJlaS"], ["created_at", "2020-05-05 18:40:16.539211"], ["updated_at", "2020-05-05 18:40:16.539211"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ira Waters"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1.qpNGVq1VDlwBF9ljkTkOn4f2UCj155Rv7mSbBW99Yo.yfPnGRdW"], ["created_at", "2020-05-05 18:40:16.541911"], ["updated_at", "2020-05-05 18:40:16.541911"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cesar Reichel DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xhKrFu4NnxiRfcI2/Kj6HulNOKt42q7BvlrGK.HGk3ihT.MadqNZG"], ["created_at", "2020-05-05 18:40:16.545543"], ["updated_at", "2020-05-05 18:40:16.545543"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Eladia Grant"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CGeonbsYTEITNHDRNjO4VeNRg8WbJWZwZhR1Yh9UdjqyeCTRaSQsG"], ["created_at", "2020-05-05 18:40:16.549220"], ["updated_at", "2020-05-05 18:40:16.549220"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Danyelle Schroeder"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0v7Zj3BN/Q7ITURNNXgdlebm7nCGMdc0lDjBdvCDDS8ATfKEGQe8y"], ["created_at", "2020-05-05 18:40:16.551733"], ["updated_at", "2020-05-05 18:40:16.551733"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:40:16 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.9ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:40:16 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Foobar"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 401 Unauthorized in 4ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 1817) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Layla Keebler Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XNZs20b0Tc58IIFBuAXnfu9gij512IZFTutEE3KAnu3//kQLskutK"], ["created_at", "2020-05-05 18:40:16.573508"], ["updated_at", "2020-05-05 18:40:16.573508"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kristofer Trantow"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$uvzBqSmF2kVOMAf64D8xR.uwEA2.t7AZr.gTh0yi6Mr3HWBANpNtW"], ["created_at", "2020-05-05 18:40:16.578413"], ["updated_at", "2020-05-05 18:40:16.578413"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tommie Huel III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZRlSgPq5ShmufOlmOlWm5.x5VTAEzmRqFcdzQG.POBFSs9aDnJQ9C"], ["created_at", "2020-05-05 18:40:16.581254"], ["updated_at", "2020-05-05 18:40:16.581254"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Blanca Jacobi PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$lt3Av5NJAaNAcJpktODq4O1PoRZnNVaFYQTRTEKZ.E8/gDR6nCCB6"], ["created_at", "2020-05-05 18:40:16.584146"], ["updated_at", "2020-05-05 18:40:16.584146"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Peter Hoppe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ce2O4BLTmIl.1fNC7sVlhOeN6YDg632Nzet1vBxBzpS9lKqr6DvMO"], ["created_at", "2020-05-05 18:40:16.587569"], ["updated_at", "2020-05-05 18:40:16.587569"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shelby Quitzon"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2SA4krKOm4aw2HyYw.Jqee8iVeMqsIhAwCAyTXdMgZN35JGIYf7fS"], ["created_at", "2020-05-05 18:40:16.590609"], ["updated_at", "2020-05-05 18:40:16.590609"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Drew Streich Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VzgKyelCSH2B2KVPmzLucePv0VmzlSWop0yN9J9.3I6uc.r3BF/7K"], ["created_at", "2020-05-05 18:40:16.593091"], ["updated_at", "2020-05-05 18:40:16.593091"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Gerald Pfannerstill"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$quN6O601RrC7v5LNee.EX.wHTr1bfvgVJOuEWjmpRE4ND0dTAT4SK"], ["created_at", "2020-05-05 18:40:16.595764"], ["updated_at", "2020-05-05 18:40:16.595764"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tabatha Yost"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dMpxWcLD39K/PXHQkMU1f.TuwPVJOTvM4ryrhXtXSUJ.iTQQZRs5i"], ["created_at", "2020-05-05 18:40:16.598580"], ["updated_at", "2020-05-05 18:40:16.598580"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Clarine Labadie"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WQ52K5vu3vHukenhmqAMZOK8MbbMQ/V/gAX9kR12YOBd7DqR7.Yra"], ["created_at", "2020-05-05 18:40:16.600943"], ["updated_at", "2020-05-05 18:40:16.600943"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:40:16 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.83ms) +Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:40:16 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms) +Completed 401 Unauthorized in 3ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 1597) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (4.7ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (141.7ms) DELETE FROM "meetings"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (102.4ms) DELETE FROM "user_meets"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (119.9ms) DELETE FROM "user_meetings"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (88.8ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (107.1ms) DELETE FROM "conversations"; +  (0.9ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (1.1ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (103.2ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (92.6ms) DELETE FROM "users"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (4.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hong VonRueden DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Y1hjjwfjszIVpxUtlBRIneNwsYUmK3SOF.UfResDqqAPG60Ty9U/O"], ["created_at", "2020-05-05 18:40:57.838608"], ["updated_at", "2020-05-05 18:40:57.838608"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "modi"], ["description", "Accusantium inventore architecto incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:57.860700"], ["updated_at", "2020-05-05 18:40:57.860700"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum ad tenetur quia?"], ["description", "Nisi architecto corrupti cum."], ["date", "2020-05-06 18:40:57.889596"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:57.918223"], ["updated_at", "2020-05-05 18:40:57.918223"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus et tempore ad?"], ["description", "Aliquam nesciunt corrupti et."], ["date", "2020-05-06 18:40:57.920132"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:57.921022"], ["updated_at", "2020-05-05 18:40:57.921022"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex omnis unde possimus?"], ["description", "Dolore sit porro omnis."], ["date", "2020-05-06 18:40:57.922314"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:57.923111"], ["updated_at", "2020-05-05 18:40:57.923111"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis repellat quasi et?"], ["description", "Possimus laudantium perspiciatis quibusdam."], ["date", "2020-05-06 18:40:57.924323"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:57.925023"], ["updated_at", "2020-05-05 18:40:57.925023"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo quia quisquam ad?"], ["description", "Porro qui quis eligendi."], ["date", "2020-05-06 18:40:57.926170"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:57.926962"], ["updated_at", "2020-05-05 18:40:57.926962"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta ea ducimus voluptates?"], ["description", "Amet eos omnis ut."], ["date", "2020-05-06 18:40:57.929941"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:57.931378"], ["updated_at", "2020-05-05 18:40:57.931378"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed recusandae aperiam commodi?"], ["description", "Omnis similique quam officiis."], ["date", "2020-05-06 18:40:57.932885"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:57.933658"], ["updated_at", "2020-05-05 18:40:57.933658"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus pariatur aperiam ut?"], ["description", "Ab aut qui eum."], ["date", "2020-05-06 18:40:57.934855"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:57.935605"], ["updated_at", "2020-05-05 18:40:57.935605"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil laudantium eius facere?"], ["description", "Fugit perspiciatis omnis magnam."], ["date", "2020-05-06 18:40:57.936804"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:57.937534"], ["updated_at", "2020-05-05 18:40:57.937534"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum qui sit ex?"], ["description", "Quo et hic quam."], ["date", "2020-05-06 18:40:57.939253"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:57.939988"], ["updated_at", "2020-05-05 18:40:57.939988"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum inventore voluptatem adipisci?"], ["description", "Odio error omnis atque."], ["date", "2020-05-06 18:40:57.941322"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:57.942212"], ["updated_at", "2020-05-05 18:40:57.942212"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos distinctio necessitatibus quo?"], ["description", "Iste et quos et."], ["date", "2020-05-06 18:40:57.943710"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:57.944971"], ["updated_at", "2020-05-05 18:40:57.944971"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi consequatur et adipisci?"], ["description", "Deserunt adipisci occaecati doloribus."], ["date", "2020-05-06 18:40:57.946700"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:57.947593"], ["updated_at", "2020-05-05 18:40:57.947593"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptate praesentium odio consequatur?"], ["description", "Voluptates expedita optio consequatur."], ["date", "2020-05-06 18:40:57.949967"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:57.951111"], ["updated_at", "2020-05-05 18:40:57.951111"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla nesciunt repudiandae quibusdam?"], ["description", "Autem vero laboriosam explicabo."], ["date", "2020-05-06 18:40:57.952800"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:57.953626"], ["updated_at", "2020-05-05 18:40:57.953626"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut facere veniam et?"], ["description", "Sequi quidem dignissimos quo."], ["date", "2020-05-06 18:40:57.954970"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:57.955772"], ["updated_at", "2020-05-05 18:40:57.955772"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni aut quia mollitia?"], ["description", "Similique tempora voluptatum cumque."], ["date", "2020-05-06 18:40:57.957067"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:57.957791"], ["updated_at", "2020-05-05 18:40:57.957791"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus eius cum earum?"], ["description", "Iste consequatur accusamus sint."], ["date", "2020-05-06 18:40:57.959164"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:57.960480"], ["updated_at", "2020-05-05 18:40:57.960480"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero dolor voluptas consequatur?"], ["description", "Odio ut quia ullam."], ["date", "2020-05-06 18:40:57.962037"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:57.962807"], ["updated_at", "2020-05-05 18:40:57.962807"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et veniam officia est?"], ["description", "Magni aut consectetur aliquid."], ["date", "2020-05-06 18:40:57.964178"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:57.964926"], ["updated_at", "2020-05-05 18:40:57.964926"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:40:57 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.09ms) +Completed 200 OK in 36ms (Views: 16.5ms | ActiveRecord: 0.5ms | Allocations: 8639) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cornell Wilderman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qYtwMQ/tGLD3XZhBOHBS/ejDD1NyoQvzds.cVNYz4qDNmtNxdcBbu"], ["created_at", "2020-05-05 18:40:58.056511"], ["updated_at", "2020-05-05 18:40:58.056511"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "debitis"], ["description", "Dicta omnis quo adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:58.060945"], ["updated_at", "2020-05-05 18:40:58.060945"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit unde minima corporis?"], ["description", "Accusamus tempora aut eveniet."], ["date", "2020-05-06 18:40:58.062709"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.063865"], ["updated_at", "2020-05-05 18:40:58.063865"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus optio est deserunt?"], ["description", "Excepturi quia et ratione."], ["date", "2020-05-06 18:40:58.065490"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.066371"], ["updated_at", "2020-05-05 18:40:58.066371"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum rem deserunt et?"], ["description", "Nihil est quo distinctio."], ["date", "2020-05-06 18:40:58.067665"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.068599"], ["updated_at", "2020-05-05 18:40:58.068599"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad quasi fugiat labore?"], ["description", "Et nobis maxime non."], ["date", "2020-05-06 18:40:58.071230"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.072930"], ["updated_at", "2020-05-05 18:40:58.072930"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minus repudiandae ullam non?"], ["description", "Ducimus est sint autem."], ["date", "2020-05-06 18:40:58.074334"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.075087"], ["updated_at", "2020-05-05 18:40:58.075087"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat atque aspernatur quod?"], ["description", "Quis alias id incidunt."], ["date", "2020-05-06 18:40:58.076511"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.077341"], ["updated_at", "2020-05-05 18:40:58.077341"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus deleniti labore officiis?"], ["description", "Est alias rerum suscipit."], ["date", "2020-05-06 18:40:58.079138"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.080085"], ["updated_at", "2020-05-05 18:40:58.080085"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi dolorem sed ut?"], ["description", "Aspernatur quia enim magni."], ["date", "2020-05-06 18:40:58.081415"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.082167"], ["updated_at", "2020-05-05 18:40:58.082167"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et ex dolorem eveniet?"], ["description", "Atque id dolore laudantium."], ["date", "2020-05-06 18:40:58.083357"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.084127"], ["updated_at", "2020-05-05 18:40:58.084127"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est assumenda fugit dolores?"], ["description", "Delectus voluptas qui optio."], ["date", "2020-05-06 18:40:58.086411"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.087324"], ["updated_at", "2020-05-05 18:40:58.087324"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut eveniet consectetur mollitia?"], ["description", "Est commodi dolorem labore."], ["date", "2020-05-06 18:40:58.088809"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.090470"], ["updated_at", "2020-05-05 18:40:58.090470"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet animi vero iste?"], ["description", "Optio esse quia tempora."], ["date", "2020-05-06 18:40:58.092484"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.093618"], ["updated_at", "2020-05-05 18:40:58.093618"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis perferendis magni praesentium?"], ["description", "Eum pariatur minima animi."], ["date", "2020-05-06 18:40:58.095979"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.097110"], ["updated_at", "2020-05-05 18:40:58.097110"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut impedit omnis veritatis?"], ["description", "Reprehenderit amet temporibus officiis."], ["date", "2020-05-06 18:40:58.098515"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.099421"], ["updated_at", "2020-05-05 18:40:58.099421"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut error exercitationem at?"], ["description", "Ipsa repellat odio odit."], ["date", "2020-05-06 18:40:58.100666"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.101471"], ["updated_at", "2020-05-05 18:40:58.101471"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut rerum itaque est?"], ["description", "Libero eius quia voluptatum."], ["date", "2020-05-06 18:40:58.102675"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.103418"], ["updated_at", "2020-05-05 18:40:58.103418"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quibusdam magni recusandae eum?"], ["description", "Repudiandae velit minus ullam."], ["date", "2020-05-06 18:40:58.104582"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.105295"], ["updated_at", "2020-05-05 18:40:58.105295"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus alias quis sunt?"], ["description", "Nihil a asperiores aspernatur."], ["date", "2020-05-06 18:40:58.106722"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.107738"], ["updated_at", "2020-05-05 18:40:58.107738"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem vel pariatur quisquam?"], ["description", "Et rerum mollitia veritatis."], ["date", "2020-05-06 18:40:58.109351"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.110727"], ["updated_at", "2020-05-05 18:40:58.110727"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque incidunt enim rem?"], ["description", "Voluptatem perferendis dolorem ipsa."], ["date", "2020-05-06 18:40:58.112371"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.113195"], ["updated_at", "2020-05-05 18:40:58.113195"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:40:58 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (7.92ms) +Completed 200 OK in 11ms (Views: 9.6ms | ActiveRecord: 0.2ms | Allocations: 5517) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cristy Osinski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WnyuLCYfPAnMcbh9YE8OKO/n0U/0yu6rY9MVA3/GmSFQi/WK9A6z."], ["created_at", "2020-05-05 18:40:58.141756"], ["updated_at", "2020-05-05 18:40:58.141756"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "expedita"], ["description", "Voluptatem est quisquam ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:58.145576"], ["updated_at", "2020-05-05 18:40:58.145576"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem natus corporis officiis?"], ["description", "Placeat minus non numquam."], ["date", "2020-05-06 18:40:58.147562"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.148649"], ["updated_at", "2020-05-05 18:40:58.148649"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis aut sunt fugit?"], ["description", "Delectus sed similique labore."], ["date", "2020-05-06 18:40:58.151027"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.152605"], ["updated_at", "2020-05-05 18:40:58.152605"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque tempora omnis et?"], ["description", "Molestias minus delectus ex."], ["date", "2020-05-06 18:40:58.154511"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.155449"], ["updated_at", "2020-05-05 18:40:58.155449"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil consequatur minima ratione?"], ["description", "Fuga sed quo ut."], ["date", "2020-05-06 18:40:58.156690"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.157431"], ["updated_at", "2020-05-05 18:40:58.157431"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam rerum id ut?"], ["description", "Assumenda et odit nam."], ["date", "2020-05-06 18:40:58.158626"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.159405"], ["updated_at", "2020-05-05 18:40:58.159405"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda sit et reiciendis?"], ["description", "Atque quis voluptatem illum."], ["date", "2020-05-06 18:40:58.161197"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.162176"], ["updated_at", "2020-05-05 18:40:58.162176"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error dolor adipisci aut?"], ["description", "Nesciunt dolores enim aliquam."], ["date", "2020-05-06 18:40:58.163438"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.164179"], ["updated_at", "2020-05-05 18:40:58.164179"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur dolores corrupti et?"], ["description", "Molestias vel maxime nisi."], ["date", "2020-05-06 18:40:58.165339"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.166053"], ["updated_at", "2020-05-05 18:40:58.166053"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla distinctio maiores autem?"], ["description", "Tempora animi officiis nihil."], ["date", "2020-05-06 18:40:58.167317"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.188188"], ["updated_at", "2020-05-05 18:40:58.188188"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum iste quis aut?"], ["description", "Similique iste dolor fuga."], ["date", "2020-05-06 18:40:58.190913"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.192095"], ["updated_at", "2020-05-05 18:40:58.192095"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae veniam consequatur voluptatem?"], ["description", "Odit in suscipit sunt."], ["date", "2020-05-06 18:40:58.193617"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.194957"], ["updated_at", "2020-05-05 18:40:58.194957"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores earum placeat autem?"], ["description", "Aut perspiciatis temporibus sunt."], ["date", "2020-05-06 18:40:58.196497"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.197319"], ["updated_at", "2020-05-05 18:40:58.197319"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta qui aperiam repudiandae?"], ["description", "Aut adipisci consequuntur consectetur."], ["date", "2020-05-06 18:40:58.198536"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.199268"], ["updated_at", "2020-05-05 18:40:58.199268"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut autem non harum?"], ["description", "Consequatur accusamus excepturi provident."], ["date", "2020-05-06 18:40:58.200533"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.201247"], ["updated_at", "2020-05-05 18:40:58.201247"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi et commodi reprehenderit?"], ["description", "Ipsam suscipit expedita adipisci."], ["date", "2020-05-06 18:40:58.202535"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.203218"], ["updated_at", "2020-05-05 18:40:58.203218"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero cumque iusto ea?"], ["description", "Quia excepturi et laudantium."], ["date", "2020-05-06 18:40:58.204334"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.205047"], ["updated_at", "2020-05-05 18:40:58.205047"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga et beatae facere?"], ["description", "Nihil sit veniam inventore."], ["date", "2020-05-06 18:40:58.206455"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.207317"], ["updated_at", "2020-05-05 18:40:58.207317"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi fuga quia omnis?"], ["description", "Eos dolores molestiae deleniti."], ["date", "2020-05-06 18:40:58.208589"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.209642"], ["updated_at", "2020-05-05 18:40:58.209642"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab sint et et?"], ["description", "Cum amet numquam sapiente."], ["date", "2020-05-06 18:40:58.212578"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.213898"], ["updated_at", "2020-05-05 18:40:58.213898"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio quae illo fugit?"], ["description", "Et commodi dignissimos nobis."], ["date", "2020-05-06 18:40:58.215407"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.216186"], ["updated_at", "2020-05-05 18:40:58.216186"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:40:58 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 404 Not Found in 6ms (Views: 4.7ms | ActiveRecord: 0.1ms | Allocations: 866) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Adolfo Kiehn II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$p5rM6ln61Yhikk2bgkRzoOL1HfFHrfxAqTNu1o36dCkDtE3wQ4sIO"], ["created_at", "2020-05-05 18:40:58.236151"], ["updated_at", "2020-05-05 18:40:58.236151"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Atque molestias voluptatibus saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:58.239764"], ["updated_at", "2020-05-05 18:40:58.239764"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In rerum et neque?"], ["description", "Deleniti odit ab nulla."], ["date", "2020-05-06 18:40:58.241383"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.242279"], ["updated_at", "2020-05-05 18:40:58.242279"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod maiores odit aut?"], ["description", "Nostrum voluptates laudantium ea."], ["date", "2020-05-06 18:40:58.243658"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.244938"], ["updated_at", "2020-05-05 18:40:58.244938"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus magni molestiae id?"], ["description", "Nemo quaerat delectus velit."], ["date", "2020-05-06 18:40:58.246547"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.247609"], ["updated_at", "2020-05-05 18:40:58.247609"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi quas rem consequatur?"], ["description", "Omnis dolor consequatur ad."], ["date", "2020-05-06 18:40:58.248882"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.249648"], ["updated_at", "2020-05-05 18:40:58.249648"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur repudiandae eum doloribus?"], ["description", "Molestiae quam deserunt laboriosam."], ["date", "2020-05-06 18:40:58.251579"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.252793"], ["updated_at", "2020-05-05 18:40:58.252793"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laudantium architecto voluptas omnis?"], ["description", "Sint et neque ut."], ["date", "2020-05-06 18:40:58.254616"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.255585"], ["updated_at", "2020-05-05 18:40:58.255585"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium aut sint blanditiis?"], ["description", "Voluptatibus aut veniam dolorum."], ["date", "2020-05-06 18:40:58.256881"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.257581"], ["updated_at", "2020-05-05 18:40:58.257581"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed error laboriosam incidunt?"], ["description", "Voluptas et fuga voluptas."], ["date", "2020-05-06 18:40:58.258994"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.260361"], ["updated_at", "2020-05-05 18:40:58.260361"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis nam quos nostrum?"], ["description", "Ullam quam corrupti esse."], ["date", "2020-05-06 18:40:58.261833"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.262603"], ["updated_at", "2020-05-05 18:40:58.262603"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia consequatur praesentium rem?"], ["description", "Fuga debitis aliquid impedit."], ["date", "2020-05-06 18:40:58.264618"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.265503"], ["updated_at", "2020-05-05 18:40:58.265503"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet facilis omnis pariatur?"], ["description", "Aspernatur repellendus mollitia optio."], ["date", "2020-05-06 18:40:58.266770"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.267608"], ["updated_at", "2020-05-05 18:40:58.267608"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est at similique ut?"], ["description", "Molestias voluptatibus corporis porro."], ["date", "2020-05-06 18:40:58.268937"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.269734"], ["updated_at", "2020-05-05 18:40:58.269734"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita recusandae laborum aut?"], ["description", "Pariatur quasi fugit debitis."], ["date", "2020-05-06 18:40:58.271524"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.272665"], ["updated_at", "2020-05-05 18:40:58.272665"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae et doloribus fuga?"], ["description", "Laborum eos dolorem necessitatibus."], ["date", "2020-05-06 18:40:58.274011"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.274745"], ["updated_at", "2020-05-05 18:40:58.274745"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit non nulla et?"], ["description", "Eligendi vitae quasi neque."], ["date", "2020-05-06 18:40:58.276041"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.277083"], ["updated_at", "2020-05-05 18:40:58.277083"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia et amet fuga?"], ["description", "Corrupti quia soluta molestiae."], ["date", "2020-05-06 18:40:58.278746"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.279647"], ["updated_at", "2020-05-05 18:40:58.279647"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta impedit officia quis?"], ["description", "Repellat est enim perspiciatis."], ["date", "2020-05-06 18:40:58.280995"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.281697"], ["updated_at", "2020-05-05 18:40:58.281697"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et nostrum sapiente quod?"], ["description", "Quibusdam molestiae cum ut."], ["date", "2020-05-06 18:40:58.282931"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.283591"], ["updated_at", "2020-05-05 18:40:58.283591"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed incidunt aut iste?"], ["description", "Vel in qui aliquam."], ["date", "2020-05-06 18:40:58.284830"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.285619"], ["updated_at", "2020-05-05 18:40:58.285619"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit voluptate nulla atque?"], ["description", "Consequatur et odio odit."], ["date", "2020-05-06 18:40:58.286925"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.287633"], ["updated_at", "2020-05-05 18:40:58.287633"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:40:58 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 404 Not Found in 2ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 509) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shawn MacGyver"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aTx1OTjRFu1aDmOFRFfOi.wfX7xILS/oSOQEYu4Je13wJYZ3WiUa."], ["created_at", "2020-05-05 18:40:58.305491"], ["updated_at", "2020-05-05 18:40:58.305491"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "placeat"], ["description", "Unde pariatur non totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:58.308326"], ["updated_at", "2020-05-05 18:40:58.308326"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam eligendi ad corporis?"], ["description", "Dolores enim incidunt explicabo."], ["date", "2020-05-06 18:40:58.310237"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.312314"], ["updated_at", "2020-05-05 18:40:58.312314"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis consequuntur dicta ipsa?"], ["description", "Placeat fugiat aut rerum."], ["date", "2020-05-06 18:40:58.314394"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.315550"], ["updated_at", "2020-05-05 18:40:58.315550"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt et ipsam consequatur?"], ["description", "Placeat est saepe voluptas."], ["date", "2020-05-06 18:40:58.316936"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.317642"], ["updated_at", "2020-05-05 18:40:58.317642"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit corrupti et ut?"], ["description", "Consectetur aut in sit."], ["date", "2020-05-06 18:40:58.318779"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.319462"], ["updated_at", "2020-05-05 18:40:58.319462"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio nihil adipisci quos?"], ["description", "Expedita nostrum qui accusamus."], ["date", "2020-05-06 18:40:58.320599"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.321282"], ["updated_at", "2020-05-05 18:40:58.321282"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo alias impedit unde?"], ["description", "Vel magnam eligendi voluptatem."], ["date", "2020-05-06 18:40:58.322532"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.323303"], ["updated_at", "2020-05-05 18:40:58.323303"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus fugit ratione natus?"], ["description", "Officia illum est autem."], ["date", "2020-05-06 18:40:58.324480"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.325175"], ["updated_at", "2020-05-05 18:40:58.325175"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores minus facere exercitationem?"], ["description", "Quaerat sunt sint neque."], ["date", "2020-05-06 18:40:58.326458"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.327940"], ["updated_at", "2020-05-05 18:40:58.327940"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et et non quisquam?"], ["description", "Quaerat non numquam animi."], ["date", "2020-05-06 18:40:58.329365"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.330446"], ["updated_at", "2020-05-05 18:40:58.330446"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas et a molestiae?"], ["description", "Qui autem est placeat."], ["date", "2020-05-06 18:40:58.333878"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.335492"], ["updated_at", "2020-05-05 18:40:58.335492"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro quis dolor vitae?"], ["description", "Perferendis quos perspiciatis soluta."], ["date", "2020-05-06 18:40:58.337095"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.337944"], ["updated_at", "2020-05-05 18:40:58.337944"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores non qui doloremque?"], ["description", "Et expedita omnis dolores."], ["date", "2020-05-06 18:40:58.339143"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.339804"], ["updated_at", "2020-05-05 18:40:58.339804"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem et quas aspernatur?"], ["description", "Officiis quibusdam facilis nihil."], ["date", "2020-05-06 18:40:58.340934"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.341631"], ["updated_at", "2020-05-05 18:40:58.341631"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem quis sed quam?"], ["description", "Itaque repudiandae eum rerum."], ["date", "2020-05-06 18:40:58.342848"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.343581"], ["updated_at", "2020-05-05 18:40:58.343581"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis eius et qui?"], ["description", "Voluptas tempora unde aut."], ["date", "2020-05-06 18:40:58.344789"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.345511"], ["updated_at", "2020-05-05 18:40:58.345511"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea eum alias asperiores?"], ["description", "Unde qui consequuntur eum."], ["date", "2020-05-06 18:40:58.346764"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.347534"], ["updated_at", "2020-05-05 18:40:58.347534"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At ut expedita esse?"], ["description", "Quos et quo ducimus."], ["date", "2020-05-06 18:40:58.348735"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.349414"], ["updated_at", "2020-05-05 18:40:58.349414"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum facere eveniet in?"], ["description", "Aperiam vitae minus quia."], ["date", "2020-05-06 18:40:58.350746"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.351824"], ["updated_at", "2020-05-05 18:40:58.351824"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus iusto quod cum?"], ["description", "Et labore ea unde."], ["date", "2020-05-06 18:40:58.353412"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.354435"], ["updated_at", "2020-05-05 18:40:58.354435"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut voluptates fugit sed?"], ["description", "Ut voluptas nam quo."], ["date", "2020-05-06 18:40:58.355760"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.356520"], ["updated_at", "2020-05-05 18:40:58.356520"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:40:58 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.77ms) +Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.3ms | Allocations: 1086) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tana Homenick"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/Wh7VYNwhJ2H/meHRnBm6ubUzz5er0dM1H7mvb35t/YsSLT26Y5L2"], ["created_at", "2020-05-05 18:40:58.375005"], ["updated_at", "2020-05-05 18:40:58.375005"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "assumenda"], ["description", "Assumenda dolorem ut occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:58.379198"], ["updated_at", "2020-05-05 18:40:58.379198"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut saepe qui ut?"], ["description", "Occaecati dicta corporis et."], ["date", "2020-05-06 18:40:58.380985"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.382032"], ["updated_at", "2020-05-05 18:40:58.382032"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem est et nulla?"], ["description", "Ipsam sequi beatae laboriosam."], ["date", "2020-05-06 18:40:58.383453"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.384229"], ["updated_at", "2020-05-05 18:40:58.384229"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique repudiandae et quisquam?"], ["description", "Fugiat nisi non architecto."], ["date", "2020-05-06 18:40:58.385510"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.386282"], ["updated_at", "2020-05-05 18:40:58.386282"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora vel dicta alias?"], ["description", "Omnis dolor iure suscipit."], ["date", "2020-05-06 18:40:58.387477"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.388165"], ["updated_at", "2020-05-05 18:40:58.388165"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut quis voluptate et?"], ["description", "Ut quis dicta excepturi."], ["date", "2020-05-06 18:40:58.389295"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.389970"], ["updated_at", "2020-05-05 18:40:58.389970"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate quaerat ducimus id?"], ["description", "Dolor rem et maxime."], ["date", "2020-05-06 18:40:58.391376"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.393507"], ["updated_at", "2020-05-05 18:40:58.393507"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut unde neque in?"], ["description", "Minus ab eligendi qui."], ["date", "2020-05-06 18:40:58.395771"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.396768"], ["updated_at", "2020-05-05 18:40:58.396768"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit velit voluptas quo?"], ["description", "Aut hic sapiente culpa."], ["date", "2020-05-06 18:40:58.398165"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.398949"], ["updated_at", "2020-05-05 18:40:58.398949"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id sint nulla sit?"], ["description", "Iusto et temporibus veniam."], ["date", "2020-05-06 18:40:58.400125"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.400794"], ["updated_at", "2020-05-05 18:40:58.400794"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut sunt consequatur qui?"], ["description", "Aspernatur eos fugiat atque."], ["date", "2020-05-06 18:40:58.402591"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.403386"], ["updated_at", "2020-05-05 18:40:58.403386"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit voluptatem voluptas nobis?"], ["description", "Asperiores hic unde et."], ["date", "2020-05-06 18:40:58.404947"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.406029"], ["updated_at", "2020-05-05 18:40:58.406029"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam eius sed expedita?"], ["description", "Quia dolorem id exercitationem."], ["date", "2020-05-06 18:40:58.407428"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.408174"], ["updated_at", "2020-05-05 18:40:58.408174"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat quia assumenda autem?"], ["description", "Nulla in temporibus quaerat."], ["date", "2020-05-06 18:40:58.409497"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.410730"], ["updated_at", "2020-05-05 18:40:58.410730"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit voluptas aspernatur quas?"], ["description", "Quia ut laborum consequuntur."], ["date", "2020-05-06 18:40:58.413698"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.414902"], ["updated_at", "2020-05-05 18:40:58.414902"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus nobis molestiae eveniet?"], ["description", "Nisi veritatis voluptatibus cumque."], ["date", "2020-05-06 18:40:58.416385"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.417164"], ["updated_at", "2020-05-05 18:40:58.417164"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae nihil sit commodi?"], ["description", "Omnis qui fugit officia."], ["date", "2020-05-06 18:40:58.418325"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.419004"], ["updated_at", "2020-05-05 18:40:58.419004"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur ea quis at?"], ["description", "Dolor maxime consequatur optio."], ["date", "2020-05-06 18:40:58.420192"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.420870"], ["updated_at", "2020-05-05 18:40:58.420870"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor commodi magnam omnis?"], ["description", "Placeat amet sequi quaerat."], ["date", "2020-05-06 18:40:58.422135"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.422847"], ["updated_at", "2020-05-05 18:40:58.422847"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum sapiente nisi aut?"], ["description", "Laudantium beatae nihil sed."], ["date", "2020-05-06 18:40:58.424093"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.424780"], ["updated_at", "2020-05-05 18:40:58.424780"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt cumque est impedit?"], ["description", "Cumque at laborum omnis."], ["date", "2020-05-06 18:40:58.426083"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.427077"], ["updated_at", "2020-05-05 18:40:58.427077"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:40:58 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.71ms) +Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.2ms | Allocations: 1057) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Thomasena Corwin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$s5gPXxt.QvH.GDH/PN1QlurFjNbrmtNoD.ubSgDVyd0KWBvFxzgT6"], ["created_at", "2020-05-05 18:40:58.444768"], ["updated_at", "2020-05-05 18:40:58.444768"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Dolor accusantium consequuntur magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:58.448526"], ["updated_at", "2020-05-05 18:40:58.448526"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor et unde labore?"], ["description", "Dicta architecto magnam vitae."], ["date", "2020-05-06 18:40:58.450113"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.451197"], ["updated_at", "2020-05-05 18:40:58.451197"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat modi iste id?"], ["description", "Tempora autem ea aut."], ["date", "2020-05-06 18:40:58.453379"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.454409"], ["updated_at", "2020-05-05 18:40:58.454409"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum soluta voluptatem eum?"], ["description", "Earum asperiores nulla illo."], ["date", "2020-05-06 18:40:58.456254"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.457217"], ["updated_at", "2020-05-05 18:40:58.457217"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et tempore illo aspernatur?"], ["description", "Sint quos ut adipisci."], ["date", "2020-05-06 18:40:58.458614"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.459413"], ["updated_at", "2020-05-05 18:40:58.459413"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores et at vero?"], ["description", "Et odit expedita hic."], ["date", "2020-05-06 18:40:58.461185"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.462127"], ["updated_at", "2020-05-05 18:40:58.462127"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste reprehenderit aut vero?"], ["description", "Laudantium itaque dolor repudiandae."], ["date", "2020-05-06 18:40:58.463358"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.464087"], ["updated_at", "2020-05-05 18:40:58.464087"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas voluptates quos omnis?"], ["description", "Aut et quas quaerat."], ["date", "2020-05-06 18:40:58.465216"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.465932"], ["updated_at", "2020-05-05 18:40:58.465932"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut quis ullam quidem?"], ["description", "Enim aut accusantium aliquid."], ["date", "2020-05-06 18:40:58.467079"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.467748"], ["updated_at", "2020-05-05 18:40:58.467748"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque blanditiis recusandae maxime?"], ["description", "Nesciunt eligendi nemo corporis."], ["date", "2020-05-06 18:40:58.468842"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.469524"], ["updated_at", "2020-05-05 18:40:58.469524"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut reprehenderit aut aspernatur?"], ["description", "Inventore dolores dolorem velit."], ["date", "2020-05-06 18:40:58.471489"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.472886"], ["updated_at", "2020-05-05 18:40:58.472886"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas labore ut omnis?"], ["description", "Nobis dolor a est."], ["date", "2020-05-06 18:40:58.474461"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.475308"], ["updated_at", "2020-05-05 18:40:58.475308"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat nihil eum aperiam?"], ["description", "Maxime dolore quisquam ullam."], ["date", "2020-05-06 18:40:58.476647"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.477801"], ["updated_at", "2020-05-05 18:40:58.477801"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere placeat in reprehenderit?"], ["description", "Distinctio velit quaerat ut."], ["date", "2020-05-06 18:40:58.479222"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.480085"], ["updated_at", "2020-05-05 18:40:58.480085"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem rerum voluptatem consectetur?"], ["description", "Perferendis vel omnis quo."], ["date", "2020-05-06 18:40:58.481378"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.482125"], ["updated_at", "2020-05-05 18:40:58.482125"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur dignissimos aliquid iste?"], ["description", "Vel corrupti vel earum."], ["date", "2020-05-06 18:40:58.483428"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.484118"], ["updated_at", "2020-05-05 18:40:58.484118"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi reiciendis asperiores sed?"], ["description", "Saepe sed quo facilis."], ["date", "2020-05-06 18:40:58.485351"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.486096"], ["updated_at", "2020-05-05 18:40:58.486096"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia veniam sunt ut?"], ["description", "Sunt odio sequi alias."], ["date", "2020-05-06 18:40:58.487275"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.487940"], ["updated_at", "2020-05-05 18:40:58.487940"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis rerum ipsam dolore?"], ["description", "Explicabo dolores autem earum."], ["date", "2020-05-06 18:40:58.489103"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.489790"], ["updated_at", "2020-05-05 18:40:58.489790"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut odio molestiae cupiditate?"], ["description", "At laudantium quam doloribus."], ["date", "2020-05-06 18:40:58.490998"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.491789"], ["updated_at", "2020-05-05 18:40:58.491789"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt tenetur a vel?"], ["description", "Repellat iure quo natus."], ["date", "2020-05-06 18:40:58.493957"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.495404"], ["updated_at", "2020-05-05 18:40:58.495404"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:40:58 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 884) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ismael Larson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$EOumhR7/ypRzOVTM6IWn4e2ByZlfwwA8aQcU2V12aNeBmy/bjsKZe"], ["created_at", "2020-05-05 18:40:58.511547"], ["updated_at", "2020-05-05 18:40:58.511547"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Quam aut et optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:58.515902"], ["updated_at", "2020-05-05 18:40:58.515902"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa voluptas consequatur praesentium?"], ["description", "Sit alias et eum."], ["date", "2020-05-06 18:40:58.517688"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.518646"], ["updated_at", "2020-05-05 18:40:58.518646"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum incidunt voluptate sequi?"], ["description", "Fuga unde doloremque mollitia."], ["date", "2020-05-06 18:40:58.520667"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.521553"], ["updated_at", "2020-05-05 18:40:58.521553"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis veniam quis placeat?"], ["description", "Itaque ullam accusantium ea."], ["date", "2020-05-06 18:40:58.522908"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.523666"], ["updated_at", "2020-05-05 18:40:58.523666"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero sunt dolorem corporis?"], ["description", "Qui voluptatem et et."], ["date", "2020-05-06 18:40:58.524722"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.525641"], ["updated_at", "2020-05-05 18:40:58.525641"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores porro sit officiis?"], ["description", "Sequi cum magni ut."], ["date", "2020-05-06 18:40:58.527366"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.528255"], ["updated_at", "2020-05-05 18:40:58.528255"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique ex soluta corporis?"], ["description", "Qui maiores nobis earum."], ["date", "2020-05-06 18:40:58.529513"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.530186"], ["updated_at", "2020-05-05 18:40:58.530186"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi similique amet repudiandae?"], ["description", "Veniam non repellendus nobis."], ["date", "2020-05-06 18:40:58.531374"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.532800"], ["updated_at", "2020-05-05 18:40:58.532800"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias dignissimos eveniet voluptates?"], ["description", "Quia consequatur ab maiores."], ["date", "2020-05-06 18:40:58.534775"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.536030"], ["updated_at", "2020-05-05 18:40:58.536030"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas ab nihil labore?"], ["description", "Aut ducimus dolorem sed."], ["date", "2020-05-06 18:40:58.537410"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.538088"], ["updated_at", "2020-05-05 18:40:58.538088"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem eaque earum id?"], ["description", "Repudiandae quaerat et labore."], ["date", "2020-05-06 18:40:58.539943"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.540695"], ["updated_at", "2020-05-05 18:40:58.540695"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur aut maiores qui?"], ["description", "Libero eaque nostrum laboriosam."], ["date", "2020-05-06 18:40:58.541955"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.542658"], ["updated_at", "2020-05-05 18:40:58.542658"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Adipisci fugit ab voluptatibus?"], ["description", "Sapiente quia incidunt natus."], ["date", "2020-05-06 18:40:58.544182"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.545480"], ["updated_at", "2020-05-05 18:40:58.545480"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt vitae voluptatem sapiente?"], ["description", "Nam at incidunt cum."], ["date", "2020-05-06 18:40:58.547014"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.547778"], ["updated_at", "2020-05-05 18:40:58.547778"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore sed totam mollitia?"], ["description", "Sunt molestias et consectetur."], ["date", "2020-05-06 18:40:58.549036"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.549743"], ["updated_at", "2020-05-05 18:40:58.549743"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id vel quia doloribus?"], ["description", "Sunt officiis sed sit."], ["date", "2020-05-06 18:40:58.551100"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.552013"], ["updated_at", "2020-05-05 18:40:58.552013"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est est ducimus cupiditate?"], ["description", "Accusamus consequatur sit at."], ["date", "2020-05-06 18:40:58.553967"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.554898"], ["updated_at", "2020-05-05 18:40:58.554898"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum quam qui rerum?"], ["description", "Facere et ipsam aliquam."], ["date", "2020-05-06 18:40:58.556238"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.556980"], ["updated_at", "2020-05-05 18:40:58.556980"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem ea unde corporis?"], ["description", "Ea molestias enim consequatur."], ["date", "2020-05-06 18:40:58.558154"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.558886"], ["updated_at", "2020-05-05 18:40:58.558886"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia sapiente qui non?"], ["description", "Eveniet neque et aperiam."], ["date", "2020-05-06 18:40:58.560674"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.562622"], ["updated_at", "2020-05-05 18:40:58.562622"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur excepturi qui explicabo?"], ["description", "Autem cumque accusamus atque."], ["date", "2020-05-06 18:40:58.564134"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.565024"], ["updated_at", "2020-05-05 18:40:58.565024"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:40:58 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 867) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lannie Heller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HgH3sX1KtbcqA1z3JT2QQO4cI6sXx3lClREGhk3sK1s9UCQZIe8BG"], ["created_at", "2020-05-05 18:40:58.581617"], ["updated_at", "2020-05-05 18:40:58.581617"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laudantium"], ["description", "Sint tempore rerum ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:58.584933"], ["updated_at", "2020-05-05 18:40:58.584933"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus eligendi molestias cumque?"], ["description", "Adipisci itaque ut autem."], ["date", "2020-05-06 18:40:58.586490"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.587426"], ["updated_at", "2020-05-05 18:40:58.587426"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim eligendi magni et?"], ["description", "Omnis error aut quos."], ["date", "2020-05-06 18:40:58.588768"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.589536"], ["updated_at", "2020-05-05 18:40:58.589536"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur et velit exercitationem?"], ["description", "Aut magni fugit nihil."], ["date", "2020-05-06 18:40:58.590732"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.591423"], ["updated_at", "2020-05-05 18:40:58.591423"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium provident qui deserunt?"], ["description", "Et itaque illum officiis."], ["date", "2020-05-06 18:40:58.593437"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.595546"], ["updated_at", "2020-05-05 18:40:58.595546"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores labore excepturi error?"], ["description", "Cumque odit deleniti deserunt."], ["date", "2020-05-06 18:40:58.597510"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.598422"], ["updated_at", "2020-05-05 18:40:58.598422"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus neque ea sit?"], ["description", "Consequatur omnis nesciunt sed."], ["date", "2020-05-06 18:40:58.599648"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.600354"], ["updated_at", "2020-05-05 18:40:58.600354"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias aperiam dolor inventore?"], ["description", "Dolorem vel nisi minus."], ["date", "2020-05-06 18:40:58.601639"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.602369"], ["updated_at", "2020-05-05 18:40:58.602369"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat placeat rerum beatae?"], ["description", "Vitae et tempora ipsam."], ["date", "2020-05-06 18:40:58.603529"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.604197"], ["updated_at", "2020-05-05 18:40:58.604197"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores assumenda nisi iste?"], ["description", "Ut possimus qui quae."], ["date", "2020-05-06 18:40:58.605612"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.606636"], ["updated_at", "2020-05-05 18:40:58.606636"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint reiciendis doloremque impedit?"], ["description", "Magnam est sit pariatur."], ["date", "2020-05-06 18:40:58.608739"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.610803"], ["updated_at", "2020-05-05 18:40:58.610803"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad fugiat repellendus est?"], ["description", "Eum molestiae tempora enim."], ["date", "2020-05-06 18:40:58.613234"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.614690"], ["updated_at", "2020-05-05 18:40:58.614690"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit magnam alias architecto?"], ["description", "Adipisci sint consequatur tempora."], ["date", "2020-05-06 18:40:58.616422"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.617329"], ["updated_at", "2020-05-05 18:40:58.617329"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non ut commodi et?"], ["description", "Animi repellat dolor quia."], ["date", "2020-05-06 18:40:58.618573"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.619279"], ["updated_at", "2020-05-05 18:40:58.619279"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam expedita sunt et?"], ["description", "Ullam nulla enim non."], ["date", "2020-05-06 18:40:58.620360"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.621030"], ["updated_at", "2020-05-05 18:40:58.621030"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Possimus aut alias voluptatem?"], ["description", "Consectetur cupiditate ullam aliquid."], ["date", "2020-05-06 18:40:58.622312"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.623020"], ["updated_at", "2020-05-05 18:40:58.623020"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate omnis molestiae explicabo?"], ["description", "Voluptas repellat quia laboriosam."], ["date", "2020-05-06 18:40:58.624230"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.624979"], ["updated_at", "2020-05-05 18:40:58.624979"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid et quaerat natus?"], ["description", "Commodi nemo repellat est."], ["date", "2020-05-06 18:40:58.626278"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.627189"], ["updated_at", "2020-05-05 18:40:58.627189"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem suscipit alias et?"], ["description", "Hic repellat voluptatum aut."], ["date", "2020-05-06 18:40:58.629021"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.629900"], ["updated_at", "2020-05-05 18:40:58.629900"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut vero quas molestiae?"], ["description", "Quis itaque iste et."], ["date", "2020-05-06 18:40:58.631238"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.631993"], ["updated_at", "2020-05-05 18:40:58.631993"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo non ipsum vel?"], ["description", "Rem perspiciatis dolores minima."], ["date", "2020-05-06 18:40:58.634038"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.635034"], ["updated_at", "2020-05-05 18:40:58.635034"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:40:58 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"title"=>"Visit Narnia", "description"=>"false", "date"=>"2020-05-06 15:40:58 -0300", "link"=>"https://zoom.com/fakelink", "meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Visit Narnia"], ["description", "false"], ["date", "2020-05-06 18:40:58"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.655212"], ["updated_at", "2020-05-05 18:40:58.655212"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.57ms) +Completed 201 Created in 5ms (Views: 1.2ms | ActiveRecord: 0.5ms | Allocations: 1698) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (14.0ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kyle Ryan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3KYi2IZYzuI213WQAhcUGuFm9nGl/QTex.xUjwhxBim55nCAGQDde"], ["created_at", "2020-05-05 18:40:58.668431"], ["updated_at", "2020-05-05 18:40:58.668431"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Facilis consequuntur neque quisquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:58.684481"], ["updated_at", "2020-05-05 18:40:58.684481"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora recusandae quam enim?"], ["description", "Quae consectetur voluptatum neque."], ["date", "2020-05-06 18:40:58.686301"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.687286"], ["updated_at", "2020-05-05 18:40:58.687286"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa ad excepturi saepe?"], ["description", "Veritatis et labore voluptatum."], ["date", "2020-05-06 18:40:58.688563"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.689272"], ["updated_at", "2020-05-05 18:40:58.689272"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati doloribus quia harum?"], ["description", "Consequuntur amet et magni."], ["date", "2020-05-06 18:40:58.690398"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.691094"], ["updated_at", "2020-05-05 18:40:58.691094"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut iusto architecto amet?"], ["description", "Neque ut delectus eum."], ["date", "2020-05-06 18:40:58.692201"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.693342"], ["updated_at", "2020-05-05 18:40:58.693342"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo maxime incidunt voluptas?"], ["description", "Ut consequatur quam molestiae."], ["date", "2020-05-06 18:40:58.696025"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.697025"], ["updated_at", "2020-05-05 18:40:58.697025"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis ut sint id?"], ["description", "Et dolorum quis dolores."], ["date", "2020-05-06 18:40:58.698212"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.698901"], ["updated_at", "2020-05-05 18:40:58.698901"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore numquam corporis nemo?"], ["description", "Voluptate corrupti aperiam molestiae."], ["date", "2020-05-06 18:40:58.699965"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.700658"], ["updated_at", "2020-05-05 18:40:58.700658"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates et esse minima?"], ["description", "Distinctio quis similique dolor."], ["date", "2020-05-06 18:40:58.701724"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.702391"], ["updated_at", "2020-05-05 18:40:58.702391"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut autem rem adipisci?"], ["description", "Fugiat a aliquam cum."], ["date", "2020-05-06 18:40:58.703446"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.704147"], ["updated_at", "2020-05-05 18:40:58.704147"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptate sint itaque nostrum?"], ["description", "Temporibus sint accusamus est."], ["date", "2020-05-06 18:40:58.706330"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.707262"], ["updated_at", "2020-05-05 18:40:58.707262"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro suscipit ullam veniam?"], ["description", "Culpa omnis placeat reiciendis."], ["date", "2020-05-06 18:40:58.708545"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.709244"], ["updated_at", "2020-05-05 18:40:58.709244"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis est aspernatur et?"], ["description", "Explicabo tenetur amet fuga."], ["date", "2020-05-06 18:40:58.710593"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.711725"], ["updated_at", "2020-05-05 18:40:58.711725"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum consectetur dolorem repellendus?"], ["description", "Perspiciatis quia iste in."], ["date", "2020-05-06 18:40:58.713162"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.714454"], ["updated_at", "2020-05-05 18:40:58.714454"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut voluptatem in minima?"], ["description", "Laudantium voluptates laboriosam et."], ["date", "2020-05-06 18:40:58.716039"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.716875"], ["updated_at", "2020-05-05 18:40:58.716875"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Possimus et quos mollitia?"], ["description", "Quae sed error maxime."], ["date", "2020-05-06 18:40:58.718032"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.718742"], ["updated_at", "2020-05-05 18:40:58.718742"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem voluptas ut fuga?"], ["description", "Eius earum praesentium vel."], ["date", "2020-05-06 18:40:58.719896"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.720542"], ["updated_at", "2020-05-05 18:40:58.720542"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis non facilis odit?"], ["description", "Blanditiis quo laborum omnis."], ["date", "2020-05-06 18:40:58.721682"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.722320"], ["updated_at", "2020-05-05 18:40:58.722320"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium nam rem ex?"], ["description", "Totam odit qui commodi."], ["date", "2020-05-06 18:40:58.723515"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.724183"], ["updated_at", "2020-05-05 18:40:58.724183"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea inventore ut voluptas?"], ["description", "Illum in maiores optio."], ["date", "2020-05-06 18:40:58.725482"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.726725"], ["updated_at", "2020-05-05 18:40:58.726725"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo autem error temporibus?"], ["description", "Voluptas voluptatem quisquam error."], ["date", "2020-05-06 18:40:58.728573"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.729464"], ["updated_at", "2020-05-05 18:40:58.729464"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:40:58 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3010) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Allen Rice"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ppxv8..LVSsn8UMDk95O4ObAhUQnXDbA02ljRf3udOHOcso.sj3JW"], ["created_at", "2020-05-05 18:40:58.748340"], ["updated_at", "2020-05-05 18:40:58.748340"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Rem et est eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:58.751812"], ["updated_at", "2020-05-05 18:40:58.751812"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae quia et omnis?"], ["description", "Ducimus iure voluptates molestiae."], ["date", "2020-05-06 18:40:58.753628"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.755175"], ["updated_at", "2020-05-05 18:40:58.755175"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum ipsa earum expedita?"], ["description", "Optio dignissimos ut rem."], ["date", "2020-05-06 18:40:58.756650"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.757575"], ["updated_at", "2020-05-05 18:40:58.757575"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam in doloribus similique?"], ["description", "Dolores sit quas esse."], ["date", "2020-05-06 18:40:58.759330"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.761173"], ["updated_at", "2020-05-05 18:40:58.761173"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur et libero officiis?"], ["description", "Ducimus est nesciunt harum."], ["date", "2020-05-06 18:40:58.762713"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.763637"], ["updated_at", "2020-05-05 18:40:58.763637"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet quaerat sunt voluptatem?"], ["description", "Voluptas ea qui aut."], ["date", "2020-05-06 18:40:58.764918"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.765851"], ["updated_at", "2020-05-05 18:40:58.765851"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi iure quaerat qui?"], ["description", "Aliquid velit et quam."], ["date", "2020-05-06 18:40:58.767057"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.767773"], ["updated_at", "2020-05-05 18:40:58.767773"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem odio aperiam vel?"], ["description", "Et et illum sed."], ["date", "2020-05-06 18:40:58.768829"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.769505"], ["updated_at", "2020-05-05 18:40:58.769505"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea unde ut eaque?"], ["description", "Sit quidem dignissimos aliquam."], ["date", "2020-05-06 18:40:58.770675"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.771358"], ["updated_at", "2020-05-05 18:40:58.771358"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui quibusdam atque laboriosam?"], ["description", "Saepe ullam provident ipsum."], ["date", "2020-05-06 18:40:58.772414"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.773295"], ["updated_at", "2020-05-05 18:40:58.773295"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis veniam quae maiores?"], ["description", "Qui maiores nihil eaque."], ["date", "2020-05-06 18:40:58.775842"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.776988"], ["updated_at", "2020-05-05 18:40:58.776988"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium incidunt pariatur et?"], ["description", "Tenetur corrupti velit error."], ["date", "2020-05-06 18:40:58.778404"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.779342"], ["updated_at", "2020-05-05 18:40:58.779342"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur earum voluptatem voluptatibus?"], ["description", "Nihil error qui culpa."], ["date", "2020-05-06 18:40:58.780929"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.781826"], ["updated_at", "2020-05-05 18:40:58.781826"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur autem repudiandae occaecati?"], ["description", "Velit quam et eum."], ["date", "2020-05-06 18:40:58.783095"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.783810"], ["updated_at", "2020-05-05 18:40:58.783810"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero voluptates facilis quia?"], ["description", "Et sunt voluptate beatae."], ["date", "2020-05-06 18:40:58.785045"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.785781"], ["updated_at", "2020-05-05 18:40:58.785781"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio sit dolorum quo?"], ["description", "Minima amet ipsam ut."], ["date", "2020-05-06 18:40:58.802363"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.803717"], ["updated_at", "2020-05-05 18:40:58.803717"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur dolores quaerat esse?"], ["description", "Et porro voluptates commodi."], ["date", "2020-05-06 18:40:58.805192"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.806081"], ["updated_at", "2020-05-05 18:40:58.806081"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit rerum quidem laboriosam?"], ["description", "Aperiam ut molestiae eius."], ["date", "2020-05-06 18:40:58.807267"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.807960"], ["updated_at", "2020-05-05 18:40:58.807960"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis et sed minima?"], ["description", "Molestiae facere sed quo."], ["date", "2020-05-06 18:40:58.809173"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.809936"], ["updated_at", "2020-05-05 18:40:58.809936"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam et et exercitationem?"], ["description", "Molestiae dolores rerum maiores."], ["date", "2020-05-06 18:40:58.812276"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.813391"], ["updated_at", "2020-05-05 18:40:58.813391"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem deserunt nostrum unde?"], ["description", "Ratione sed eaque provident."], ["date", "2020-05-06 18:40:58.815682"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.816712"], ["updated_at", "2020-05-05 18:40:58.816712"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:40:58 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 422 Unprocessable Entity in 4ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 2705) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (49.9ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Paige Rosenbaum"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WSxyydjnyDXWirpD94jILuGQf9oaL2HeOuFrHUq.R7Db1kBn2jxrq"], ["created_at", "2020-05-05 18:40:58.835498"], ["updated_at", "2020-05-05 18:40:58.835498"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Repellendus molestias quas laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:58.887568"], ["updated_at", "2020-05-05 18:40:58.887568"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Culpa ut temporibus qui?"], ["description", "Inventore rerum non voluptatem."], ["date", "2020-05-06 18:40:58.889428"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.890550"], ["updated_at", "2020-05-05 18:40:58.890550"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae perferendis voluptatem enim?"], ["description", "Repellat velit ut totam."], ["date", "2020-05-06 18:40:58.891931"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.892663"], ["updated_at", "2020-05-05 18:40:58.892663"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore autem et ex?"], ["description", "Voluptas possimus rem error."], ["date", "2020-05-06 18:40:58.894744"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.896382"], ["updated_at", "2020-05-05 18:40:58.896382"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum nihil odit laboriosam?"], ["description", "Itaque quia quos magni."], ["date", "2020-05-06 18:40:58.897890"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.898698"], ["updated_at", "2020-05-05 18:40:58.898698"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat et sapiente voluptatibus?"], ["description", "Pariatur ipsa dolor et."], ["date", "2020-05-06 18:40:58.899777"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.900466"], ["updated_at", "2020-05-05 18:40:58.900466"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et ratione velit porro?"], ["description", "Tenetur sit exercitationem velit."], ["date", "2020-05-06 18:40:58.901820"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.902605"], ["updated_at", "2020-05-05 18:40:58.902605"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et ut ad nostrum?"], ["description", "Eius placeat deleniti nihil."], ["date", "2020-05-06 18:40:58.903714"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.904401"], ["updated_at", "2020-05-05 18:40:58.904401"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui cupiditate mollitia aperiam?"], ["description", "Sed et culpa iusto."], ["date", "2020-05-06 18:40:58.905657"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.906425"], ["updated_at", "2020-05-05 18:40:58.906425"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui mollitia ea ipsa?"], ["description", "Eum numquam qui beatae."], ["date", "2020-05-06 18:40:58.907602"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.908293"], ["updated_at", "2020-05-05 18:40:58.908293"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et aut quia aliquid?"], ["description", "Cum ut enim qui."], ["date", "2020-05-06 18:40:58.910601"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.911663"], ["updated_at", "2020-05-05 18:40:58.911663"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur repudiandae quia sint?"], ["description", "Dolorem recusandae pariatur non."], ["date", "2020-05-06 18:40:58.913141"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.914113"], ["updated_at", "2020-05-05 18:40:58.914113"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem saepe exercitationem ab?"], ["description", "Nam enim praesentium omnis."], ["date", "2020-05-06 18:40:58.916146"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.917094"], ["updated_at", "2020-05-05 18:40:58.917094"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab et ut libero?"], ["description", "Aut et fugit illum."], ["date", "2020-05-06 18:40:58.918328"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.919012"], ["updated_at", "2020-05-05 18:40:58.919012"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur quis sint nesciunt?"], ["description", "Incidunt autem suscipit dolorem."], ["date", "2020-05-06 18:40:58.920259"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.920937"], ["updated_at", "2020-05-05 18:40:58.920937"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor incidunt animi error?"], ["description", "Aut saepe illo nihil."], ["date", "2020-05-06 18:40:58.922134"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.922797"], ["updated_at", "2020-05-05 18:40:58.922797"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit inventore sint tempore?"], ["description", "Autem omnis cupiditate unde."], ["date", "2020-05-06 18:40:58.923960"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.924658"], ["updated_at", "2020-05-05 18:40:58.924658"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis sint enim pariatur?"], ["description", "Quis quia in sit."], ["date", "2020-05-06 18:40:58.926449"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.927546"], ["updated_at", "2020-05-05 18:40:58.927546"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis suscipit quam dolores?"], ["description", "Cupiditate architecto magnam velit."], ["date", "2020-05-06 18:40:58.928936"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.929651"], ["updated_at", "2020-05-05 18:40:58.929651"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et ea velit similique?"], ["description", "Quo aut repellat dolorum."], ["date", "2020-05-06 18:40:58.930786"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.931466"], ["updated_at", "2020-05-05 18:40:58.931466"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat magni omnis dolorem?"], ["description", "Accusantium non labore ea."], ["date", "2020-05-06 18:40:58.932642"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.933335"], ["updated_at", "2020-05-05 18:40:58.933335"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:40:58 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.2ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:40:58.939348"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 4ms (ActiveRecord: 0.5ms | Allocations: 1397) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (9.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kristopher Abshire"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/whsmu05Dbpc6zM3zCSBxuvOhQbhGZIoZXLwcEsPqsQMxMo6kd44u"], ["created_at", "2020-05-05 18:40:58.951448"], ["updated_at", "2020-05-05 18:40:58.951448"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.5ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Modi nobis nulla doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:58.965187"], ["updated_at", "2020-05-05 18:40:58.965187"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi tempore error alias?"], ["description", "Unde possimus laudantium ex."], ["date", "2020-05-06 18:40:58.967387"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.969124"], ["updated_at", "2020-05-05 18:40:58.969124"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id aut et ab?"], ["description", "Reiciendis dicta occaecati quidem."], ["date", "2020-05-06 18:40:58.970913"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.971816"], ["updated_at", "2020-05-05 18:40:58.971816"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum quidem voluptatem inventore?"], ["description", "In sit iusto iste."], ["date", "2020-05-06 18:40:58.973127"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.974068"], ["updated_at", "2020-05-05 18:40:58.974068"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet inventore aspernatur eaque?"], ["description", "Molestiae aut et rerum."], ["date", "2020-05-06 18:40:58.976947"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.978240"], ["updated_at", "2020-05-05 18:40:58.978240"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime libero magni animi?"], ["description", "Debitis illum maxime velit."], ["date", "2020-05-06 18:40:58.980066"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.981021"], ["updated_at", "2020-05-05 18:40:58.981021"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem qui aut molestiae?"], ["description", "Quidem voluptas qui deserunt."], ["date", "2020-05-06 18:40:58.982482"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.983447"], ["updated_at", "2020-05-05 18:40:58.983447"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim fugiat est sunt?"], ["description", "Qui odio omnis tenetur."], ["date", "2020-05-06 18:40:58.984667"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.985391"], ["updated_at", "2020-05-05 18:40:58.985391"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum tenetur et quae?"], ["description", "Odio nam itaque et."], ["date", "2020-05-06 18:40:58.986649"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.987379"], ["updated_at", "2020-05-05 18:40:58.987379"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero corrupti beatae eligendi?"], ["description", "Sed tempore dicta vero."], ["date", "2020-05-06 18:40:58.988541"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.989273"], ["updated_at", "2020-05-05 18:40:58.989273"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id autem sint voluptatibus?"], ["description", "Molestiae sed non accusantium."], ["date", "2020-05-06 18:40:58.991112"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.991898"], ["updated_at", "2020-05-05 18:40:58.991898"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quisquam facere commodi?"], ["description", "Ipsa voluptas eius a."], ["date", "2020-05-06 18:40:58.993160"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.994537"], ["updated_at", "2020-05-05 18:40:58.994537"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima vel eum tempore?"], ["description", "Sit impedit voluptatem similique."], ["date", "2020-05-06 18:40:58.997200"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:58.998157"], ["updated_at", "2020-05-05 18:40:58.998157"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam id earum molestiae?"], ["description", "Sit dolorem cupiditate perspiciatis."], ["date", "2020-05-06 18:40:58.999447"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.000178"], ["updated_at", "2020-05-05 18:40:59.000178"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut reiciendis ipsa ut?"], ["description", "Ab qui dolores ullam."], ["date", "2020-05-06 18:40:59.001431"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.002153"], ["updated_at", "2020-05-05 18:40:59.002153"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem consectetur est corporis?"], ["description", "Recusandae dolorum aliquid veniam."], ["date", "2020-05-06 18:40:59.003297"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.003978"], ["updated_at", "2020-05-05 18:40:59.003978"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem minus est perferendis?"], ["description", "Voluptatum consequatur eaque fugit."], ["date", "2020-05-06 18:40:59.005158"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.005902"], ["updated_at", "2020-05-05 18:40:59.005902"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio adipisci aut ad?"], ["description", "Magnam enim ipsum consequatur."], ["date", "2020-05-06 18:40:59.007127"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.007831"], ["updated_at", "2020-05-05 18:40:59.007831"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui culpa quidem cupiditate?"], ["description", "Eius incidunt accusamus atque."], ["date", "2020-05-06 18:40:59.009714"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.010891"], ["updated_at", "2020-05-05 18:40:59.010891"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia ut corrupti et?"], ["description", "Facilis asperiores dolores eos."], ["date", "2020-05-06 18:40:59.012378"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.013111"], ["updated_at", "2020-05-05 18:40:59.013111"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ducimus sapiente eveniet quaerat?"], ["description", "Nemo consequuntur aut est."], ["date", "2020-05-06 18:40:59.014412"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.015658"], ["updated_at", "2020-05-05 18:40:59.015658"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.0ms) SAVEPOINT active_record_2 + Meeting Update (0.1ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:40:59.020328"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1321) + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Donna Wolff"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$eviObGjnIyx8B5F7BkY8fOht1ZoiuAasy9MU5CoHHMjkeO6rdybxG"], ["created_at", "2020-05-05 18:40:59.032119"], ["updated_at", "2020-05-05 18:40:59.032119"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "esse"], ["description", "Esse amet optio voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.035333"], ["updated_at", "2020-05-05 18:40:59.035333"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptate et enim vel?"], ["description", "Expedita dolor nihil ea."], ["date", "2020-05-06 18:40:59.037669"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.039007"], ["updated_at", "2020-05-05 18:40:59.039007"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem molestiae ea veniam?"], ["description", "Officia amet eaque sit."], ["date", "2020-05-06 18:40:59.040579"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.041380"], ["updated_at", "2020-05-05 18:40:59.041380"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab in tenetur debitis?"], ["description", "Illo reiciendis sed recusandae."], ["date", "2020-05-06 18:40:59.042661"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.043957"], ["updated_at", "2020-05-05 18:40:59.043957"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptate ea ab sapiente?"], ["description", "Et nulla non quo."], ["date", "2020-05-06 18:40:59.045358"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.046200"], ["updated_at", "2020-05-05 18:40:59.046200"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi expedita mollitia at?"], ["description", "Et fugit omnis sint."], ["date", "2020-05-06 18:40:59.047302"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.047990"], ["updated_at", "2020-05-05 18:40:59.047990"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae perspiciatis maiores non?"], ["description", "Sed magni aliquam vel."], ["date", "2020-05-06 18:40:59.049028"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.049717"], ["updated_at", "2020-05-05 18:40:59.049717"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam voluptates et id?"], ["description", "Accusantium et esse possimus."], ["date", "2020-05-06 18:40:59.050761"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.051443"], ["updated_at", "2020-05-05 18:40:59.051443"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem qui quae ad?"], ["description", "Consequatur est quas quam."], ["date", "2020-05-06 18:40:59.052534"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.053205"], ["updated_at", "2020-05-05 18:40:59.053205"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est vel aut necessitatibus?"], ["description", "Perspiciatis qui qui dolor."], ["date", "2020-05-06 18:40:59.054380"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.055714"], ["updated_at", "2020-05-05 18:40:59.055714"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi voluptate laborum nemo?"], ["description", "Accusantium eligendi voluptas laborum."], ["date", "2020-05-06 18:40:59.058688"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.060566"], ["updated_at", "2020-05-05 18:40:59.060566"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae ducimus rerum voluptas?"], ["description", "Consequuntur facere aut molestiae."], ["date", "2020-05-06 18:40:59.062166"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.062991"], ["updated_at", "2020-05-05 18:40:59.062991"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non natus quia voluptates?"], ["description", "Quaerat et labore placeat."], ["date", "2020-05-06 18:40:59.064206"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.064895"], ["updated_at", "2020-05-05 18:40:59.064895"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident vitae et a?"], ["description", "Ex a qui aut."], ["date", "2020-05-06 18:40:59.066120"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.066818"], ["updated_at", "2020-05-05 18:40:59.066818"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate in ea et?"], ["description", "Voluptatem occaecati quisquam tenetur."], ["date", "2020-05-06 18:40:59.068026"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.068719"], ["updated_at", "2020-05-05 18:40:59.068719"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut ab quia ut?"], ["description", "Dolorem ex velit accusantium."], ["date", "2020-05-06 18:40:59.069993"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.070652"], ["updated_at", "2020-05-05 18:40:59.070652"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque illum architecto ab?"], ["description", "Esse est qui vitae."], ["date", "2020-05-06 18:40:59.071816"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.072469"], ["updated_at", "2020-05-05 18:40:59.072469"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim est sunt esse?"], ["description", "Quos pariatur eum quis."], ["date", "2020-05-06 18:40:59.073625"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.074407"], ["updated_at", "2020-05-05 18:40:59.074407"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad voluptas dicta debitis?"], ["description", "Dolores molestias atque illum."], ["date", "2020-05-06 18:40:59.076234"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.078117"], ["updated_at", "2020-05-05 18:40:59.078117"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta et reprehenderit accusantium?"], ["description", "Maxime nihil voluptatum cupiditate."], ["date", "2020-05-06 18:40:59.079590"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.080397"], ["updated_at", "2020-05-05 18:40:59.080397"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam non et ad?"], ["description", "Aut eos aut possimus."], ["date", "2020-05-06 18:40:59.081608"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.082291"], ["updated_at", "2020-05-05 18:40:59.082291"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tim Schuster"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$X0x3VIe65evFcDoc3WmnYu5/aFTnWUKgU/tMeKqBOmbahENYCtrZm"], ["created_at", "2020-05-05 18:40:59.098333"], ["updated_at", "2020-05-05 18:40:59.098333"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "saepe"], ["description", "Atque itaque et pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.101196"], ["updated_at", "2020-05-05 18:40:59.101196"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Possimus ipsa cumque earum?"], ["description", "Quis aliquam earum sint."], ["date", "2020-05-06 18:40:59.102650"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.103557"], ["updated_at", "2020-05-05 18:40:59.103557"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut ipsa non culpa?"], ["description", "Dicta veritatis modi consequatur."], ["date", "2020-05-06 18:40:59.105097"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.105925"], ["updated_at", "2020-05-05 18:40:59.105925"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima repellat neque amet?"], ["description", "Quia dolorum et laudantium."], ["date", "2020-05-06 18:40:59.107187"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.107896"], ["updated_at", "2020-05-05 18:40:59.107896"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro et minima amet?"], ["description", "Nulla veritatis sit recusandae."], ["date", "2020-05-06 18:40:59.109414"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.110545"], ["updated_at", "2020-05-05 18:40:59.110545"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt quo quidem dicta?"], ["description", "Sit nihil distinctio deserunt."], ["date", "2020-05-06 18:40:59.111953"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.112707"], ["updated_at", "2020-05-05 18:40:59.112707"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores voluptas vel odio?"], ["description", "Dignissimos soluta ab maiores."], ["date", "2020-05-06 18:40:59.113865"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.114576"], ["updated_at", "2020-05-05 18:40:59.114576"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed est temporibus aut?"], ["description", "Eaque odio ad commodi."], ["date", "2020-05-06 18:40:59.116520"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.117720"], ["updated_at", "2020-05-05 18:40:59.117720"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui eius consequatur et?"], ["description", "Quisquam enim dolores vel."], ["date", "2020-05-06 18:40:59.119456"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.120384"], ["updated_at", "2020-05-05 18:40:59.120384"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima id quia eum?"], ["description", "Et ut veniam qui."], ["date", "2020-05-06 18:40:59.121600"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.122303"], ["updated_at", "2020-05-05 18:40:59.122303"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid architecto quo qui?"], ["description", "Quibusdam optio vel aliquam."], ["date", "2020-05-06 18:40:59.124135"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.124934"], ["updated_at", "2020-05-05 18:40:59.124934"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum recusandae sed sunt?"], ["description", "Recusandae sit porro eos."], ["date", "2020-05-06 18:40:59.126933"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.127878"], ["updated_at", "2020-05-05 18:40:59.127878"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor dolor et sunt?"], ["description", "Error distinctio ab sint."], ["date", "2020-05-06 18:40:59.129130"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.129808"], ["updated_at", "2020-05-05 18:40:59.129808"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus ad dolor consequatur?"], ["description", "Aut ipsa unde vel."], ["date", "2020-05-06 18:40:59.131005"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.131685"], ["updated_at", "2020-05-05 18:40:59.131685"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit cupiditate error reiciendis?"], ["description", "Fugiat quaerat voluptates quibusdam."], ["date", "2020-05-06 18:40:59.132922"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.133605"], ["updated_at", "2020-05-05 18:40:59.133605"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel voluptates error est?"], ["description", "At omnis aliquid ab."], ["date", "2020-05-06 18:40:59.134866"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.136306"], ["updated_at", "2020-05-05 18:40:59.136306"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam architecto velit sint?"], ["description", "Omnis architecto harum molestiae."], ["date", "2020-05-06 18:40:59.138383"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.139342"], ["updated_at", "2020-05-05 18:40:59.139342"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae nam voluptates ab?"], ["description", "Cumque maxime optio unde."], ["date", "2020-05-06 18:40:59.140598"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.141287"], ["updated_at", "2020-05-05 18:40:59.141287"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus doloremque laborum natus?"], ["description", "Sed et non libero."], ["date", "2020-05-06 18:40:59.142450"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.143190"], ["updated_at", "2020-05-05 18:40:59.143190"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error suscipit atque ut?"], ["description", "Dolorum nemo molestiae quaerat."], ["date", "2020-05-06 18:40:59.145020"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.145965"], ["updated_at", "2020-05-05 18:40:59.145965"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur veritatis eum accusantium?"], ["description", "Assumenda consectetur distinctio similique."], ["date", "2020-05-06 18:40:59.147255"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.147955"], ["updated_at", "2020-05-05 18:40:59.147955"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["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: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nicholas Kassulke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ORpoQt6/VyFSIXAcJD8it.XFS3FPMOSbbtUyHdjXKR.HU9bezGqye"], ["created_at", "2020-05-05 18:40:59.165160"], ["updated_at", "2020-05-05 18:40:59.165160"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempora"], ["description", "Fugit non omnis et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.168142"], ["updated_at", "2020-05-05 18:40:59.168142"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim rerum alias amet?"], ["description", "Id delectus tempore sit."], ["date", "2020-05-06 18:40:59.169588"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.170499"], ["updated_at", "2020-05-05 18:40:59.170499"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati qui ut ipsum?"], ["description", "Ea quibusdam et ut."], ["date", "2020-05-06 18:40:59.172112"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.172979"], ["updated_at", "2020-05-05 18:40:59.172979"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut consequatur libero ut?"], ["description", "Harum unde itaque illo."], ["date", "2020-05-06 18:40:59.174240"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.175074"], ["updated_at", "2020-05-05 18:40:59.175074"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat voluptas error numquam?"], ["description", "In tempore eum quo."], ["date", "2020-05-06 18:40:59.177196"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.178276"], ["updated_at", "2020-05-05 18:40:59.178276"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate cum sint iure?"], ["description", "Odio quam dignissimos modi."], ["date", "2020-05-06 18:40:59.179816"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.181077"], ["updated_at", "2020-05-05 18:40:59.181077"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae sunt et saepe?"], ["description", "Rerum ipsa qui hic."], ["date", "2020-05-06 18:40:59.182477"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.183178"], ["updated_at", "2020-05-05 18:40:59.183178"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam sed sunt repellendus?"], ["description", "Eligendi ipsa explicabo libero."], ["date", "2020-05-06 18:40:59.184258"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.185008"], ["updated_at", "2020-05-05 18:40:59.185008"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis aliquid autem ipsam?"], ["description", "Optio quo eos temporibus."], ["date", "2020-05-06 18:40:59.186323"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.187126"], ["updated_at", "2020-05-05 18:40:59.187126"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum omnis aut sunt?"], ["description", "Quos exercitationem cumque ex."], ["date", "2020-05-06 18:40:59.188270"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.188950"], ["updated_at", "2020-05-05 18:40:59.188950"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos non assumenda excepturi?"], ["description", "Nostrum distinctio consectetur tenetur."], ["date", "2020-05-06 18:40:59.190686"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.191448"], ["updated_at", "2020-05-05 18:40:59.191448"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem id est tempora?"], ["description", "Dolorum qui sed impedit."], ["date", "2020-05-06 18:40:59.192702"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.193389"], ["updated_at", "2020-05-05 18:40:59.193389"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et qui neque qui?"], ["description", "Recusandae ut deleniti ut."], ["date", "2020-05-06 18:40:59.194555"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.195893"], ["updated_at", "2020-05-05 18:40:59.195893"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad culpa sed soluta?"], ["description", "Nisi molestiae tempore voluptatem."], ["date", "2020-05-06 18:40:59.198650"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.199625"], ["updated_at", "2020-05-05 18:40:59.199625"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut repellendus nihil commodi?"], ["description", "Voluptas recusandae autem et."], ["date", "2020-05-06 18:40:59.200949"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.201628"], ["updated_at", "2020-05-05 18:40:59.201628"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut laudantium ipsum minus?"], ["description", "Ad tempora ipsam rerum."], ["date", "2020-05-06 18:40:59.202827"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.203485"], ["updated_at", "2020-05-05 18:40:59.203485"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et unde quas illo?"], ["description", "In similique cupiditate unde."], ["date", "2020-05-06 18:40:59.204585"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.205332"], ["updated_at", "2020-05-05 18:40:59.205332"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque dolorem necessitatibus explicabo?"], ["description", "In tenetur ipsam molestiae."], ["date", "2020-05-06 18:40:59.206613"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.207418"], ["updated_at", "2020-05-05 18:40:59.207418"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint quibusdam laudantium magni?"], ["description", "Id enim amet et."], ["date", "2020-05-06 18:40:59.208699"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.210867"], ["updated_at", "2020-05-05 18:40:59.210867"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid tempore consequuntur est?"], ["description", "Omnis minus corrupti culpa."], ["date", "2020-05-06 18:40:59.212714"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.213640"], ["updated_at", "2020-05-05 18:40:59.213640"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non est beatae ea?"], ["description", "Qui in est nobis."], ["date", "2020-05-06 18:40:59.214932"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:40:59.215775"], ["updated_at", "2020-05-05 18:40:59.215775"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetingsController#destroy as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + UserMeeting Load (0.1ms) SELECT "user_meetings".* FROM "user_meetings" WHERE "user_meetings"."meeting_id" = ? [["meeting_id", 1]] + Meeting Destroy (0.1ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 6ms (ActiveRecord: 0.8ms | Allocations: 2317) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Officiis doloribus beatae repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.234702"], ["updated_at", "2020-05-05 18:40:59.234702"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Impedit quia est omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.238565"], ["updated_at", "2020-05-05 18:40:59.238565"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "animi"], ["description", "Quasi nam vero eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.240402"], ["updated_at", "2020-05-05 18:40:59.240402"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Nobis explicabo vitae labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.242359"], ["updated_at", "2020-05-05 18:40:59.242359"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Autem facilis consectetur temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.244230"], ["updated_at", "2020-05-05 18:40:59.244230"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Ipsa qui totam est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.246067"], ["updated_at", "2020-05-05 18:40:59.246067"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perferendis"], ["description", "Esse quibusdam id dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.247633"], ["updated_at", "2020-05-05 18:40:59.247633"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "similique"], ["description", "Et aliquid soluta perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.249000"], ["updated_at", "2020-05-05 18:40:59.249000"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Aspernatur ut exercitationem sapiente."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.250254"], ["updated_at", "2020-05-05 18:40:59.250254"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quod"], ["description", "Similique rerum velit qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.251487"], ["updated_at", "2020-05-05 18:40:59.251487"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Larhonda Rosenbaum"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$X5Jqef/FK.HlkWUrjmDnlu2hZJsnv.PBUdBILRO5zHLzaw2sz0HJO"], ["created_at", "2020-05-05 18:40:59.254109"], ["updated_at", "2020-05-05 18:40:59.254109"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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.0ms | ActiveRecord: 0.4ms | Allocations: 2913) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eius"], ["description", "Ducimus incidunt autem accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.275943"], ["updated_at", "2020-05-05 18:40:59.275943"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "culpa"], ["description", "Officia molestias corrupti perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.280459"], ["updated_at", "2020-05-05 18:40:59.280459"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officia"], ["description", "Doloribus natus debitis quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.281917"], ["updated_at", "2020-05-05 18:40:59.281917"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corporis"], ["description", "Amet perferendis suscipit voluptatum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.283240"], ["updated_at", "2020-05-05 18:40:59.283240"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Quasi tempora deleniti necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.284637"], ["updated_at", "2020-05-05 18:40:59.284637"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Qui ullam molestias expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.286004"], ["updated_at", "2020-05-05 18:40:59.286004"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Aspernatur ut aut tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.287239"], ["updated_at", "2020-05-05 18:40:59.287239"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "necessitatibus"], ["description", "Et quia sed magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.288429"], ["updated_at", "2020-05-05 18:40:59.288429"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Asperiores eum in delectus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.289695"], ["updated_at", "2020-05-05 18:40:59.289695"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Illo exercitationem est expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.290986"], ["updated_at", "2020-05-05 18:40:59.290986"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kareen Schiller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dS6oiBAGnEi43WQHP4ytAepC2hF2sMM/o43e8heHHNkBkIsBtzBG."], ["created_at", "2020-05-05 18:40:59.293574"], ["updated_at", "2020-05-05 18:40:59.293574"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | Allocations: 2845) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rem"], ["description", "Pariatur ex animi dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.312777"], ["updated_at", "2020-05-05 18:40:59.312777"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Libero rem tempore beatae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.315670"], ["updated_at", "2020-05-05 18:40:59.315670"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "delectus"], ["description", "Eligendi quo id officiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.317789"], ["updated_at", "2020-05-05 18:40:59.317789"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Et voluptas consequatur voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.319623"], ["updated_at", "2020-05-05 18:40:59.319623"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolore"], ["description", "Sequi dignissimos quaerat iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.321863"], ["updated_at", "2020-05-05 18:40:59.321863"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "delectus"], ["description", "Nam vel veniam velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.323344"], ["updated_at", "2020-05-05 18:40:59.323344"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "In voluptatum magni quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.324613"], ["updated_at", "2020-05-05 18:40:59.324613"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Sunt debitis ad recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.326054"], ["updated_at", "2020-05-05 18:40:59.326054"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veniam"], ["description", "Culpa et suscipit reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.328031"], ["updated_at", "2020-05-05 18:40:59.328031"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "labore"], ["description", "Adipisci fugiat non molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.329333"], ["updated_at", "2020-05-05 18:40:59.329333"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Sibyl Thiel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$zaOYKEZPG0ahgWS6/M1.TOj.E3pI6YCLPJlUryVRRjq9TT3m9JX8W"], ["created_at", "2020-05-05 18:40:59.331912"], ["updated_at", "2020-05-05 18:40:59.331912"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.65ms) +Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms | Allocations: 2845) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.79ms) +Completed 200 OK in 4ms (Views: 2.1ms | ActiveRecord: 0.3ms | Allocations: 1242) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloribus"], ["description", "Non possimus facere distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.355311"], ["updated_at", "2020-05-05 18:40:59.355311"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Distinctio qui nulla maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.359300"], ["updated_at", "2020-05-05 18:40:59.359300"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloribus"], ["description", "Perspiciatis dolorum a deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.361960"], ["updated_at", "2020-05-05 18:40:59.361960"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Libero ducimus numquam ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.364589"], ["updated_at", "2020-05-05 18:40:59.364589"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Dolorem quisquam quibusdam expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.367298"], ["updated_at", "2020-05-05 18:40:59.367298"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quibusdam"], ["description", "Et ea ea ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.368904"], ["updated_at", "2020-05-05 18:40:59.368904"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "earum"], ["description", "Aspernatur voluptates consequatur reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.370170"], ["updated_at", "2020-05-05 18:40:59.370170"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ex"], ["description", "Animi ex sit voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.371687"], ["updated_at", "2020-05-05 18:40:59.371687"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Rem dolores modi voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.372976"], ["updated_at", "2020-05-05 18:40:59.372976"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Consequuntur est placeat cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.374290"], ["updated_at", "2020-05-05 18:40:59.374290"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Clemmie Miller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ff26HGpHlK.ElHrBJGAeF.jH1q2M1zEdNG.iygPMdP4AVdhMXhSzO"], ["created_at", "2020-05-05 18:40:59.377781"], ["updated_at", "2020-05-05 18:40:59.377781"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2844) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.22ms) +Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.2ms | Allocations: 1240) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "soluta"], ["description", "Consequatur amet iste voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.402675"], ["updated_at", "2020-05-05 18:40:59.402675"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "A harum consequatur natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.405626"], ["updated_at", "2020-05-05 18:40:59.405626"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Recusandae magni doloremque soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.407289"], ["updated_at", "2020-05-05 18:40:59.407289"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusamus"], ["description", "Perspiciatis dolorum rerum beatae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.408606"], ["updated_at", "2020-05-05 18:40:59.408606"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odit"], ["description", "Amet sint ratione ipsa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.410330"], ["updated_at", "2020-05-05 18:40:59.410330"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rem"], ["description", "Accusamus placeat non quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.411792"], ["updated_at", "2020-05-05 18:40:59.411792"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Eos officia libero optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.413088"], ["updated_at", "2020-05-05 18:40:59.413088"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nobis"], ["description", "Id explicabo velit quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.414318"], ["updated_at", "2020-05-05 18:40:59.414318"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloremque"], ["description", "Voluptatem omnis velit dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.415612"], ["updated_at", "2020-05-05 18:40:59.415612"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellat"], ["description", "Quam saepe voluptatem sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.417069"], ["updated_at", "2020-05-05 18:40:59.417069"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Columbus Gibson MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pNNuslyqc2vAyuVC1RiCCOPmXbocQT8CpyRTfhyqDOf5az3WP7ckm"], ["created_at", "2020-05-05 18:40:59.421328"], ["updated_at", "2020-05-05 18:40:59.421328"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2845) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (15.1ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consectetur"], ["description", "Dignissimos delectus et sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.443578"], ["updated_at", "2020-05-05 18:40:59.443578"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Iusto non iure aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.462747"], ["updated_at", "2020-05-05 18:40:59.462747"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "libero"], ["description", "Tempora est doloribus quisquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.464275"], ["updated_at", "2020-05-05 18:40:59.464275"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "asperiores"], ["description", "Dolorum in veritatis vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.465632"], ["updated_at", "2020-05-05 18:40:59.465632"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perferendis"], ["description", "Odio occaecati debitis eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.466974"], ["updated_at", "2020-05-05 18:40:59.466974"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "placeat"], ["description", "Ut possimus quaerat vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.468289"], ["updated_at", "2020-05-05 18:40:59.468289"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Molestiae ducimus soluta at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.469649"], ["updated_at", "2020-05-05 18:40:59.469649"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Sint et aperiam quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.470931"], ["updated_at", "2020-05-05 18:40:59.470931"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Dolorum molestiae recusandae nisi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.472227"], ["updated_at", "2020-05-05 18:40:59.472227"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perspiciatis"], ["description", "Quia repellendus sint dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.473502"], ["updated_at", "2020-05-05 18:40:59.473502"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rosendo Powlowski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$di8zlYGXHwFGKIokuFVrnu95zyaTjPGAPycLaatL3KvlokimKOnHu"], ["created_at", "2020-05-05 18:40:59.476172"], ["updated_at", "2020-05-05 18:40:59.476172"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.77ms) +Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "adipisci"], ["description", "Dolor voluptatem ad vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.501205"], ["updated_at", "2020-05-05 18:40:59.501205"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloribus"], ["description", "Vero laboriosam fugiat exercitationem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.504041"], ["updated_at", "2020-05-05 18:40:59.504041"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "alias"], ["description", "Minima cupiditate cum repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.505728"], ["updated_at", "2020-05-05 18:40:59.505728"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quidem"], ["description", "Veniam similique error facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.507078"], ["updated_at", "2020-05-05 18:40:59.507078"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Eum ea ut totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.508368"], ["updated_at", "2020-05-05 18:40:59.508368"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quos"], ["description", "Molestiae occaecati facilis tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.509753"], ["updated_at", "2020-05-05 18:40:59.509753"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "placeat"], ["description", "Sunt praesentium porro ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.511465"], ["updated_at", "2020-05-05 18:40:59.511465"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Qui sunt impedit blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.512886"], ["updated_at", "2020-05-05 18:40:59.512886"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Voluptas amet sunt nisi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.514249"], ["updated_at", "2020-05-05 18:40:59.514249"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quaerat"], ["description", "Neque consectetur in excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.515501"], ["updated_at", "2020-05-05 18:40:59.515501"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marcellus Leuschke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Kb8RV6oqaoz/WQGlhSPMoeMfE2UnssfkVB7vvVMcXpy6rcrTDbw3u"], ["created_at", "2020-05-05 18:40:59.518688"], ["updated_at", "2020-05-05 18:40:59.518688"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.7ms | ActiveRecord: 0.2ms | Allocations: 2845) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:40:59 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:40:59.545266"], ["updated_at", "2020-05-05 18:40:59.545266"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.49ms) +Completed 201 Created in 23ms (Views: 1.0ms | ActiveRecord: 1.2ms | Allocations: 6207) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Perferendis expedita quaerat repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.564017"], ["updated_at", "2020-05-05 18:40:59.564017"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Temporibus voluptatem provident vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.567018"], ["updated_at", "2020-05-05 18:40:59.567018"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nisi"], ["description", "Repellendus qui dolore fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.568493"], ["updated_at", "2020-05-05 18:40:59.568493"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptate"], ["description", "Enim debitis est temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.569765"], ["updated_at", "2020-05-05 18:40:59.569765"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nostrum"], ["description", "Eius optio et quidem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.571109"], ["updated_at", "2020-05-05 18:40:59.571109"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quaerat"], ["description", "Nihil earum qui ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.572399"], ["updated_at", "2020-05-05 18:40:59.572399"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Non nemo vel adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.573667"], ["updated_at", "2020-05-05 18:40:59.573667"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "explicabo"], ["description", "Harum omnis molestiae consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.575035"], ["updated_at", "2020-05-05 18:40:59.575035"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Incidunt aut voluptatem corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.576608"], ["updated_at", "2020-05-05 18:40:59.576608"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "earum"], ["description", "Id dignissimos labore quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.579640"], ["updated_at", "2020-05-05 18:40:59.579640"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ariel Cartwright"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$d.Ba.mMSzj6D9xEPjvtyDOrZT6GzTFgUB.TtVRWWNmu1RG1j4BtDC"], ["created_at", "2020-05-05 18:40:59.583522"], ["updated_at", "2020-05-05 18:40:59.583522"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.1ms) +Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:40:59 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:40:59.594717"], ["updated_at", "2020-05-05 18:40:59.594717"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.49ms) +Completed 201 Created in 6ms (Views: 1.0ms | ActiveRecord: 0.8ms | Allocations: 2251) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (5.9ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vero"], ["description", "Vero eligendi omnis fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.611033"], ["updated_at", "2020-05-05 18:40:59.611033"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Iusto aperiam provident ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.619817"], ["updated_at", "2020-05-05 18:40:59.619817"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquid"], ["description", "Natus distinctio harum dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.622133"], ["updated_at", "2020-05-05 18:40:59.622133"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Nulla aliquam est aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.624241"], ["updated_at", "2020-05-05 18:40:59.624241"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officiis"], ["description", "Est laboriosam aperiam tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.625929"], ["updated_at", "2020-05-05 18:40:59.625929"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Rem et omnis facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.628688"], ["updated_at", "2020-05-05 18:40:59.628688"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Molestiae minus voluptatem quas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.630255"], ["updated_at", "2020-05-05 18:40:59.630255"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "itaque"], ["description", "Nesciunt nostrum exercitationem ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.631656"], ["updated_at", "2020-05-05 18:40:59.631656"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "occaecati"], ["description", "Aut expedita eum impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.633060"], ["updated_at", "2020-05-05 18:40:59.633060"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dignissimos"], ["description", "Omnis quos recusandae exercitationem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.634409"], ["updated_at", "2020-05-05 18:40:59.634409"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Zoraida Mueller IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fKbRRNXI/H/IU61khggDk.NEDVs2dYMmBC8bRnbIswNAJ/xBWgBAK"], ["created_at", "2020-05-05 18:40:59.637304"], ["updated_at", "2020-05-05 18:40:59.637304"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.76ms) +Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 4006) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (52.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quos"], ["description", "Et dolorem pariatur et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.711884"], ["updated_at", "2020-05-05 18:40:59.711884"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eius"], ["description", "Officiis quo iure quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.715218"], ["updated_at", "2020-05-05 18:40:59.715218"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Perspiciatis aut consequatur ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.716881"], ["updated_at", "2020-05-05 18:40:59.716881"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tenetur"], ["description", "Officia praesentium pariatur enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.718281"], ["updated_at", "2020-05-05 18:40:59.718281"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officia"], ["description", "Molestias quis pariatur reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.720782"], ["updated_at", "2020-05-05 18:40:59.720782"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "esse"], ["description", "Qui eius illo dignissimos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.723150"], ["updated_at", "2020-05-05 18:40:59.723150"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "necessitatibus"], ["description", "Reprehenderit excepturi optio perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.725035"], ["updated_at", "2020-05-05 18:40:59.725035"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "commodi"], ["description", "Tempora praesentium reprehenderit laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.726845"], ["updated_at", "2020-05-05 18:40:59.726845"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Qui in occaecati aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.729793"], ["updated_at", "2020-05-05 18:40:59.729793"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eius"], ["description", "Error placeat fugiat enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.731536"], ["updated_at", "2020-05-05 18:40:59.731536"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Annelle Jast"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$yXMbLg2qfWODIwo1mRl7u.YGPJ3EWEKMyZRxti1wD97zqFY9qoULi"], ["created_at", "2020-05-05 18:40:59.734418"], ["updated_at", "2020-05-05 18:40:59.734418"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.65ms) +Completed 200 OK in 8ms (Views: 6.2ms | ActiveRecord: 0.3ms | Allocations: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 3697) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellat"], ["description", "Voluptatem et unde aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.763662"], ["updated_at", "2020-05-05 18:40:59.763662"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Aut omnis accusantium qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.767740"], ["updated_at", "2020-05-05 18:40:59.767740"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ducimus"], ["description", "Ut qui sed et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.769962"], ["updated_at", "2020-05-05 18:40:59.769962"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Quidem error animi vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.771715"], ["updated_at", "2020-05-05 18:40:59.771715"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "modi"], ["description", "In dolor quod eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.773089"], ["updated_at", "2020-05-05 18:40:59.773089"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Vel enim vitae et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.774421"], ["updated_at", "2020-05-05 18:40:59.774421"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Ut eaque repudiandae distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.775897"], ["updated_at", "2020-05-05 18:40:59.775897"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "assumenda"], ["description", "Ad voluptas dignissimos aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.778130"], ["updated_at", "2020-05-05 18:40:59.778130"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Et quia commodi sapiente."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.781321"], ["updated_at", "2020-05-05 18:40:59.781321"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Repellat eum itaque velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.783939"], ["updated_at", "2020-05-05 18:40:59.783939"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mana Schuppe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fbNUVBTzXdwk/b4HUL.Dd.I.3YI/lEkMHkHilHA6r8egnMIMrqKgC"], ["created_at", "2020-05-05 18:40:59.787248"], ["updated_at", "2020-05-05 18:40:59.787248"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | Allocations: 2842) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.2ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:40:59.798685"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.6ms | Allocations: 1043) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quisquam"], ["description", "Itaque aliquam dolor doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.810621"], ["updated_at", "2020-05-05 18:40:59.810621"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Vero quod officiis distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.814864"], ["updated_at", "2020-05-05 18:40:59.814864"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Cupiditate vitae magnam similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.816788"], ["updated_at", "2020-05-05 18:40:59.816788"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Quo soluta voluptas quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.818219"], ["updated_at", "2020-05-05 18:40:59.818219"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sequi"], ["description", "Laborum hic et fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.819939"], ["updated_at", "2020-05-05 18:40:59.819939"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Corrupti atque quia velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.823179"], ["updated_at", "2020-05-05 18:40:59.823179"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "similique"], ["description", "Aut fugit nihil incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.826864"], ["updated_at", "2020-05-05 18:40:59.826864"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Aliquam quasi aut consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.828948"], ["updated_at", "2020-05-05 18:40:59.828948"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minus"], ["description", "Aut et impedit magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.830865"], ["updated_at", "2020-05-05 18:40:59.830865"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Delectus vero sapiente odio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.832386"], ["updated_at", "2020-05-05 18:40:59.832386"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Adena Auer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gNRZWIUXU/ISFrlP6ef0n.ohJmgjsdR7.4U9EG6wrmqvlX1Ha7Tii"], ["created_at", "2020-05-05 18:40:59.835269"], ["updated_at", "2020-05-05 18:40:59.835269"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (5.38ms) +Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:40:59.850453"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 999) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Possimus hic provident autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.866193"], ["updated_at", "2020-05-05 18:40:59.866193"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Quis cumque blanditiis beatae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.869548"], ["updated_at", "2020-05-05 18:40:59.869548"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Iusto itaque magnam et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.871486"], ["updated_at", "2020-05-05 18:40:59.871486"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Amet et nihil rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.872724"], ["updated_at", "2020-05-05 18:40:59.872724"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Non et qui est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.874024"], ["updated_at", "2020-05-05 18:40:59.874024"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "Officia nihil similique magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.875338"], ["updated_at", "2020-05-05 18:40:59.875338"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "inventore"], ["description", "Voluptas beatae perferendis occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.876613"], ["updated_at", "2020-05-05 18:40:59.876613"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Molestiae modi totam ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.878192"], ["updated_at", "2020-05-05 18:40:59.878192"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Aut voluptatem nostrum et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.880621"], ["updated_at", "2020-05-05 18:40:59.880621"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Mollitia repellendus sint maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:40:59.883239"], ["updated_at", "2020-05-05 18:40:59.883239"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Eugena Gusikowski I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$By4kyOlCuwarLSF9Kz3ZxuJ4SKcLTjiymhee0ay4XxLgTyV9lddyy"], ["created_at", "2020-05-05 18:40:59.886923"], ["updated_at", "2020-05-05 18:40:59.886923"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.6ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.3ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.3ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 5ms (ActiveRecord: 0.9ms | Allocations: 1205) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (38.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (2.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Brady McLaughlin MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$PbtsdHmnQyVWkY1QuBvfm.gYQtHTt6v2mP0g/.Qyuur3bo2qE37Fu"], ["created_at", "2020-05-05 18:40:59.951039"], ["updated_at", "2020-05-05 18:40:59.951039"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Perry Collier"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0IXPIDPWIvjNoGlOvJi.s.rbr1wVJxgU.YjcLHwrzwiLT3BbndiKG"], ["created_at", "2020-05-05 18:40:59.961013"], ["updated_at", "2020-05-05 18:40:59.961013"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Millard Gorczany"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OZ/id5tuW6CWmSMdOhCzUubZApfm6g59YH.o/2F2iA0ZtGlMZPpeq"], ["created_at", "2020-05-05 18:40:59.967825"], ["updated_at", "2020-05-05 18:40:59.967825"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tara Kuhic"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$eZklYqhsojDVnqtUc7odoe5jY39dt.beg5LXkXsqW0T058VIyR3Y."], ["created_at", "2020-05-05 18:40:59.972072"], ["updated_at", "2020-05-05 18:40:59.972072"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Terrence Stamm"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$trFUCHav6uHSGYqSUyspvu5YImaamPXdvBMQ7c67L3WCooXYRFBwe"], ["created_at", "2020-05-05 18:40:59.975938"], ["updated_at", "2020-05-05 18:40:59.975938"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Zetta Goodwin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$F0B9IKsVQuSIW38oN4fyWelNsCAGgSGPtN9L8v7NAjxqe9UVZMdCy"], ["created_at", "2020-05-05 18:40:59.980710"], ["updated_at", "2020-05-05 18:40:59.980710"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Joesph Stoltenberg"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rR4YeitB2krvQ8yM5XyTT.fFu9GdgweC225OyCE30f7ELNrCt.AbS"], ["created_at", "2020-05-05 18:40:59.985834"], ["updated_at", "2020-05-05 18:40:59.985834"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jermaine Walker I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$cWq/nLuwsOPk0GoysCyzGOpCyMHeC6NLyJjG0GmKYC5ck.M7n/pYG"], ["created_at", "2020-05-05 18:40:59.989996"], ["updated_at", "2020-05-05 18:40:59.989996"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gena Christiansen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$uUYqHU7XG87F.RBsP5.2..89zou7y0as6f4IPzQ4BKXFJmc/DEE12"], ["created_at", "2020-05-05 18:40:59.993032"], ["updated_at", "2020-05-05 18:40:59.993032"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sherika Armstrong"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8MSfbrutPVC2jaREt48xsubO3ug56oeLWEErG4AwSLH/PajIFQjmO"], ["created_at", "2020-05-05 18:40:59.996010"], ["updated_at", "2020-05-05 18:40:59.996010"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:40:59 -0300 +Processing by UsersController#index as HTML + User Load (0.4ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.31ms) +Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.4ms | Allocations: 2345) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.4ms) SAVEPOINT active_record_2 + User Create (2.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Geraldo Murphy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1VMm95fRoe5QPuvh8UOOgerAjsV7Gw2coJrn1Q76RNdnYvQlJKTSa"], ["created_at", "2020-05-05 18:41:00.026782"], ["updated_at", "2020-05-05 18:41:00.026782"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Roma Mills"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qXgGayJm/hNfrR2rIyiEiuDwOFGKq9WSbA/GW.DlaxBN2fj2Xd96C"], ["created_at", "2020-05-05 18:41:00.035262"], ["updated_at", "2020-05-05 18:41:00.035262"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gustavo Robel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8XEOBgvKdRmEvdJGT7.Nu.L..p25CNZwOYP3GRjf5bHBt.lJ/e4Ia"], ["created_at", "2020-05-05 18:41:00.038135"], ["updated_at", "2020-05-05 18:41:00.038135"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dacia Nikolaus"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZaQXG5d2TAmPEmAhQwzeyO8Cx4dZXfgq3YG2F6488eVMtopYW6vEC"], ["created_at", "2020-05-05 18:41:00.040584"], ["updated_at", "2020-05-05 18:41:00.040584"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Linwood Von"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$eZQItsy5OnnkG4DELqrJhuUYs591mdvLR1bG36H0rtFM8k4LvGEli"], ["created_at", "2020-05-05 18:41:00.045592"], ["updated_at", "2020-05-05 18:41:00.045592"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marcelle Beer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$laW6FGAtCyzLJW8un8mcZefYbcMctLJIiIl814uhJFa9TQ1Dkv4RG"], ["created_at", "2020-05-05 18:41:00.049631"], ["updated_at", "2020-05-05 18:41:00.049631"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Earle Swift"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oxvQ0452SX7NNv15NTOC8OvW9SIx8OUw2M9KrVmCnHMLLovZIvbPm"], ["created_at", "2020-05-05 18:41:00.052625"], ["updated_at", "2020-05-05 18:41:00.052625"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Pete Kertzmann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tGx996WlqtPhn3vUSSVSP.FZ50tA1fPz6q57SdKbD50KxWw876VZC"], ["created_at", "2020-05-05 18:41:00.055401"], ["updated_at", "2020-05-05 18:41:00.055401"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jolanda Kuhic"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tdaRIdxhjRybPOZ00XDyI.qeVXZ5JqNXgHLBIAPWdR8hH8hmA2DvO"], ["created_at", "2020-05-05 18:41:00.058461"], ["updated_at", "2020-05-05 18:41:00.058461"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lizeth Stamm"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BfMXKnbDmPDvli5sgGV6Y.bs0dmZE2A0Jt1d/fOonw26rR9PFcB2i"], ["created_at", "2020-05-05 18:41:00.064201"], ["updated_at", "2020-05-05 18:41:00.064201"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:41:00 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.98ms) +Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2203) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (10.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (2.0ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nicolas Bernhard"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rEiwx1Ye.7l7twXyiBxTeel8j14vkTG/cCFXQmjBZYD6G8nJLYdSi"], ["created_at", "2020-05-05 18:41:00.100703"], ["updated_at", "2020-05-05 18:41:00.100703"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Reatha Reichert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Gb8b1md2idR5HFSCIUuj0./EME91ezWS0hJS0swmQqWKWldNiBrZO"], ["created_at", "2020-05-05 18:41:00.108389"], ["updated_at", "2020-05-05 18:41:00.108389"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elijah Orn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XW2oiJIGoiWS6P4TcRwyy.43Rnk0WGSWzC95lniueDfMDwTVLzVuW"], ["created_at", "2020-05-05 18:41:00.119555"], ["updated_at", "2020-05-05 18:41:00.119555"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Ken Larkin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7IlNIKr7MdaHis03GrfG..KWSmOsV/SQZFROGq44s.qdh2NZM.XpC"], ["created_at", "2020-05-05 18:41:00.125524"], ["updated_at", "2020-05-05 18:41:00.125524"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Margot Schmidt"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$EwE2IpWTRax.C2LaxSd5yeaACaeS4bLC1lU0L6OEpEQslYArGJKXq"], ["created_at", "2020-05-05 18:41:00.130979"], ["updated_at", "2020-05-05 18:41:00.130979"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mariko Gerlach III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$l4xMArWlU0vAKtfgPPx44uNBkuyzJ9sEcotTnw0zKUOJA9M.tVxOS"], ["created_at", "2020-05-05 18:41:00.133832"], ["updated_at", "2020-05-05 18:41:00.133832"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jody Ebert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$28Qrx87ZFNiIlg1YFwAogOV.VW3UuFvoioUxXBlYaLamAXDI/zXwy"], ["created_at", "2020-05-05 18:41:00.136456"], ["updated_at", "2020-05-05 18:41:00.136456"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Merlyn Cremin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4SsC8WHO22xjQ5KwU.xBquxTtK/E3raX2p5jrbX3TtMn0yZxO4qYa"], ["created_at", "2020-05-05 18:41:00.138892"], ["updated_at", "2020-05-05 18:41:00.138892"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rosana Baumbach"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UI0kpf76DaHHn8u.wn8gzuEsMSQU9G0ijnUgxXQs8/YeMNoaIIice"], ["created_at", "2020-05-05 18:41:00.141546"], ["updated_at", "2020-05-05 18:41:00.141546"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tisa Simonis"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$yLIP5cxxJDkaL0sTUMa6a.1HbIkef6Qi7ZP8LBXXlR290QDzGceEC"], ["created_at", "2020-05-05 18:41:00.145615"], ["updated_at", "2020-05-05 18:41:00.145615"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:41:00 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.85ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:41:00 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.45ms) +Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dannie Medhurst"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$l6XfG92Ku0nEgfBsy03N2ePZ0g69pfTtKR0H5.dK65XCbIYatmUyK"], ["created_at", "2020-05-05 18:41:00.167373"], ["updated_at", "2020-05-05 18:41:00.167373"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rufus Terry"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$V7RKiJpbg/FOxWJjm1tuCe4O7ElllCh1gGpnk78YQupUGg9HVgQw2"], ["created_at", "2020-05-05 18:41:00.171887"], ["updated_at", "2020-05-05 18:41:00.171887"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Karl Krajcik"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GCBhYJhWi02ElFqpcM0cV.KNantueC4HHk25EPTIZ/oeo.AGgSLzK"], ["created_at", "2020-05-05 18:41:00.174497"], ["updated_at", "2020-05-05 18:41:00.174497"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gil Lowe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$D05mBtwS..KIMSWW9XKiXOaYaDZiBMvZ6gOAbs5c7Vb.4duLUef4e"], ["created_at", "2020-05-05 18:41:00.177184"], ["updated_at", "2020-05-05 18:41:00.177184"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tamie Homenick"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$zXAiaDNFMKueENWhGTXQGe2OczkVcoElx.WK3Au8EuNhQeQc635E6"], ["created_at", "2020-05-05 18:41:00.180345"], ["updated_at", "2020-05-05 18:41:00.180345"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Chang Labadie DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UmPp51s5Idl56gk/tnyeT.aCn/jhXQ.TwNif6wOgUTolH7NRgj2E6"], ["created_at", "2020-05-05 18:41:00.183866"], ["updated_at", "2020-05-05 18:41:00.183866"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Regan Buckridge"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LqZkTG22b1Yh6nf29r..CudD3knrRanm82/yCo9TOEhhiM7BJEO0."], ["created_at", "2020-05-05 18:41:00.187233"], ["updated_at", "2020-05-05 18:41:00.187233"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Donovan Cassin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$b6g.YmTyu6YR/XJhgahfcOL30uakX24WnZdF0FKqqbj0qv36KH8.G"], ["created_at", "2020-05-05 18:41:00.190022"], ["updated_at", "2020-05-05 18:41:00.190022"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Garrett Prosacco I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fCZ.ZCtaEESu2zhcDc3D8e6W5oOdsplL.KP4GQtLlAkDGTkvE64YG"], ["created_at", "2020-05-05 18:41:00.192576"], ["updated_at", "2020-05-05 18:41:00.192576"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Adriene Hills"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TlqP8j20QnGsJAttKWHz/uUQDrUuvwRh6GeH1kd240sKiYQX2E0Pq"], ["created_at", "2020-05-05 18:41:00.195374"], ["updated_at", "2020-05-05 18:41:00.195374"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:41:00 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.1ms) +Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:41:00 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.5ms) +Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dallas Koch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1ddo.PNipZJ..Gvec6JWD.5haqZN2WkCriLhWhJh7jj7ti1YK6GVe"], ["created_at", "2020-05-05 18:41:00.217303"], ["updated_at", "2020-05-05 18:41:00.217303"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Robt Lind DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JbpRb18Q3ciJSV7/g1L.2.IzriURE1jGiQVQ/EI8xl/cl3lagHyRu"], ["created_at", "2020-05-05 18:41:00.221937"], ["updated_at", "2020-05-05 18:41:00.221937"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sharron Mitchell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Q9ZXwhou6updVHQ5UMJfTeUzwAqb49Gd1RfnOXVwDwy7TB2hWxPWm"], ["created_at", "2020-05-05 18:41:00.225422"], ["updated_at", "2020-05-05 18:41:00.225422"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jacinta Olson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YdR7mMOLRGMEXzqMW.XEAOglcHctXugq0.8og8MOuS7BBhepNx03G"], ["created_at", "2020-05-05 18:41:00.228805"], ["updated_at", "2020-05-05 18:41:00.228805"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Parker Mohr"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rM6H1Mw8LOVHkMmFggpaiO0R6dNTZ2.WBFKuvs3wtrZAvRyUTFifO"], ["created_at", "2020-05-05 18:41:00.232274"], ["updated_at", "2020-05-05 18:41:00.232274"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Noble O'Keefe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fa3oiUCoHURCazRK0f9GWu4szmvpgqqqMhUtb9wbsTXdALM9.ruwC"], ["created_at", "2020-05-05 18:41:00.235106"], ["updated_at", "2020-05-05 18:41:00.235106"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nancey Kulas DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ypaie4v.EgT0i8JeHD3ma.IWuacbgZHoPafPedKNq2GTzGdS9eRI6"], ["created_at", "2020-05-05 18:41:00.237767"], ["updated_at", "2020-05-05 18:41:00.237767"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hellen Aufderhar"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$AJcv6ycb/XfcgUXrm1CaceDorSoDH32q2awEQ/rG/acWFBVm8wota"], ["created_at", "2020-05-05 18:41:00.240249"], ["updated_at", "2020-05-05 18:41:00.240249"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Stephaine Kuhn I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$L660cvOdqlaLBtrV3EAotuCkQ0u7ebyAgHx4p9OC8GebEWl/NhhsS"], ["created_at", "2020-05-05 18:41:00.243449"], ["updated_at", "2020-05-05 18:41:00.243449"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Bobbie Orn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DcCxhB..r8KlAHUMCR1uUO/tRqLhX3lkTGR8U174nCcurl8ftiDie"], ["created_at", "2020-05-05 18:41:00.246481"], ["updated_at", "2020-05-05 18:41:00.246481"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:41:00 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.83ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:41:00 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Britt Doyle"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LLarH4aEqovAedI7NOnhguATYhJfp5/wz4eD3gaPUxEh72XY6BsgO"], ["created_at", "2020-05-05 18:41:00.266452"], ["updated_at", "2020-05-05 18:41:00.266452"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cleopatra Brekke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3CsDcwg0h4iRFXrAsi.xC.ruGtSISpFB2qXGOtIIPrd37K4s38SrC"], ["created_at", "2020-05-05 18:41:00.270522"], ["updated_at", "2020-05-05 18:41:00.270522"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Teddy Watsica"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tOUowqwiTln4eETB4OFW5uz12X0B.0Qdruu7M8O.g8/gJZTQkdMs6"], ["created_at", "2020-05-05 18:41:00.273081"], ["updated_at", "2020-05-05 18:41:00.273081"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Wes Romaguera"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZHORh38U.2OS5sDs4SVoY.TrHIy5eGG77SJL2UoiNczXcT0hhY/aq"], ["created_at", "2020-05-05 18:41:00.275532"], ["updated_at", "2020-05-05 18:41:00.275532"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Genevie Rice"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ac48peI3m/sMmZsaf7R6mu.ZCxvejiUA/aL7iWOX6Eh6Us8f4573y"], ["created_at", "2020-05-05 18:41:00.278728"], ["updated_at", "2020-05-05 18:41:00.278728"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tonia Grady"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$B3jn2pXYZ.Hp2Xa6EN1jXu8Vhq1SAIYETEY.goJPn0uX3pTJW28Se"], ["created_at", "2020-05-05 18:41:00.281773"], ["updated_at", "2020-05-05 18:41:00.281773"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Arthur Gleason MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8xkeYMQLDlTbglpqwhUtFOdmhyZ9b5hOs6XzudEUCIgyumk7W1Thq"], ["created_at", "2020-05-05 18:41:00.285450"], ["updated_at", "2020-05-05 18:41:00.285450"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jessie Kutch Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$J9S00XanEdd2vOWzYwNUJeo41nO4owrA6tRmKMr3HGKaPk.I2mzXO"], ["created_at", "2020-05-05 18:41:00.288657"], ["updated_at", "2020-05-05 18:41:00.288657"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leo Mills"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$EVKoDMuIVr6xmHzCpcEF6eVVs4w7/gNV0ngEKavC6RD6brdKprn4G"], ["created_at", "2020-05-05 18:41:00.291177"], ["updated_at", "2020-05-05 18:41:00.291177"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Joi Brown"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YSJw20PDqUvjBdgI1z4JmeMLRCv4L4CeF1bl7L.2rG0bS2AOBKW8q"], ["created_at", "2020-05-05 18:41:00.293858"], ["updated_at", "2020-05-05 18:41:00.293858"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:41:00 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.19ms) +Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:41:00 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 404 Not Found in 15ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 526) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Yuette Lemke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TR.k5dXiEpooci5pnIzxfujz7yqSEfyGZueaAHqf8TH7yzISNqbCC"], ["created_at", "2020-05-05 18:41:00.329652"], ["updated_at", "2020-05-05 18:41:00.329652"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Brain Block II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Q2/jiSLJGKbJO/aUsWxUkObn31XjQkL6x8Sz51ZSbAOkM82Ma6sgK"], ["created_at", "2020-05-05 18:41:00.333832"], ["updated_at", "2020-05-05 18:41:00.333832"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Johnson Sipes III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$B1a7bj/3eDTgFfLwgH0DfO7keTUgoQgKJ3pd8g1bSRUDIYxcD.u6a"], ["created_at", "2020-05-05 18:41:00.336550"], ["updated_at", "2020-05-05 18:41:00.336550"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jamila Zemlak"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$sc3kNztIoXTFErRkkvCZYuMPK1uaKhE9Z12f2XSg5nR4aO23w5fKi"], ["created_at", "2020-05-05 18:41:00.339112"], ["updated_at", "2020-05-05 18:41:00.339112"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Anjanette Welch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oyXCwoRD6IPPfMdM8P1EeeItfTdr75u.2fLEzWICoMpXdX/fDqwwi"], ["created_at", "2020-05-05 18:41:00.341508"], ["updated_at", "2020-05-05 18:41:00.341508"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cole Hermiston"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$AhkLAkYEGR6UcDvqTNGE3e4XHm4p8NKep8HH/QQGyuZ/AdPFAfE6q"], ["created_at", "2020-05-05 18:41:00.345256"], ["updated_at", "2020-05-05 18:41:00.345256"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Grisel Crooks Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Nh/iQpq5SlGMSG3SvDzAIOhS9p/WC1jHpckVdlUxq/A8A9/nCUYSC"], ["created_at", "2020-05-05 18:41:00.348898"], ["updated_at", "2020-05-05 18:41:00.348898"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lillie Stoltenberg IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$whiXolP4UF1w4HxyqVhmzevJ0IzioZvIDyGcKjjoT/FORgG6jDyVu"], ["created_at", "2020-05-05 18:41:00.351724"], ["updated_at", "2020-05-05 18:41:00.351724"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ezekiel Simonis"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/Y8zr89MNclSnTL1qCZ0bO3I7v3vUXA2lOm9DZv8ID4g5cYHORFKa"], ["created_at", "2020-05-05 18:41:00.354226"], ["updated_at", "2020-05-05 18:41:00.354226"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Roberto Volkman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$P6fWtjDmzuyzpS9QztgY2eUXLx9iU0Ngk8cn3j7dDQvHWrkamRhpK"], ["created_at", "2020-05-05 18:41:00.356891"], ["updated_at", "2020-05-05 18:41:00.356891"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:41:00 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.49ms) +Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:41:00 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Sheyla", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "email"=>"shey@mail.com"} +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sheyla"], ["email", "shey@mail.com"], ["password_digest", "$2a$04$PrVSw7mu4adUMvrGnIglGuPqUheyR8dMqcmeh3Hp2rOU5G9z.p0ly"], ["created_at", "2020-05-05 18:41:00.368528"], ["updated_at", "2020-05-05 18:41:00.368528"], ["picture", "https://joeschmoe.io/api/v1/josh"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.06ms) +Completed 201 Created in 13ms (Views: 1.9ms | ActiveRecord: 0.5ms | Allocations: 1713) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ellamae Trantow"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$x23LoW.HFwFymywPZhKS3.Sw3wWZbqVHmtG5CJNjK4oPL7ea6aZne"], ["created_at", "2020-05-05 18:41:00.424702"], ["updated_at", "2020-05-05 18:41:00.424702"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Van Balistreri"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Efs3x/lkfMVCvqGGH0xfku.sh177t8o3lxmXI.Ll9yFnwaANQhrm2"], ["created_at", "2020-05-05 18:41:00.430760"], ["updated_at", "2020-05-05 18:41:00.430760"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Yadira Brekke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$j1KmCsm43tEjvhmgnxhmZev71qahDGuDp.F1MtAwNg4eI0kBqZCti"], ["created_at", "2020-05-05 18:41:00.433802"], ["updated_at", "2020-05-05 18:41:00.433802"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ciara Wolff"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$co669qVWMa4z13Ov2STxquW3x9dpKtk/ddC6kuUXjIO9Aa/MRNg56"], ["created_at", "2020-05-05 18:41:00.436607"], ["updated_at", "2020-05-05 18:41:00.436607"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jacquline Shields"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tdIg4kjWR.xxkG0VCKpCM.n/uAmAUBdESmaiiJh9KTCgKuMO0CdRa"], ["created_at", "2020-05-05 18:41:00.439555"], ["updated_at", "2020-05-05 18:41:00.439555"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.4ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Reynaldo Leuschke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.sh94q7bAHfsEp4wLLw9w.s7fTA8uL./w2YEPJbB8gGa/WurI6G1i"], ["created_at", "2020-05-05 18:41:00.442646"], ["updated_at", "2020-05-05 18:41:00.442646"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lynsey Fay V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2D4bhTqzljrnR4ciXX26Z.5gps175up03IdGvZQaQpzA6TMvs6KUO"], ["created_at", "2020-05-05 18:41:00.449019"], ["updated_at", "2020-05-05 18:41:00.449019"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ambrose Kozey"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$IQiinUV.9.Nbw1TAY9GDYe5m4de.qHmc2bMcuu76pzBL74aEXXusS"], ["created_at", "2020-05-05 18:41:00.452771"], ["updated_at", "2020-05-05 18:41:00.452771"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lupe Beer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$AtojzGXeKoyRkNlmTrTid.mxaZWOhX1ACVcwH3oCds2ibPsJdLOwC"], ["created_at", "2020-05-05 18:41:00.455821"], ["updated_at", "2020-05-05 18:41:00.455821"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alpha Kilback"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ijEl0m5sc/5rhywsuniiruYN52JBvPAZnxypBkGYjhIxK/CO8jcja"], ["created_at", "2020-05-05 18:41:00.458651"], ["updated_at", "2020-05-05 18:41:00.458651"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:41:00 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (4.81ms) +Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.2ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:41:00 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Sheyla", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "email"=>"shey@mail.com"} +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sheyla"], ["email", "shey@mail.com"], ["password_digest", "$2a$04$t1fP8X321FGs8Rb02.JLaeTlbtWtk2hO/m0M2JVYnvD2k/23cgxu2"], ["created_at", "2020-05-05 18:41:00.472980"], ["updated_at", "2020-05-05 18:41:00.472980"], ["picture", "https://joeschmoe.io/api/v1/jana"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.59ms) +Completed 201 Created in 7ms (Views: 1.2ms | ActiveRecord: 0.4ms | Allocations: 1329) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.9ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Ozzie Kutch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$MAD8CmaNrVMe/KhGYUkD3..83l68eoQtPg/O2Uk1q1ELaUCqJtTlO"], ["created_at", "2020-05-05 18:41:00.490996"], ["updated_at", "2020-05-05 18:41:00.490996"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Celine Nienow MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$I/IO4.1mdf0zgYPxWQoc8e9e9Z/S7LJtMUUP.v9T/JJ3vmjDLHHVC"], ["created_at", "2020-05-05 18:41:00.496685"], ["updated_at", "2020-05-05 18:41:00.496685"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Madelaine Pouros"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$bIvdD1XEhQp3.Doi./e4IO/PB0rvzBO7aGL1hxfkA0TKkdaXWAyca"], ["created_at", "2020-05-05 18:41:00.499715"], ["updated_at", "2020-05-05 18:41:00.499715"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Julieta Wyman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rUzqo8bW4DPVwqroZG2iTeUMZjbIH6tGplwl3z.busMvuFs4UfQay"], ["created_at", "2020-05-05 18:41:00.502783"], ["updated_at", "2020-05-05 18:41:00.502783"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Scottie Corwin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/2Yhli6WYuVDgT1d8qHBXO6J2/eZfVxUKZERHmwIN22updLVN4FlK"], ["created_at", "2020-05-05 18:41:00.507556"], ["updated_at", "2020-05-05 18:41:00.507556"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ricki Schmitt"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OHbVQj65VK6J5.fZYvMwS.KV5wRTplAFZ8iRMkr4fj1e/9ePLulSm"], ["created_at", "2020-05-05 18:41:00.511513"], ["updated_at", "2020-05-05 18:41:00.511513"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Lauri Batz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mhcW/tQQCwahE9KcgBuN2OYK1gDSwztx0pOB/h9drnotgkcJXIYNK"], ["created_at", "2020-05-05 18:41:00.515203"], ["updated_at", "2020-05-05 18:41:00.515203"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Valentine Glover"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$r72.I4hHaXj9YMDQIR5UpOPZI18SbVli3PifmiUgudwSTdOytP71K"], ["created_at", "2020-05-05 18:41:00.519145"], ["updated_at", "2020-05-05 18:41:00.519145"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shad Pfannerstill"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0yeVA2/p71.udK8CCBxXeeB82QIBiFjPw0K3yeTNduHpExdCQZjNO"], ["created_at", "2020-05-05 18:41:00.522555"], ["updated_at", "2020-05-05 18:41:00.522555"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.4ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bud Hermann PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kNOe3eI7gkud6Ew/n3AUy.xq4XFARuJScgua1I1geraCQ2Vcv7sXS"], ["created_at", "2020-05-05 18:41:00.527559"], ["updated_at", "2020-05-05 18:41:00.527559"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:41:00 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.37ms) +Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:41:00 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Foobar"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 401 Unauthorized in 4ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 1817) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leslie Dibbert V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5EOxk/8npGdHVMCDJ.krleur3LkXp.WKoypGzev8r1L/TnEEYFutC"], ["created_at", "2020-05-05 18:41:00.553682"], ["updated_at", "2020-05-05 18:41:00.553682"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Andrew Johnson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nk.58SX/a03Mp4.k8b8BQOkrUV0Ss61j94PxaOVFf6hH7GMz1muH."], ["created_at", "2020-05-05 18:41:00.558383"], ["updated_at", "2020-05-05 18:41:00.558383"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Santo Fritsch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$yCgSU/92sA.WWAmqzvXCwu60zLWCfxnkub7kg8fWvbkkdaxkwT.gK"], ["created_at", "2020-05-05 18:41:00.562327"], ["updated_at", "2020-05-05 18:41:00.562327"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Armand Feest"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kFCV2Pp/F8lVZVsBqBQuRekTRq7VG0NKQ1G4gvoS9cU4ghIkhsmYG"], ["created_at", "2020-05-05 18:41:00.565767"], ["updated_at", "2020-05-05 18:41:00.565767"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Quinn Kulas"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pP27WqSTC9/XVi7NOWIYKut3E91y5V9IF6JQ.QNaD2Sjnz1zdQ.OS"], ["created_at", "2020-05-05 18:41:00.569000"], ["updated_at", "2020-05-05 18:41:00.569000"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Brice Homenick"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0m8gQgdp6QVorOS.JWmr3ukNBva6sVYTV1lEF.EFT41Z67fJOP/am"], ["created_at", "2020-05-05 18:41:00.571905"], ["updated_at", "2020-05-05 18:41:00.571905"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sadie Towne"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5yl.YmEnijGgiUfIzaV.ouOaxBhqDPboisbDNd4uTutN.fGAPpOKK"], ["created_at", "2020-05-05 18:41:00.574615"], ["updated_at", "2020-05-05 18:41:00.574615"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Toshia Schumm"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7vKDWKulStOIZt7yOoOvhO4SGcVldlL0s7UsoryXI7.CZpEirfMFe"], ["created_at", "2020-05-05 18:41:00.577876"], ["updated_at", "2020-05-05 18:41:00.577876"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Armida Reinger"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$wBUFOsf1SZ85WY7jFSd7V.kpcGcHzbTqLGMX9w3T4SFGxQyBahRVa"], ["created_at", "2020-05-05 18:41:00.582142"], ["updated_at", "2020-05-05 18:41:00.582142"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Keira Howe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$yjmyf3bzKlv6QRyfb/QPj.fOkxG5kaBvig1N/gwvvuA4QqChDoc2a"], ["created_at", "2020-05-05 18:41:00.586956"], ["updated_at", "2020-05-05 18:41:00.586956"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:41:00 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.42ms) +Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:41:00 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 401 Unauthorized in 3ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 1597) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (4.0ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (148.7ms) DELETE FROM "meetings"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) [31mDELETE FROM sqlite_sequence where name = 'meetings'; +  (90.8ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (120.3ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (98.1ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (105.8ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (88.6ms) DELETE FROM "messagems"; +  (0.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (91.1ms) DELETE FROM "users"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alishia Wyman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tvA7D5ADfrahBL9a14Bsned.FxF4XFpLoeXkEiGsdDSgK.dMIKswu"], ["created_at", "2020-05-05 18:41:22.251019"], ["updated_at", "2020-05-05 18:41:22.251019"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "error"], ["description", "Exercitationem dolores iusto quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:22.268683"], ["updated_at", "2020-05-05 18:41:22.268683"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore quia qui sunt?"], ["description", "Distinctio et fuga nulla."], ["date", "2020-05-06 18:41:22.302229"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.338587"], ["updated_at", "2020-05-05 18:41:22.338587"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta ut necessitatibus architecto?"], ["description", "Omnis possimus accusantium cumque."], ["date", "2020-05-06 18:41:22.340848"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.341807"], ["updated_at", "2020-05-05 18:41:22.341807"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In ut debitis quis?"], ["description", "Quas quidem sunt tempora."], ["date", "2020-05-06 18:41:22.343205"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.344518"], ["updated_at", "2020-05-05 18:41:22.344518"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint sapiente vel qui?"], ["description", "Vel aspernatur sit distinctio."], ["date", "2020-05-06 18:41:22.345935"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.346723"], ["updated_at", "2020-05-05 18:41:22.346723"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit sit quam fuga?"], ["description", "Impedit sint perferendis assumenda."], ["date", "2020-05-06 18:41:22.347895"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.348596"], ["updated_at", "2020-05-05 18:41:22.348596"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit quas ad aliquid?"], ["description", "Voluptatem neque tenetur velit."], ["date", "2020-05-06 18:41:22.349766"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.350444"], ["updated_at", "2020-05-05 18:41:22.350444"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur animi aut et?"], ["description", "Eveniet laudantium assumenda vitae."], ["date", "2020-05-06 18:41:22.351591"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.352265"], ["updated_at", "2020-05-05 18:41:22.352265"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo sapiente sed inventore?"], ["description", "Minus occaecati quam accusantium."], ["date", "2020-05-06 18:41:22.353769"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.355115"], ["updated_at", "2020-05-05 18:41:22.355115"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt quia nemo rem?"], ["description", "Vitae sint qui et."], ["date", "2020-05-06 18:41:22.356694"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.357449"], ["updated_at", "2020-05-05 18:41:22.357449"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae quidem doloribus nam?"], ["description", "Possimus consectetur minima et."], ["date", "2020-05-06 18:41:22.359238"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.360118"], ["updated_at", "2020-05-05 18:41:22.360118"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum numquam repellendus aut?"], ["description", "Ullam ratione alias non."], ["date", "2020-05-06 18:41:22.362096"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.363021"], ["updated_at", "2020-05-05 18:41:22.363021"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et expedita molestiae et?"], ["description", "Minima accusantium expedita asperiores."], ["date", "2020-05-06 18:41:22.364331"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.365047"], ["updated_at", "2020-05-05 18:41:22.365047"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit quia illum est?"], ["description", "Maiores autem illo autem."], ["date", "2020-05-06 18:41:22.366284"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.367001"], ["updated_at", "2020-05-05 18:41:22.367001"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis aliquid ut odio?"], ["description", "Consequuntur est id porro."], ["date", "2020-05-06 18:41:22.368217"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.368911"], ["updated_at", "2020-05-05 18:41:22.368911"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius earum et est?"], ["description", "Odio fugit vitae quis."], ["date", "2020-05-06 18:41:22.370145"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.370864"], ["updated_at", "2020-05-05 18:41:22.370864"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore necessitatibus excepturi vel?"], ["description", "Animi dolorem iure quos."], ["date", "2020-05-06 18:41:22.372257"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.373085"], ["updated_at", "2020-05-05 18:41:22.373085"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam et expedita porro?"], ["description", "Corrupti consequatur accusamus sed."], ["date", "2020-05-06 18:41:22.374967"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.376035"], ["updated_at", "2020-05-05 18:41:22.376035"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia velit velit error?"], ["description", "Corrupti quia cumque magnam."], ["date", "2020-05-06 18:41:22.378106"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.379163"], ["updated_at", "2020-05-05 18:41:22.379163"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque est fugiat laboriosam?"], ["description", "Nostrum molestiae voluptatem itaque."], ["date", "2020-05-06 18:41:22.380587"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.381382"], ["updated_at", "2020-05-05 18:41:22.381382"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In facilis quibusdam dolorum?"], ["description", "Totam sunt ut odit."], ["date", "2020-05-06 18:41:22.382873"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.383764"], ["updated_at", "2020-05-05 18:41:22.383764"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:41:22 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.4ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.77ms) +Completed 200 OK in 35ms (Views: 16.2ms | ActiveRecord: 0.6ms | Allocations: 8638) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Brooks Nienow"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5N88xHXTY1c41vYpX43kOuTb1LzhkDIBsBWMJ15HklnsXEWVeEjfO"], ["created_at", "2020-05-05 18:41:22.472267"], ["updated_at", "2020-05-05 18:41:22.472267"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Ipsum et quo sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:22.476952"], ["updated_at", "2020-05-05 18:41:22.476952"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem ratione temporibus nulla?"], ["description", "Doloribus omnis consequuntur quaerat."], ["date", "2020-05-06 18:41:22.479043"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.480071"], ["updated_at", "2020-05-05 18:41:22.480071"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas sapiente qui laboriosam?"], ["description", "Consequatur exercitationem veritatis magni."], ["date", "2020-05-06 18:41:22.481725"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.483132"], ["updated_at", "2020-05-05 18:41:22.483132"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non odio dolore dolor?"], ["description", "Iure id minima atque."], ["date", "2020-05-06 18:41:22.484716"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.485580"], ["updated_at", "2020-05-05 18:41:22.485580"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora quas blanditiis molestiae?"], ["description", "Accusamus atque provident est."], ["date", "2020-05-06 18:41:22.486822"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.487520"], ["updated_at", "2020-05-05 18:41:22.487520"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil molestiae natus officiis?"], ["description", "Vitae animi maiores explicabo."], ["date", "2020-05-06 18:41:22.488699"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.489416"], ["updated_at", "2020-05-05 18:41:22.489416"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae iure suscipit ut?"], ["description", "Accusamus rerum corrupti iure."], ["date", "2020-05-06 18:41:22.490600"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.491279"], ["updated_at", "2020-05-05 18:41:22.491279"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum accusantium exercitationem temporibus?"], ["description", "Sit dolorem perspiciatis vel."], ["date", "2020-05-06 18:41:22.492472"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.493555"], ["updated_at", "2020-05-05 18:41:22.493555"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem voluptatem delectus amet?"], ["description", "Quis sapiente explicabo ex."], ["date", "2020-05-06 18:41:22.495648"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.496953"], ["updated_at", "2020-05-05 18:41:22.496953"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi ipsum doloribus sapiente?"], ["description", "Ipsam eos est magni."], ["date", "2020-05-06 18:41:22.498341"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.499046"], ["updated_at", "2020-05-05 18:41:22.499046"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit commodi quas cum?"], ["description", "Officiis eligendi eius minima."], ["date", "2020-05-06 18:41:22.500878"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.501691"], ["updated_at", "2020-05-05 18:41:22.501691"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque laborum non omnis?"], ["description", "Enim laborum optio consequatur."], ["date", "2020-05-06 18:41:22.503000"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.503771"], ["updated_at", "2020-05-05 18:41:22.503771"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut facilis animi sint?"], ["description", "Quia et magni voluptatibus."], ["date", "2020-05-06 18:41:22.505055"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.505851"], ["updated_at", "2020-05-05 18:41:22.505851"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum consequatur qui suscipit?"], ["description", "Aut aspernatur occaecati cum."], ["date", "2020-05-06 18:41:22.507086"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.507801"], ["updated_at", "2020-05-05 18:41:22.507801"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima sed sapiente molestiae?"], ["description", "Nostrum quo et qui."], ["date", "2020-05-06 18:41:22.508993"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.510084"], ["updated_at", "2020-05-05 18:41:22.510084"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed quaerat tempora asperiores?"], ["description", "Omnis nam inventore voluptates."], ["date", "2020-05-06 18:41:22.511913"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.512801"], ["updated_at", "2020-05-05 18:41:22.512801"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia dolores provident eos?"], ["description", "Sit delectus nisi quis."], ["date", "2020-05-06 18:41:22.514036"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.515112"], ["updated_at", "2020-05-05 18:41:22.515112"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit illum qui quidem?"], ["description", "Ut aut voluptatem quam."], ["date", "2020-05-06 18:41:22.516849"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.517733"], ["updated_at", "2020-05-05 18:41:22.517733"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque animi vel mollitia?"], ["description", "Inventore et maxime cupiditate."], ["date", "2020-05-06 18:41:22.519012"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.519810"], ["updated_at", "2020-05-05 18:41:22.519810"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum omnis officia nulla?"], ["description", "Dignissimos quidem libero autem."], ["date", "2020-05-06 18:41:22.521059"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.522435"], ["updated_at", "2020-05-05 18:41:22.522435"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus minus maiores voluptatem?"], ["description", "Neque impedit accusamus aliquam."], ["date", "2020-05-06 18:41:22.524743"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.526363"], ["updated_at", "2020-05-05 18:41:22.526363"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:41:22 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (15.48ms) +Completed 200 OK in 21ms (Views: 18.9ms | ActiveRecord: 0.5ms | Allocations: 5518) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Valentin Stanton"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tLG4yTMkUGz.vy8TBax77O3mYCh.wmIrTUtEPmFsYCLglZ1bddp3C"], ["created_at", "2020-05-05 18:41:22.566416"], ["updated_at", "2020-05-05 18:41:22.566416"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nemo"], ["description", "Esse quis nihil nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:22.570166"], ["updated_at", "2020-05-05 18:41:22.570166"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem omnis repellat dolores?"], ["description", "Optio distinctio fugiat cumque."], ["date", "2020-05-06 18:41:22.571637"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.572593"], ["updated_at", "2020-05-05 18:41:22.572593"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo dicta blanditiis nobis?"], ["description", "Omnis suscipit officiis culpa."], ["date", "2020-05-06 18:41:22.574158"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.576336"], ["updated_at", "2020-05-05 18:41:22.576336"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores et sapiente veritatis?"], ["description", "Eum veritatis minima aut."], ["date", "2020-05-06 18:41:22.579236"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.580187"], ["updated_at", "2020-05-05 18:41:22.580187"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla voluptatem alias quia?"], ["description", "Amet dolore modi perferendis."], ["date", "2020-05-06 18:41:22.581410"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.582127"], ["updated_at", "2020-05-05 18:41:22.582127"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid voluptatem ea autem?"], ["description", "Nesciunt architecto distinctio rerum."], ["date", "2020-05-06 18:41:22.583387"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.584082"], ["updated_at", "2020-05-05 18:41:22.584082"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia aut ut enim?"], ["description", "Unde corrupti deserunt sunt."], ["date", "2020-05-06 18:41:22.585451"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.586271"], ["updated_at", "2020-05-05 18:41:22.586271"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id iusto est possimus?"], ["description", "Eveniet delectus temporibus ipsam."], ["date", "2020-05-06 18:41:22.587444"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.588156"], ["updated_at", "2020-05-05 18:41:22.588156"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum nesciunt ullam reprehenderit?"], ["description", "Quos cupiditate beatae vel."], ["date", "2020-05-06 18:41:22.589404"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.590149"], ["updated_at", "2020-05-05 18:41:22.590149"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis qui unde perferendis?"], ["description", "Quis possimus magnam eveniet."], ["date", "2020-05-06 18:41:22.610955"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.612380"], ["updated_at", "2020-05-05 18:41:22.612380"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum culpa earum voluptates?"], ["description", "Tempore sed qui repudiandae."], ["date", "2020-05-06 18:41:22.615085"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.616566"], ["updated_at", "2020-05-05 18:41:22.616566"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum et architecto eius?"], ["description", "Velit qui iure rem."], ["date", "2020-05-06 18:41:22.618174"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.619021"], ["updated_at", "2020-05-05 18:41:22.619021"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab inventore cumque laudantium?"], ["description", "Eos libero atque ratione."], ["date", "2020-05-06 18:41:22.620253"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.620959"], ["updated_at", "2020-05-05 18:41:22.620959"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam laboriosam voluptatem magni?"], ["description", "Temporibus doloribus unde nemo."], ["date", "2020-05-06 18:41:22.622183"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.622872"], ["updated_at", "2020-05-05 18:41:22.622872"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur nihil aut aliquam?"], ["description", "Aut labore cum quisquam."], ["date", "2020-05-06 18:41:22.624103"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.624812"], ["updated_at", "2020-05-05 18:41:22.624812"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut labore non necessitatibus?"], ["description", "Nihil et perferendis consequuntur."], ["date", "2020-05-06 18:41:22.626579"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.627881"], ["updated_at", "2020-05-05 18:41:22.627881"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et corporis fugiat rerum?"], ["description", "Beatae nihil repellat libero."], ["date", "2020-05-06 18:41:22.629309"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.630032"], ["updated_at", "2020-05-05 18:41:22.630032"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum enim suscipit culpa?"], ["description", "Ut aut aut neque."], ["date", "2020-05-06 18:41:22.631176"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.631875"], ["updated_at", "2020-05-05 18:41:22.631875"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur ut neque consequatur?"], ["description", "Molestias non laborum eligendi."], ["date", "2020-05-06 18:41:22.633018"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.633713"], ["updated_at", "2020-05-05 18:41:22.633713"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae quaerat aut similique?"], ["description", "Nostrum impedit eum architecto."], ["date", "2020-05-06 18:41:22.635171"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.636610"], ["updated_at", "2020-05-05 18:41:22.636610"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut dolorum consectetur quis?"], ["description", "Quasi distinctio cumque harum."], ["date", "2020-05-06 18:41:22.638045"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.638845"], ["updated_at", "2020-05-05 18:41:22.638845"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:41:22 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms) +Completed 404 Not Found in 6ms (Views: 5.2ms | ActiveRecord: 0.1ms | Allocations: 866) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Wanetta Champlin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vcL0GCsAGS1lsKi2NoQ/Ser8eUKrI6G592f7CV3S6T0E091FwDM/y"], ["created_at", "2020-05-05 18:41:22.659640"], ["updated_at", "2020-05-05 18:41:22.659640"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eaque"], ["description", "Omnis culpa voluptate magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:22.663542"], ["updated_at", "2020-05-05 18:41:22.663542"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis voluptatum atque hic?"], ["description", "Deserunt earum esse dolorum."], ["date", "2020-05-06 18:41:22.665400"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.666353"], ["updated_at", "2020-05-05 18:41:22.666353"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem assumenda ut fuga?"], ["description", "Id quis quia quos."], ["date", "2020-05-06 18:41:22.667764"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.668480"], ["updated_at", "2020-05-05 18:41:22.668480"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam repudiandae maxime dolores?"], ["description", "Nulla laboriosam corrupti incidunt."], ["date", "2020-05-06 18:41:22.669673"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.670375"], ["updated_at", "2020-05-05 18:41:22.670375"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe est voluptatem fuga?"], ["description", "Repellendus veniam amet quaerat."], ["date", "2020-05-06 18:41:22.671597"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.672295"], ["updated_at", "2020-05-05 18:41:22.672295"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus ea recusandae sit?"], ["description", "Veniam quaerat ut est."], ["date", "2020-05-06 18:41:22.673448"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.674128"], ["updated_at", "2020-05-05 18:41:22.674128"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut nulla voluptates laboriosam?"], ["description", "Magnam explicabo sit et."], ["date", "2020-05-06 18:41:22.675966"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.678423"], ["updated_at", "2020-05-05 18:41:22.678423"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio voluptas non in?"], ["description", "Beatae et mollitia est."], ["date", "2020-05-06 18:41:22.680313"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.681315"], ["updated_at", "2020-05-05 18:41:22.681315"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt autem beatae harum?"], ["description", "Qui aspernatur illum omnis."], ["date", "2020-05-06 18:41:22.682628"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.683304"], ["updated_at", "2020-05-05 18:41:22.683304"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates facere et odit?"], ["description", "Mollitia doloribus totam labore."], ["date", "2020-05-06 18:41:22.684462"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.685433"], ["updated_at", "2020-05-05 18:41:22.685433"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia et accusantium culpa?"], ["description", "Modi nostrum soluta itaque."], ["date", "2020-05-06 18:41:22.687435"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.688258"], ["updated_at", "2020-05-05 18:41:22.688258"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum est praesentium dolor?"], ["description", "Voluptatem sint iusto assumenda."], ["date", "2020-05-06 18:41:22.689561"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.690261"], ["updated_at", "2020-05-05 18:41:22.690261"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et officiis deserunt veritatis?"], ["description", "Quasi maiores ut ut."], ["date", "2020-05-06 18:41:22.691495"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.692175"], ["updated_at", "2020-05-05 18:41:22.692175"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum est repellendus atque?"], ["description", "Ullam qui sed facilis."], ["date", "2020-05-06 18:41:22.693824"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.694848"], ["updated_at", "2020-05-05 18:41:22.694848"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut consequatur commodi est?"], ["description", "Eos non iusto molestiae."], ["date", "2020-05-06 18:41:22.696705"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.697873"], ["updated_at", "2020-05-05 18:41:22.697873"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt quidem voluptas quia?"], ["description", "Nostrum et neque cupiditate."], ["date", "2020-05-06 18:41:22.699317"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.700034"], ["updated_at", "2020-05-05 18:41:22.700034"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque voluptates odio nam?"], ["description", "Eaque odio optio qui."], ["date", "2020-05-06 18:41:22.701218"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.701913"], ["updated_at", "2020-05-05 18:41:22.701913"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore possimus modi aut?"], ["description", "Laboriosam minus est eum."], ["date", "2020-05-06 18:41:22.703063"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.703737"], ["updated_at", "2020-05-05 18:41:22.703737"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni veniam minima sapiente?"], ["description", "Consequatur explicabo nulla et."], ["date", "2020-05-06 18:41:22.705017"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.705897"], ["updated_at", "2020-05-05 18:41:22.705897"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti veniam animi qui?"], ["description", "Voluptas reprehenderit dolores illo."], ["date", "2020-05-06 18:41:22.707441"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.708424"], ["updated_at", "2020-05-05 18:41:22.708424"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates quidem et aliquam?"], ["description", "Repellendus asperiores nihil nostrum."], ["date", "2020-05-06 18:41:22.710569"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.711523"], ["updated_at", "2020-05-05 18:41:22.711523"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:41:22 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 509) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Barney Mueller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$zwa6u1yeBfE0NtsZ6y3CQuPoMZIDQJYaujWlzut5p2MVt1KmMyvza"], ["created_at", "2020-05-05 18:41:22.730517"], ["updated_at", "2020-05-05 18:41:22.730517"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Asperiores deleniti architecto qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:22.733424"], ["updated_at", "2020-05-05 18:41:22.733424"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia consequatur soluta aut?"], ["description", "Omnis voluptatem libero perspiciatis."], ["date", "2020-05-06 18:41:22.734970"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.736238"], ["updated_at", "2020-05-05 18:41:22.736238"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui aliquam blanditiis ad?"], ["description", "At omnis ducimus non."], ["date", "2020-05-06 18:41:22.738329"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.739810"], ["updated_at", "2020-05-05 18:41:22.739810"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur enim omnis id?"], ["description", "Quidem aut modi ut."], ["date", "2020-05-06 18:41:22.741421"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.742960"], ["updated_at", "2020-05-05 18:41:22.742960"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo iure quod dolor?"], ["description", "Nemo eveniet dolor fugit."], ["date", "2020-05-06 18:41:22.744658"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.745525"], ["updated_at", "2020-05-05 18:41:22.745525"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum animi quis ut?"], ["description", "Quis consectetur aut quam."], ["date", "2020-05-06 18:41:22.746762"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.747466"], ["updated_at", "2020-05-05 18:41:22.747466"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit aliquam et accusantium?"], ["description", "Ipsa quae beatae voluptatem."], ["date", "2020-05-06 18:41:22.748604"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.749297"], ["updated_at", "2020-05-05 18:41:22.749297"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem aliquam sed qui?"], ["description", "Itaque et quidem tempora."], ["date", "2020-05-06 18:41:22.750427"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.751110"], ["updated_at", "2020-05-05 18:41:22.751110"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam assumenda voluptas necessitatibus?"], ["description", "Optio earum nulla quis."], ["date", "2020-05-06 18:41:22.752274"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.752994"], ["updated_at", "2020-05-05 18:41:22.752994"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur rerum fuga quia?"], ["description", "Aliquam magni doloribus quos."], ["date", "2020-05-06 18:41:22.754183"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.754882"], ["updated_at", "2020-05-05 18:41:22.754882"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt est quasi sed?"], ["description", "Perferendis illo asperiores similique."], ["date", "2020-05-06 18:41:22.757786"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.759686"], ["updated_at", "2020-05-05 18:41:22.759686"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui labore blanditiis enim?"], ["description", "Omnis earum veniam est."], ["date", "2020-05-06 18:41:22.761839"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.762744"], ["updated_at", "2020-05-05 18:41:22.762744"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet laboriosam et vitae?"], ["description", "Eius et suscipit dolorum."], ["date", "2020-05-06 18:41:22.764044"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.764732"], ["updated_at", "2020-05-05 18:41:22.764732"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora et ipsam consequatur?"], ["description", "Expedita quo quo qui."], ["date", "2020-05-06 18:41:22.765921"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.766647"], ["updated_at", "2020-05-05 18:41:22.766647"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem non assumenda sunt?"], ["description", "Reprehenderit unde magni voluptas."], ["date", "2020-05-06 18:41:22.767853"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.768531"], ["updated_at", "2020-05-05 18:41:22.768531"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi vitae nisi non?"], ["description", "Aut aliquam impedit ut."], ["date", "2020-05-06 18:41:22.769713"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.770364"], ["updated_at", "2020-05-05 18:41:22.770364"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut distinctio corrupti mollitia?"], ["description", "Sed possimus saepe omnis."], ["date", "2020-05-06 18:41:22.771475"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.772132"], ["updated_at", "2020-05-05 18:41:22.772132"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi facere et error?"], ["description", "Repellat sed et iure."], ["date", "2020-05-06 18:41:22.773278"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.773954"], ["updated_at", "2020-05-05 18:41:22.773954"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita praesentium et voluptas?"], ["description", "Est ab consequatur saepe."], ["date", "2020-05-06 18:41:22.775286"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.776902"], ["updated_at", "2020-05-05 18:41:22.776902"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam eum a corrupti?"], ["description", "Nihil blanditiis velit maiores."], ["date", "2020-05-06 18:41:22.778988"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.779910"], ["updated_at", "2020-05-05 18:41:22.779910"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In autem unde tenetur?"], ["description", "Sit voluptas quis sit."], ["date", "2020-05-06 18:41:22.781290"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.781978"], ["updated_at", "2020-05-05 18:41:22.781978"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:41:22 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.67ms) +Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.2ms | Allocations: 1086) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Heriberto Abbott"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jTMK2r4QWcdAL8M1C.dxEebB847Xk6XE/prahRx2uo/TkRN6QLySy"], ["created_at", "2020-05-05 18:41:22.800279"], ["updated_at", "2020-05-05 18:41:22.800279"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Dolorem tempore nostrum provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:22.803159"], ["updated_at", "2020-05-05 18:41:22.803159"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam occaecati fuga quos?"], ["description", "Sit provident ut at."], ["date", "2020-05-06 18:41:22.804632"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.805638"], ["updated_at", "2020-05-05 18:41:22.805638"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed eos earum possimus?"], ["description", "Beatae magni non cum."], ["date", "2020-05-06 18:41:22.806973"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.807744"], ["updated_at", "2020-05-05 18:41:22.807744"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum et cupiditate tempora?"], ["description", "Distinctio atque in accusantium."], ["date", "2020-05-06 18:41:22.809411"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.810631"], ["updated_at", "2020-05-05 18:41:22.810631"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At aut repudiandae qui?"], ["description", "Nulla consectetur rerum fugiat."], ["date", "2020-05-06 18:41:22.811951"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.812677"], ["updated_at", "2020-05-05 18:41:22.812677"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ducimus molestias id nemo?"], ["description", "Alias quia qui voluptas."], ["date", "2020-05-06 18:41:22.813847"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.814597"], ["updated_at", "2020-05-05 18:41:22.814597"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur consequatur nemo nihil?"], ["description", "Unde cumque quod velit."], ["date", "2020-05-06 18:41:22.815953"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.817694"], ["updated_at", "2020-05-05 18:41:22.817694"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa dolor quo et?"], ["description", "Ipsam et aut deleniti."], ["date", "2020-05-06 18:41:22.819573"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.821031"], ["updated_at", "2020-05-05 18:41:22.821031"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit amet debitis et?"], ["description", "Et nostrum voluptatem voluptatem."], ["date", "2020-05-06 18:41:22.822478"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.823234"], ["updated_at", "2020-05-05 18:41:22.823234"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum praesentium et autem?"], ["description", "At sint magnam nemo."], ["date", "2020-05-06 18:41:22.824390"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.825142"], ["updated_at", "2020-05-05 18:41:22.825142"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum amet velit et?"], ["description", "Ut optio et explicabo."], ["date", "2020-05-06 18:41:22.827433"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.828686"], ["updated_at", "2020-05-05 18:41:22.828686"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis aperiam exercitationem aliquam?"], ["description", "Tempore accusamus non cupiditate."], ["date", "2020-05-06 18:41:22.830136"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.830905"], ["updated_at", "2020-05-05 18:41:22.830905"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi deleniti rerum dolorum?"], ["description", "Minima incidunt libero cumque."], ["date", "2020-05-06 18:41:22.832248"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.832971"], ["updated_at", "2020-05-05 18:41:22.832971"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus qui placeat cupiditate?"], ["description", "Aut non et vel."], ["date", "2020-05-06 18:41:22.834111"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.834806"], ["updated_at", "2020-05-05 18:41:22.834806"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et optio expedita deserunt?"], ["description", "Quia consectetur cupiditate ex."], ["date", "2020-05-06 18:41:22.836070"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.837196"], ["updated_at", "2020-05-05 18:41:22.837196"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum alias sequi corrupti?"], ["description", "Aut tempore labore accusamus."], ["date", "2020-05-06 18:41:22.838922"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.839785"], ["updated_at", "2020-05-05 18:41:22.839785"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui quod eum eum?"], ["description", "Et illum delectus iusto."], ["date", "2020-05-06 18:41:22.841068"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.841808"], ["updated_at", "2020-05-05 18:41:22.841808"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae dolore molestiae odit?"], ["description", "Voluptatem fuga repellat laboriosam."], ["date", "2020-05-06 18:41:22.843425"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.844773"], ["updated_at", "2020-05-05 18:41:22.844773"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem suscipit qui adipisci?"], ["description", "Voluptas quo eos iusto."], ["date", "2020-05-06 18:41:22.846260"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.846993"], ["updated_at", "2020-05-05 18:41:22.846993"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione odit officiis optio?"], ["description", "Quia et accusamus assumenda."], ["date", "2020-05-06 18:41:22.848134"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.848850"], ["updated_at", "2020-05-05 18:41:22.848850"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae ad sit delectus?"], ["description", "Repudiandae velit et voluptatum."], ["date", "2020-05-06 18:41:22.850020"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.850738"], ["updated_at", "2020-05-05 18:41:22.850738"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:41:22 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.82ms) +Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.2ms | Allocations: 1057) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Ronnie Gleichner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kNOtsPVwjSAnVBZ6H5S9MuR7PlsWz9YGX9kyEbF7D9cTRtYmGm.SG"], ["created_at", "2020-05-05 18:41:22.868595"], ["updated_at", "2020-05-05 18:41:22.868595"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quaerat"], ["description", "Sit sed aut amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:22.871562"], ["updated_at", "2020-05-05 18:41:22.871562"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum id voluptatem neque?"], ["description", "Excepturi assumenda veritatis id."], ["date", "2020-05-06 18:41:22.873003"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.873950"], ["updated_at", "2020-05-05 18:41:22.873950"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta est vel ullam?"], ["description", "Quaerat similique vero minus."], ["date", "2020-05-06 18:41:22.875620"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.877660"], ["updated_at", "2020-05-05 18:41:22.877660"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor soluta distinctio illum?"], ["description", "Tempora velit distinctio sunt."], ["date", "2020-05-06 18:41:22.879639"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.881118"], ["updated_at", "2020-05-05 18:41:22.881118"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae dolorem veritatis reiciendis?"], ["description", "Tempora ut quis corrupti."], ["date", "2020-05-06 18:41:22.882626"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.883400"], ["updated_at", "2020-05-05 18:41:22.883400"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo eveniet ut sint?"], ["description", "Odio eos et fugit."], ["date", "2020-05-06 18:41:22.884552"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.885262"], ["updated_at", "2020-05-05 18:41:22.885262"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod harum praesentium in?"], ["description", "Voluptas alias asperiores autem."], ["date", "2020-05-06 18:41:22.886492"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.887188"], ["updated_at", "2020-05-05 18:41:22.887188"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut maxime ullam tempore?"], ["description", "Illo sapiente ipsa voluptatibus."], ["date", "2020-05-06 18:41:22.888325"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.888993"], ["updated_at", "2020-05-05 18:41:22.888993"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur rerum et ea?"], ["description", "Molestias iste consequatur dolorem."], ["date", "2020-05-06 18:41:22.890094"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.890846"], ["updated_at", "2020-05-05 18:41:22.890846"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non fugit est temporibus?"], ["description", "Odio ut rem voluptas."], ["date", "2020-05-06 18:41:22.892412"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.893638"], ["updated_at", "2020-05-05 18:41:22.893638"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui inventore ut ut?"], ["description", "Est provident explicabo doloremque."], ["date", "2020-05-06 18:41:22.895841"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.896974"], ["updated_at", "2020-05-05 18:41:22.896974"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint libero consequatur similique?"], ["description", "Voluptatem neque architecto veritatis."], ["date", "2020-05-06 18:41:22.898911"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.899883"], ["updated_at", "2020-05-05 18:41:22.899883"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut nihil neque voluptate?"], ["description", "Quibusdam distinctio sapiente cupiditate."], ["date", "2020-05-06 18:41:22.901180"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.901886"], ["updated_at", "2020-05-05 18:41:22.901886"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequuntur sequi laboriosam ratione?"], ["description", "Quas eligendi incidunt suscipit."], ["date", "2020-05-06 18:41:22.903100"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.903851"], ["updated_at", "2020-05-05 18:41:22.903851"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem repellat cum iure?"], ["description", "Ut qui adipisci excepturi."], ["date", "2020-05-06 18:41:22.905233"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.906042"], ["updated_at", "2020-05-05 18:41:22.906042"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit dolore et unde?"], ["description", "Animi veritatis error qui."], ["date", "2020-05-06 18:41:22.907428"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.908137"], ["updated_at", "2020-05-05 18:41:22.908137"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis ratione ea fuga?"], ["description", "Quaerat consequatur reiciendis dicta."], ["date", "2020-05-06 18:41:22.909265"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.910160"], ["updated_at", "2020-05-05 18:41:22.910160"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A asperiores temporibus assumenda?"], ["description", "Et dolor quia officia."], ["date", "2020-05-06 18:41:22.911813"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.912657"], ["updated_at", "2020-05-05 18:41:22.912657"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est numquam asperiores inventore?"], ["description", "Eligendi culpa sapiente sint."], ["date", "2020-05-06 18:41:22.913791"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.914495"], ["updated_at", "2020-05-05 18:41:22.914495"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore labore autem quia?"], ["description", "Et nostrum ratione ut."], ["date", "2020-05-06 18:41:22.915782"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.916659"], ["updated_at", "2020-05-05 18:41:22.916659"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti harum consequatur quaerat?"], ["description", "Quibusdam esse consequuntur voluptas."], ["date", "2020-05-06 18:41:22.918765"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.919719"], ["updated_at", "2020-05-05 18:41:22.919719"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:41:22 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["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: 884) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lorretta Medhurst"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.aPlvnqQrdfYy8JBdDb1M.JhHZMsQoezVHAffMQ.TKVixAofjObEy"], ["created_at", "2020-05-05 18:41:22.935811"], ["updated_at", "2020-05-05 18:41:22.935811"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequuntur"], ["description", "Facilis eius unde eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:22.939427"], ["updated_at", "2020-05-05 18:41:22.939427"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate dolorem autem nihil?"], ["description", "Tempore pariatur omnis quidem."], ["date", "2020-05-06 18:41:22.941711"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.943485"], ["updated_at", "2020-05-05 18:41:22.943485"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi ipsa necessitatibus sed?"], ["description", "Eos sed omnis ducimus."], ["date", "2020-05-06 18:41:22.945376"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.946272"], ["updated_at", "2020-05-05 18:41:22.946272"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut vel atque sed?"], ["description", "Error repellendus tempora ab."], ["date", "2020-05-06 18:41:22.947435"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.948103"], ["updated_at", "2020-05-05 18:41:22.948103"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem iusto et quis?"], ["description", "Omnis at eius repellendus."], ["date", "2020-05-06 18:41:22.949256"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.949947"], ["updated_at", "2020-05-05 18:41:22.949947"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem sunt esse temporibus?"], ["description", "Fugiat sint sed nam."], ["date", "2020-05-06 18:41:22.951084"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.951758"], ["updated_at", "2020-05-05 18:41:22.951758"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel id eveniet id?"], ["description", "Delectus eius veritatis optio."], ["date", "2020-05-06 18:41:22.952831"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.953504"], ["updated_at", "2020-05-05 18:41:22.953504"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et doloribus accusantium consequatur?"], ["description", "Dolor modi sit incidunt."], ["date", "2020-05-06 18:41:22.954680"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.955448"], ["updated_at", "2020-05-05 18:41:22.955448"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis nam quas provident?"], ["description", "Eum id eveniet nihil."], ["date", "2020-05-06 18:41:22.956893"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.959278"], ["updated_at", "2020-05-05 18:41:22.959278"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit explicabo quia et?"], ["description", "Non ab praesentium reprehenderit."], ["date", "2020-05-06 18:41:22.962348"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.963369"], ["updated_at", "2020-05-05 18:41:22.963369"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas magni vel perspiciatis?"], ["description", "Magni repellendus ea incidunt."], ["date", "2020-05-06 18:41:22.965498"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.966496"], ["updated_at", "2020-05-05 18:41:22.966496"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro excepturi cumque saepe?"], ["description", "Distinctio sit assumenda quisquam."], ["date", "2020-05-06 18:41:22.967960"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.968869"], ["updated_at", "2020-05-05 18:41:22.968869"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem ad molestiae quos?"], ["description", "Aut enim minima rerum."], ["date", "2020-05-06 18:41:22.970367"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.971172"], ["updated_at", "2020-05-05 18:41:22.971172"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit at et blanditiis?"], ["description", "Debitis saepe minima neque."], ["date", "2020-05-06 18:41:22.972398"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.973098"], ["updated_at", "2020-05-05 18:41:22.973098"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum officia in rem?"], ["description", "Excepturi occaecati debitis eum."], ["date", "2020-05-06 18:41:22.974245"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.974958"], ["updated_at", "2020-05-05 18:41:22.974958"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis ratione rem similique?"], ["description", "Eos beatae ea aliquid."], ["date", "2020-05-06 18:41:22.976778"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.978154"], ["updated_at", "2020-05-05 18:41:22.978154"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis rerum et quasi?"], ["description", "Sint autem et sed."], ["date", "2020-05-06 18:41:22.980360"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.981293"], ["updated_at", "2020-05-05 18:41:22.981293"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi incidunt ullam magnam?"], ["description", "Ea natus modi id."], ["date", "2020-05-06 18:41:22.982505"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.983204"], ["updated_at", "2020-05-05 18:41:22.983204"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis recusandae sunt unde?"], ["description", "Voluptatem voluptas eum harum."], ["date", "2020-05-06 18:41:22.984486"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.985268"], ["updated_at", "2020-05-05 18:41:22.985268"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laudantium qui quia at?"], ["description", "Quas molestiae dignissimos quia."], ["date", "2020-05-06 18:41:22.986571"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.987266"], ["updated_at", "2020-05-05 18:41:22.987266"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem at officiis aut?"], ["description", "Assumenda repudiandae labore quo."], ["date", "2020-05-06 18:41:22.988459"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:22.989135"], ["updated_at", "2020-05-05 18:41:22.989135"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:41:22 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms) +Completed 404 Not Found in 3ms (Views: 0.6ms | ActiveRecord: 0.3ms | Allocations: 867) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Edgardo Monahan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HX0iOjMqOutyEQ8Jp1dwuu/nVFMu/oh8Ee1N1pwZ0osmYUWxydFuu"], ["created_at", "2020-05-05 18:41:23.006589"], ["updated_at", "2020-05-05 18:41:23.006589"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Vel illo quibusdam nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.009392"], ["updated_at", "2020-05-05 18:41:23.009392"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis laborum inventore repellendus?"], ["description", "Doloremque consequuntur et nisi."], ["date", "2020-05-06 18:41:23.011589"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.012593"], ["updated_at", "2020-05-05 18:41:23.012593"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut corporis quae ducimus?"], ["description", "Ea quo eum aut."], ["date", "2020-05-06 18:41:23.013861"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.014581"], ["updated_at", "2020-05-05 18:41:23.014581"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error deserunt maiores vitae?"], ["description", "Aut aliquam ex non."], ["date", "2020-05-06 18:41:23.015743"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.016550"], ["updated_at", "2020-05-05 18:41:23.016550"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem ut saepe impedit?"], ["description", "Quaerat optio rem ratione."], ["date", "2020-05-06 18:41:23.018587"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.019810"], ["updated_at", "2020-05-05 18:41:23.019810"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio est qui quis?"], ["description", "Dolorem aspernatur aut in."], ["date", "2020-05-06 18:41:23.021843"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.022843"], ["updated_at", "2020-05-05 18:41:23.022843"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui sit in numquam?"], ["description", "Consequuntur nemo adipisci in."], ["date", "2020-05-06 18:41:23.024074"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.024908"], ["updated_at", "2020-05-05 18:41:23.024908"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui ut non fuga?"], ["description", "Quis ut sed magnam."], ["date", "2020-05-06 18:41:23.026434"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.027909"], ["updated_at", "2020-05-05 18:41:23.027909"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga maiores voluptas dolorem?"], ["description", "Cum voluptatem modi corrupti."], ["date", "2020-05-06 18:41:23.029443"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.030292"], ["updated_at", "2020-05-05 18:41:23.030292"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam autem dolor et?"], ["description", "In consequatur nihil minima."], ["date", "2020-05-06 18:41:23.031509"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.032183"], ["updated_at", "2020-05-05 18:41:23.032183"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi sint cupiditate distinctio?"], ["description", "Esse est ea incidunt."], ["date", "2020-05-06 18:41:23.033994"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.034789"], ["updated_at", "2020-05-05 18:41:23.034789"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis quod aut non?"], ["description", "Dignissimos assumenda neque aliquid."], ["date", "2020-05-06 18:41:23.036113"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.036843"], ["updated_at", "2020-05-05 18:41:23.036843"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores sint vel in?"], ["description", "Ipsam deserunt aut voluptate."], ["date", "2020-05-06 18:41:23.038569"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.039839"], ["updated_at", "2020-05-05 18:41:23.039839"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit aut molestias quia?"], ["description", "Ullam eos quos labore."], ["date", "2020-05-06 18:41:23.041276"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.042051"], ["updated_at", "2020-05-05 18:41:23.042051"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti et repellat soluta?"], ["description", "Aliquid voluptatem rerum id."], ["date", "2020-05-06 18:41:23.043965"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.044954"], ["updated_at", "2020-05-05 18:41:23.044954"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates et officia nisi?"], ["description", "Voluptas possimus molestiae consequuntur."], ["date", "2020-05-06 18:41:23.046421"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.047159"], ["updated_at", "2020-05-05 18:41:23.047159"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos aut dolores a?"], ["description", "Non soluta deleniti eligendi."], ["date", "2020-05-06 18:41:23.048318"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.048989"], ["updated_at", "2020-05-05 18:41:23.048989"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit nostrum officia cupiditate?"], ["description", "Distinctio non ab rerum."], ["date", "2020-05-06 18:41:23.050170"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.050911"], ["updated_at", "2020-05-05 18:41:23.050911"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus quia harum dicta?"], ["description", "Aliquid nesciunt quo ad."], ["date", "2020-05-06 18:41:23.052055"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.052758"], ["updated_at", "2020-05-05 18:41:23.052758"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut et non debitis?"], ["description", "Ut ratione dolorem sint."], ["date", "2020-05-06 18:41:23.053985"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.054725"], ["updated_at", "2020-05-05 18:41:23.054725"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur ut rerum voluptatibus?"], ["description", "Suscipit aut dolorum perferendis."], ["date", "2020-05-06 18:41:23.055916"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.056670"], ["updated_at", "2020-05-05 18:41:23.056670"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:41:23 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"title"=>"Visit Narnia", "description"=>"false", "date"=>"2020-05-06 15:41:23 -0300", "link"=>"https://zoom.com/fakelink", "meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Visit Narnia"], ["description", "false"], ["date", "2020-05-06 18:41:23"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.077308"], ["updated_at", "2020-05-05 18:41:23.077308"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.59ms) +Completed 201 Created in 7ms (Views: 1.2ms | ActiveRecord: 0.7ms | Allocations: 1699) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Malcom Kilback Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6.h4PvrBmjKRk/8cw4xiO.h75OSpiyjjZPbKbC61tRvbwYB0NTPvu"], ["created_at", "2020-05-05 18:41:23.092928"], ["updated_at", "2020-05-05 18:41:23.092928"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "exercitationem"], ["description", "Ut quo ducimus qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.096095"], ["updated_at", "2020-05-05 18:41:23.096095"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus sit in veniam?"], ["description", "Perferendis qui provident quas."], ["date", "2020-05-06 18:41:23.097677"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.099303"], ["updated_at", "2020-05-05 18:41:23.099303"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis dicta dolore libero?"], ["description", "Et asperiores fuga inventore."], ["date", "2020-05-06 18:41:23.101253"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.102805"], ["updated_at", "2020-05-05 18:41:23.102805"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor dolorem sint et?"], ["description", "Quaerat saepe veniam sit."], ["date", "2020-05-06 18:41:23.104231"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.105068"], ["updated_at", "2020-05-05 18:41:23.105068"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium ipsum ex veritatis?"], ["description", "Deleniti aut at voluptatem."], ["date", "2020-05-06 18:41:23.106202"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.106902"], ["updated_at", "2020-05-05 18:41:23.106902"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa aspernatur sint quis?"], ["description", "Impedit velit deleniti et."], ["date", "2020-05-06 18:41:23.107957"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.108627"], ["updated_at", "2020-05-05 18:41:23.108627"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae enim magni quae?"], ["description", "Soluta dolorem sapiente iste."], ["date", "2020-05-06 18:41:23.109894"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.111068"], ["updated_at", "2020-05-05 18:41:23.111068"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis esse repellat eos?"], ["description", "Autem dicta deserunt et."], ["date", "2020-05-06 18:41:23.112390"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.113082"], ["updated_at", "2020-05-05 18:41:23.113082"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia alias nulla ratione?"], ["description", "Exercitationem sit hic voluptatem."], ["date", "2020-05-06 18:41:23.114114"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.114836"], ["updated_at", "2020-05-05 18:41:23.114836"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas quisquam sapiente voluptas?"], ["description", "Rerum quidem et et."], ["date", "2020-05-06 18:41:23.116072"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.116810"], ["updated_at", "2020-05-05 18:41:23.116810"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus non dolorum neque?"], ["description", "Eligendi aut inventore voluptatem."], ["date", "2020-05-06 18:41:23.119810"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.121156"], ["updated_at", "2020-05-05 18:41:23.121156"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione vitae voluptas at?"], ["description", "Ea et optio ullam."], ["date", "2020-05-06 18:41:23.123015"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.123921"], ["updated_at", "2020-05-05 18:41:23.123921"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas aut cum quis?"], ["description", "Ut assumenda eos voluptas."], ["date", "2020-05-06 18:41:23.125360"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.126868"], ["updated_at", "2020-05-05 18:41:23.126868"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui quam est excepturi?"], ["description", "Recusandae consequuntur alias ut."], ["date", "2020-05-06 18:41:23.128381"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.129191"], ["updated_at", "2020-05-05 18:41:23.129191"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem repellat ut sunt?"], ["description", "Perferendis aut labore non."], ["date", "2020-05-06 18:41:23.130447"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.131128"], ["updated_at", "2020-05-05 18:41:23.131128"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae rem porro laboriosam?"], ["description", "Officia enim maxime esse."], ["date", "2020-05-06 18:41:23.132208"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.132867"], ["updated_at", "2020-05-05 18:41:23.132867"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam alias a et?"], ["description", "Ut qui vel soluta."], ["date", "2020-05-06 18:41:23.134145"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.134880"], ["updated_at", "2020-05-05 18:41:23.134880"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit nesciunt doloribus quia?"], ["description", "Vitae quibusdam animi maiores."], ["date", "2020-05-06 18:41:23.136104"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.136784"], ["updated_at", "2020-05-05 18:41:23.136784"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit totam ut commodi?"], ["description", "Nam quisquam dolor corporis."], ["date", "2020-05-06 18:41:23.138279"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.139773"], ["updated_at", "2020-05-05 18:41:23.139773"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere placeat possimus reiciendis?"], ["description", "Expedita iusto et amet."], ["date", "2020-05-06 18:41:23.141321"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.142129"], ["updated_at", "2020-05-05 18:41:23.142129"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id sed veritatis aliquid?"], ["description", "Et occaecati consequatur cumque."], ["date", "2020-05-06 18:41:23.143923"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.144904"], ["updated_at", "2020-05-05 18:41:23.144904"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:41:23 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3010) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Martine Maggio"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$bTnTUEnGWR3NHyFgkG54Eu4KzpmT.7Zm2niA5gbCrHwgm7BW5O58m"], ["created_at", "2020-05-05 18:41:23.163977"], ["updated_at", "2020-05-05 18:41:23.163977"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fuga"], ["description", "Temporibus cumque et voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.166886"], ["updated_at", "2020-05-05 18:41:23.166886"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi temporibus repudiandae sint?"], ["description", "Alias dolorum eos sit."], ["date", "2020-05-06 18:41:23.168401"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.169370"], ["updated_at", "2020-05-05 18:41:23.169370"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem quas est assumenda?"], ["description", "Ut mollitia quae molestiae."], ["date", "2020-05-06 18:41:23.170714"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.171440"], ["updated_at", "2020-05-05 18:41:23.171440"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit enim iste autem?"], ["description", "Voluptates vitae fuga porro."], ["date", "2020-05-06 18:41:23.172706"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.173423"], ["updated_at", "2020-05-05 18:41:23.173423"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate delectus debitis nihil?"], ["description", "Aut non animi a."], ["date", "2020-05-06 18:41:23.174602"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.175316"], ["updated_at", "2020-05-05 18:41:23.175316"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et omnis in cupiditate?"], ["description", "Omnis accusantium rem rerum."], ["date", "2020-05-06 18:41:23.176574"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.177943"], ["updated_at", "2020-05-05 18:41:23.177943"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum ut ducimus eius?"], ["description", "Nihil iste quis necessitatibus."], ["date", "2020-05-06 18:41:23.180270"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.181418"], ["updated_at", "2020-05-05 18:41:23.181418"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil reprehenderit a natus?"], ["description", "Magnam unde provident quos."], ["date", "2020-05-06 18:41:23.183369"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.184296"], ["updated_at", "2020-05-05 18:41:23.184296"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint illo voluptatem nesciunt?"], ["description", "Non adipisci corrupti ea."], ["date", "2020-05-06 18:41:23.185580"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.186343"], ["updated_at", "2020-05-05 18:41:23.186343"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque exercitationem rem voluptatum?"], ["description", "Recusandae est optio maiores."], ["date", "2020-05-06 18:41:23.187504"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.188227"], ["updated_at", "2020-05-05 18:41:23.188227"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni maiores vero in?"], ["description", "Quisquam quis in est."], ["date", "2020-05-06 18:41:23.190029"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.190803"], ["updated_at", "2020-05-05 18:41:23.190803"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui aut dolor veniam?"], ["description", "Doloremque itaque doloribus officia."], ["date", "2020-05-06 18:41:23.192103"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.193122"], ["updated_at", "2020-05-05 18:41:23.193122"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam sit minima voluptates?"], ["description", "Voluptatem ipsum nulla nemo."], ["date", "2020-05-06 18:41:23.194782"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.195632"], ["updated_at", "2020-05-05 18:41:23.195632"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam aperiam ullam sunt?"], ["description", "Ratione qui eum velit."], ["date", "2020-05-06 18:41:23.196808"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.197487"], ["updated_at", "2020-05-05 18:41:23.197487"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit mollitia est ut?"], ["description", "Ab quisquam sunt quis."], ["date", "2020-05-06 18:41:23.199126"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.200441"], ["updated_at", "2020-05-05 18:41:23.200441"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut libero assumenda deleniti?"], ["description", "Alias eos nihil consequatur."], ["date", "2020-05-06 18:41:23.215669"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.216827"], ["updated_at", "2020-05-05 18:41:23.216827"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum et voluptatem deserunt?"], ["description", "Voluptas at doloribus sed."], ["date", "2020-05-06 18:41:23.218400"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.219813"], ["updated_at", "2020-05-05 18:41:23.219813"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit sit nostrum est?"], ["description", "Labore ut nam ducimus."], ["date", "2020-05-06 18:41:23.221359"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.222202"], ["updated_at", "2020-05-05 18:41:23.222202"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum facere repellat ut?"], ["description", "Quidem ut nemo cumque."], ["date", "2020-05-06 18:41:23.223451"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.224156"], ["updated_at", "2020-05-05 18:41:23.224156"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut mollitia voluptates optio?"], ["description", "Et ipsum adipisci maiores."], ["date", "2020-05-06 18:41:23.225577"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.226485"], ["updated_at", "2020-05-05 18:41:23.226485"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga expedita quia ex?"], ["description", "Consequatur laboriosam eaque non."], ["date", "2020-05-06 18:41:23.228382"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.229292"], ["updated_at", "2020-05-05 18:41:23.229292"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:41:23 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 422 Unprocessable Entity in 4ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 2705) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (18.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Carly Ward"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RYTL4rkC27B6ggBiVCrGN.MIyelrrNRmKQdZBIJgYG3jaUvl4RNtO"], ["created_at", "2020-05-05 18:41:23.259445"], ["updated_at", "2020-05-05 18:41:23.259445"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nobis"], ["description", "Provident nesciunt qui neque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.264153"], ["updated_at", "2020-05-05 18:41:23.264153"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est fugiat distinctio est?"], ["description", "Asperiores est veniam aut."], ["date", "2020-05-06 18:41:23.265807"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.266761"], ["updated_at", "2020-05-05 18:41:23.266761"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui repellendus nemo perspiciatis?"], ["description", "Cum culpa corrupti et."], ["date", "2020-05-06 18:41:23.268096"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.268826"], ["updated_at", "2020-05-05 18:41:23.268826"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus natus quasi ut?"], ["description", "Expedita fuga enim earum."], ["date", "2020-05-06 18:41:23.270024"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.270724"], ["updated_at", "2020-05-05 18:41:23.270724"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim dolores et ex?"], ["description", "Numquam ut rerum molestiae."], ["date", "2020-05-06 18:41:23.271845"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.272521"], ["updated_at", "2020-05-05 18:41:23.272521"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores impedit quia explicabo?"], ["description", "Qui exercitationem in et."], ["date", "2020-05-06 18:41:23.273666"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.274356"], ["updated_at", "2020-05-05 18:41:23.274356"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem sunt provident rerum?"], ["description", "Ad sed explicabo excepturi."], ["date", "2020-05-06 18:41:23.275695"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.276574"], ["updated_at", "2020-05-05 18:41:23.276574"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum ipsa ipsam sunt?"], ["description", "Architecto nulla voluptatum voluptatem."], ["date", "2020-05-06 18:41:23.278429"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.279865"], ["updated_at", "2020-05-05 18:41:23.279865"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum sint aut dolores?"], ["description", "Quo voluptates dicta alias."], ["date", "2020-05-06 18:41:23.282056"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.283295"], ["updated_at", "2020-05-05 18:41:23.283295"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem numquam non occaecati?"], ["description", "A et possimus non."], ["date", "2020-05-06 18:41:23.284682"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.285419"], ["updated_at", "2020-05-05 18:41:23.285419"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus omnis atque consequatur?"], ["description", "Tenetur minus voluptas at."], ["date", "2020-05-06 18:41:23.287386"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.288223"], ["updated_at", "2020-05-05 18:41:23.288223"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptate est consectetur ut?"], ["description", "Quidem consequatur sint voluptates."], ["date", "2020-05-06 18:41:23.289500"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.290218"], ["updated_at", "2020-05-05 18:41:23.290218"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil reprehenderit ullam quas?"], ["description", "Minima nulla maxime eos."], ["date", "2020-05-06 18:41:23.291416"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.292086"], ["updated_at", "2020-05-05 18:41:23.292086"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique laborum necessitatibus animi?"], ["description", "Est qui eum ea."], ["date", "2020-05-06 18:41:23.293854"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.294838"], ["updated_at", "2020-05-05 18:41:23.294838"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum expedita impedit quae?"], ["description", "Excepturi est et ipsam."], ["date", "2020-05-06 18:41:23.296244"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.296964"], ["updated_at", "2020-05-05 18:41:23.296964"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et mollitia molestias deleniti?"], ["description", "Recusandae earum numquam itaque."], ["date", "2020-05-06 18:41:23.298213"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.299317"], ["updated_at", "2020-05-05 18:41:23.299317"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut earum facilis ut?"], ["description", "Fuga ratione pariatur aliquam."], ["date", "2020-05-06 18:41:23.301185"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.302119"], ["updated_at", "2020-05-05 18:41:23.302119"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique eligendi dicta qui?"], ["description", "Consectetur asperiores blanditiis placeat."], ["date", "2020-05-06 18:41:23.303408"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.304109"], ["updated_at", "2020-05-05 18:41:23.304109"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt a quisquam molestiae?"], ["description", "Eos consequatur et eius."], ["date", "2020-05-06 18:41:23.305400"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.306154"], ["updated_at", "2020-05-05 18:41:23.306154"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia repellat exercitationem quisquam?"], ["description", "Delectus provident tempora perferendis."], ["date", "2020-05-06 18:41:23.307501"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.308244"], ["updated_at", "2020-05-05 18:41:23.308244"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed dolore est officia?"], ["description", "Et libero soluta corrupti."], ["date", "2020-05-06 18:41:23.309488"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.311142"], ["updated_at", "2020-05-05 18:41:23.311142"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:41:23 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.2ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:41:23.315845"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1397) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leslie Smith MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Y0fHiO2o5nvmCxD64fOTWemoemIzR4zF7hRsdMR4JUHGD9jomx5za"], ["created_at", "2020-05-05 18:41:23.327663"], ["updated_at", "2020-05-05 18:41:23.327663"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Ut repellat accusamus libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.330559"], ["updated_at", "2020-05-05 18:41:23.330559"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex qui perferendis nulla?"], ["description", "Vitae in natus et."], ["date", "2020-05-06 18:41:23.332035"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.332965"], ["updated_at", "2020-05-05 18:41:23.332965"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati et ut ipsa?"], ["description", "Ea quibusdam voluptatem sed."], ["date", "2020-05-06 18:41:23.334268"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.335017"], ["updated_at", "2020-05-05 18:41:23.335017"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugiat ab molestiae sit?"], ["description", "Incidunt adipisci ipsum eius."], ["date", "2020-05-06 18:41:23.336203"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.336955"], ["updated_at", "2020-05-05 18:41:23.336955"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt et rerum eos?"], ["description", "Et tenetur quidem sit."], ["date", "2020-05-06 18:41:23.338007"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.338716"], ["updated_at", "2020-05-05 18:41:23.338716"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem error sed placeat?"], ["description", "Porro ipsum voluptas sint."], ["date", "2020-05-06 18:41:23.340659"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.342583"], ["updated_at", "2020-05-05 18:41:23.342583"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt quia et quae?"], ["description", "Soluta et ut alias."], ["date", "2020-05-06 18:41:23.344709"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.345681"], ["updated_at", "2020-05-05 18:41:23.345681"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequuntur numquam sunt nam?"], ["description", "Doloribus voluptas cum officiis."], ["date", "2020-05-06 18:41:23.346912"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.347633"], ["updated_at", "2020-05-05 18:41:23.347633"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum architecto sequi nesciunt?"], ["description", "Dolorum officia vero labore."], ["date", "2020-05-06 18:41:23.348816"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.349504"], ["updated_at", "2020-05-05 18:41:23.349504"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem dicta omnis incidunt?"], ["description", "Non blanditiis culpa quis."], ["date", "2020-05-06 18:41:23.350720"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.351479"], ["updated_at", "2020-05-05 18:41:23.351479"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam occaecati soluta ad?"], ["description", "Id in quaerat quia."], ["date", "2020-05-06 18:41:23.353251"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.354021"], ["updated_at", "2020-05-05 18:41:23.354021"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam suscipit minus ea?"], ["description", "Alias molestiae porro omnis."], ["date", "2020-05-06 18:41:23.355332"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.356099"], ["updated_at", "2020-05-05 18:41:23.356099"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque quod minima nihil?"], ["description", "Deleniti dolores exercitationem omnis."], ["date", "2020-05-06 18:41:23.357254"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.357942"], ["updated_at", "2020-05-05 18:41:23.357942"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia qui ut rerum?"], ["description", "Minus excepturi provident est."], ["date", "2020-05-06 18:41:23.359280"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.361800"], ["updated_at", "2020-05-05 18:41:23.361800"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut eum dolorem tempore?"], ["description", "Est sequi sunt et."], ["date", "2020-05-06 18:41:23.363451"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.364272"], ["updated_at", "2020-05-05 18:41:23.364272"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto rerum illum eos?"], ["description", "Totam mollitia minima ab."], ["date", "2020-05-06 18:41:23.365499"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.366207"], ["updated_at", "2020-05-05 18:41:23.366207"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi natus voluptates enim?"], ["description", "Voluptatem et unde id."], ["date", "2020-05-06 18:41:23.367448"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.368141"], ["updated_at", "2020-05-05 18:41:23.368141"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut consequuntur et quia?"], ["description", "Cumque accusantium eius aut."], ["date", "2020-05-06 18:41:23.369297"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.369971"], ["updated_at", "2020-05-05 18:41:23.369971"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet provident et quaerat?"], ["description", "Non reprehenderit sint qui."], ["date", "2020-05-06 18:41:23.371129"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.371775"], ["updated_at", "2020-05-05 18:41:23.371775"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique qui qui harum?"], ["description", "Et autem dolores natus."], ["date", "2020-05-06 18:41:23.372998"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.373670"], ["updated_at", "2020-05-05 18:41:23.373670"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum facere vel minus?"], ["description", "Cupiditate quis perferendis autem."], ["date", "2020-05-06 18:41:23.375012"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.375758"], ["updated_at", "2020-05-05 18:41:23.375758"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:41:23 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.2ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:41:23.382780"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 5ms (ActiveRecord: 0.6ms | Allocations: 1320) + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Terrence Metz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Z7Kkqq6bdzjc46J6Wmvi/ux2yD.f2rcYRG9fvTzvqslSqvdOqoJmy"], ["created_at", "2020-05-05 18:41:23.396892"], ["updated_at", "2020-05-05 18:41:23.396892"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Et voluptatem ut voluptates."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.400193"], ["updated_at", "2020-05-05 18:41:23.400193"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab quia dolores nisi?"], ["description", "Aperiam atque itaque aut."], ["date", "2020-05-06 18:41:23.402702"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.404213"], ["updated_at", "2020-05-05 18:41:23.404213"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos atque quibusdam doloribus?"], ["description", "Praesentium commodi neque optio."], ["date", "2020-05-06 18:41:23.405877"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.406696"], ["updated_at", "2020-05-05 18:41:23.406696"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et odio dolor aut?"], ["description", "Beatae maxime exercitationem itaque."], ["date", "2020-05-06 18:41:23.407900"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.408616"], ["updated_at", "2020-05-05 18:41:23.408616"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque qui doloribus et?"], ["description", "Doloribus voluptates officia odit."], ["date", "2020-05-06 18:41:23.410494"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.411544"], ["updated_at", "2020-05-05 18:41:23.411544"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio facilis mollitia adipisci?"], ["description", "Eos maxime quos et."], ["date", "2020-05-06 18:41:23.412781"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.413476"], ["updated_at", "2020-05-05 18:41:23.413476"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum rerum officia placeat?"], ["description", "Ut quas aut deleniti."], ["date", "2020-05-06 18:41:23.414622"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.415349"], ["updated_at", "2020-05-05 18:41:23.415349"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex et quaerat aut?"], ["description", "Et unde aliquid vel."], ["date", "2020-05-06 18:41:23.416541"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.417243"], ["updated_at", "2020-05-05 18:41:23.417243"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad necessitatibus sequi dolor?"], ["description", "Dolorum incidunt corrupti id."], ["date", "2020-05-06 18:41:23.418426"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.419197"], ["updated_at", "2020-05-05 18:41:23.419197"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem voluptate culpa nisi?"], ["description", "Architecto similique et incidunt."], ["date", "2020-05-06 18:41:23.421632"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.423144"], ["updated_at", "2020-05-05 18:41:23.423144"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus doloribus dolores dolor?"], ["description", "Eius eaque tenetur illo."], ["date", "2020-05-06 18:41:23.425356"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.426302"], ["updated_at", "2020-05-05 18:41:23.426302"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam accusantium et quaerat?"], ["description", "Suscipit aliquam necessitatibus nesciunt."], ["date", "2020-05-06 18:41:23.428242"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.429151"], ["updated_at", "2020-05-05 18:41:23.429151"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam sint molestiae cumque?"], ["description", "Veniam id dicta dignissimos."], ["date", "2020-05-06 18:41:23.430413"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.431105"], ["updated_at", "2020-05-05 18:41:23.431105"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt qui et enim?"], ["description", "Totam officiis est inventore."], ["date", "2020-05-06 18:41:23.432269"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.432985"], ["updated_at", "2020-05-05 18:41:23.432985"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit fugiat voluptates enim?"], ["description", "Atque velit ea odio."], ["date", "2020-05-06 18:41:23.434187"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.434923"], ["updated_at", "2020-05-05 18:41:23.434923"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas omnis et eos?"], ["description", "Aut nemo beatae veniam."], ["date", "2020-05-06 18:41:23.436166"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.436871"], ["updated_at", "2020-05-05 18:41:23.436871"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita eos tempore ut?"], ["description", "Rerum rerum possimus dicta."], ["date", "2020-05-06 18:41:23.438029"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.438709"], ["updated_at", "2020-05-05 18:41:23.438709"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem doloribus enim sunt?"], ["description", "Aliquam vitae eos omnis."], ["date", "2020-05-06 18:41:23.440074"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.441365"], ["updated_at", "2020-05-05 18:41:23.441365"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In dolor vel quos?"], ["description", "Est quasi aut maiores."], ["date", "2020-05-06 18:41:23.443204"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.444426"], ["updated_at", "2020-05-05 18:41:23.444426"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ducimus dolores rem qui?"], ["description", "Magnam quod aspernatur quo."], ["date", "2020-05-06 18:41:23.446057"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.446899"], ["updated_at", "2020-05-05 18:41:23.446899"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat eos incidunt laboriosam?"], ["description", "Totam facilis quod illum."], ["date", "2020-05-06 18:41:23.448138"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.448837"], ["updated_at", "2020-05-05 18:41:23.448837"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:41:23 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["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: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sherwood Mann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TpOupapB/SjGHRsPcZ8AeuSsiVhwTR7NC4UmG9F9E8phekoso.g9C"], ["created_at", "2020-05-05 18:41:23.464040"], ["updated_at", "2020-05-05 18:41:23.464040"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Hic ratione aut molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.467163"], ["updated_at", "2020-05-05 18:41:23.467163"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias minima voluptate ut?"], ["description", "Ex facere quia quia."], ["date", "2020-05-06 18:41:23.468618"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.469543"], ["updated_at", "2020-05-05 18:41:23.469543"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus illum ut voluptatum?"], ["description", "Eos ut nesciunt doloremque."], ["date", "2020-05-06 18:41:23.471192"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.471974"], ["updated_at", "2020-05-05 18:41:23.471974"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non velit fugiat hic?"], ["description", "Ullam autem earum minus."], ["date", "2020-05-06 18:41:23.473184"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.473875"], ["updated_at", "2020-05-05 18:41:23.473875"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum adipisci deserunt quibusdam?"], ["description", "Ea maiores nesciunt perspiciatis."], ["date", "2020-05-06 18:41:23.474998"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.475700"], ["updated_at", "2020-05-05 18:41:23.475700"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem ad sapiente fuga?"], ["description", "Iusto ex consequatur nihil."], ["date", "2020-05-06 18:41:23.477256"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.478286"], ["updated_at", "2020-05-05 18:41:23.478286"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis ullam id in?"], ["description", "Quis sunt voluptate animi."], ["date", "2020-05-06 18:41:23.479575"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.480457"], ["updated_at", "2020-05-05 18:41:23.480457"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus numquam qui soluta?"], ["description", "Cum est nemo voluptas."], ["date", "2020-05-06 18:41:23.482411"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.483590"], ["updated_at", "2020-05-05 18:41:23.483590"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae voluptas dolorem iste?"], ["description", "Quis voluptas explicabo recusandae."], ["date", "2020-05-06 18:41:23.485455"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.486378"], ["updated_at", "2020-05-05 18:41:23.486378"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis eum quis inventore?"], ["description", "Et voluptate ipsam sint."], ["date", "2020-05-06 18:41:23.487519"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.488227"], ["updated_at", "2020-05-05 18:41:23.488227"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis illum possimus dolore?"], ["description", "Id assumenda sit aut."], ["date", "2020-05-06 18:41:23.489988"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.490734"], ["updated_at", "2020-05-05 18:41:23.490734"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem aperiam unde odio?"], ["description", "Earum et neque velit."], ["date", "2020-05-06 18:41:23.492734"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.493709"], ["updated_at", "2020-05-05 18:41:23.493709"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum cum ratione cupiditate?"], ["description", "Rerum inventore accusamus cum."], ["date", "2020-05-06 18:41:23.495164"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.495927"], ["updated_at", "2020-05-05 18:41:23.495927"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis id cum laborum?"], ["description", "Alias et iste iusto."], ["date", "2020-05-06 18:41:23.497162"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.497854"], ["updated_at", "2020-05-05 18:41:23.497854"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptate dolor tempora quia?"], ["description", "Alias incidunt ut nisi."], ["date", "2020-05-06 18:41:23.499103"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.499828"], ["updated_at", "2020-05-05 18:41:23.499828"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo non earum ullam?"], ["description", "Eaque rem optio placeat."], ["date", "2020-05-06 18:41:23.501605"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.502701"], ["updated_at", "2020-05-05 18:41:23.502701"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est quidem pariatur libero?"], ["description", "Harum est quis neque."], ["date", "2020-05-06 18:41:23.504133"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.504854"], ["updated_at", "2020-05-05 18:41:23.504854"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab quo dolorem sunt?"], ["description", "Ut et dolorum dolorem."], ["date", "2020-05-06 18:41:23.506226"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.507140"], ["updated_at", "2020-05-05 18:41:23.507140"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero nemo dolorum illo?"], ["description", "Sapiente est non quia."], ["date", "2020-05-06 18:41:23.508681"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.509981"], ["updated_at", "2020-05-05 18:41:23.509981"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis in laborum necessitatibus?"], ["description", "Perferendis qui qui eos."], ["date", "2020-05-06 18:41:23.511394"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.512129"], ["updated_at", "2020-05-05 18:41:23.512129"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam voluptatem nihil natus?"], ["description", "Et assumenda dolores adipisci."], ["date", "2020-05-06 18:41:23.513288"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.513964"], ["updated_at", "2020-05-05 18:41:23.513964"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:41:23 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["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: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Merry Yundt"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LKxYecjN76JsuhLvy55hYeMaVx9oE6v2rE55iu9V/FKxoEphxhVuK"], ["created_at", "2020-05-05 18:41:23.530214"], ["updated_at", "2020-05-05 18:41:23.530214"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Iste laborum qui autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.534132"], ["updated_at", "2020-05-05 18:41:23.534132"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam aut voluptatibus saepe?"], ["description", "Expedita consequatur aliquam vel."], ["date", "2020-05-06 18:41:23.535748"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.536737"], ["updated_at", "2020-05-05 18:41:23.536737"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem officiis voluptas corrupti?"], ["description", "Velit et voluptates fugit."], ["date", "2020-05-06 18:41:23.538011"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.538739"], ["updated_at", "2020-05-05 18:41:23.538739"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut dolores ex iste?"], ["description", "Quibusdam molestias est esse."], ["date", "2020-05-06 18:41:23.540050"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.541673"], ["updated_at", "2020-05-05 18:41:23.541673"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam delectus quia earum?"], ["description", "Et eveniet deserunt ducimus."], ["date", "2020-05-06 18:41:23.544187"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.545645"], ["updated_at", "2020-05-05 18:41:23.545645"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui explicabo possimus nobis?"], ["description", "Modi possimus itaque quis."], ["date", "2020-05-06 18:41:23.547061"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.547781"], ["updated_at", "2020-05-05 18:41:23.547781"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est voluptatem enim doloribus?"], ["description", "Est nam esse maxime."], ["date", "2020-05-06 18:41:23.548908"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.549577"], ["updated_at", "2020-05-05 18:41:23.549577"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit tenetur blanditiis voluptates?"], ["description", "Id dolor et necessitatibus."], ["date", "2020-05-06 18:41:23.550699"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.551355"], ["updated_at", "2020-05-05 18:41:23.551355"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo et id sunt?"], ["description", "Dolorum unde ut recusandae."], ["date", "2020-05-06 18:41:23.552501"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.553174"], ["updated_at", "2020-05-05 18:41:23.553174"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus facilis non ut?"], ["description", "Esse ut iure id."], ["date", "2020-05-06 18:41:23.554321"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.554992"], ["updated_at", "2020-05-05 18:41:23.554992"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur laboriosam enim vero?"], ["description", "Et odio qui sit."], ["date", "2020-05-06 18:41:23.556860"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.557657"], ["updated_at", "2020-05-05 18:41:23.557657"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas et est sint?"], ["description", "Qui accusamus commodi consectetur."], ["date", "2020-05-06 18:41:23.558964"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.560205"], ["updated_at", "2020-05-05 18:41:23.560205"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis aliquam praesentium occaecati?"], ["description", "Minima sapiente omnis error."], ["date", "2020-05-06 18:41:23.562584"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.563636"], ["updated_at", "2020-05-05 18:41:23.563636"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis beatae impedit dignissimos?"], ["description", "Consequatur qui doloribus libero."], ["date", "2020-05-06 18:41:23.565150"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.566021"], ["updated_at", "2020-05-05 18:41:23.566021"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis perspiciatis id aut?"], ["description", "Vero nam in non."], ["date", "2020-05-06 18:41:23.567328"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.568022"], ["updated_at", "2020-05-05 18:41:23.568022"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis iste quis voluptatem?"], ["description", "Sunt unde ipsa commodi."], ["date", "2020-05-06 18:41:23.569276"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.570004"], ["updated_at", "2020-05-05 18:41:23.570004"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi ut hic eius?"], ["description", "In qui est labore."], ["date", "2020-05-06 18:41:23.571371"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.572136"], ["updated_at", "2020-05-05 18:41:23.572136"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab molestias ut est?"], ["description", "Voluptatum ad quaerat quia."], ["date", "2020-05-06 18:41:23.573266"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.573937"], ["updated_at", "2020-05-05 18:41:23.573937"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo et facere incidunt?"], ["description", "Ut excepturi minima necessitatibus."], ["date", "2020-05-06 18:41:23.575177"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.576499"], ["updated_at", "2020-05-05 18:41:23.576499"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta error dolorem molestiae?"], ["description", "Incidunt quae nulla et."], ["date", "2020-05-06 18:41:23.577994"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.578782"], ["updated_at", "2020-05-05 18:41:23.578782"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem beatae reprehenderit omnis?"], ["description", "Est odio itaque voluptatem."], ["date", "2020-05-06 18:41:23.580159"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:41:23.581600"], ["updated_at", "2020-05-05 18:41:23.581600"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:41:23 -0300 +Processing by MeetingsController#destroy as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + UserMeeting Load (0.1ms) SELECT "user_meetings".* FROM "user_meetings" WHERE "user_meetings"."meeting_id" = ? [["meeting_id", 1]] + Meeting Destroy (0.1ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 6ms (ActiveRecord: 0.7ms | Allocations: 2317) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Cum nulla et possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.600251"], ["updated_at", "2020-05-05 18:41:23.600251"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quam"], ["description", "Ut aliquam dolores non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.604962"], ["updated_at", "2020-05-05 18:41:23.604962"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Commodi sit non eius."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.606581"], ["updated_at", "2020-05-05 18:41:23.606581"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "In in occaecati labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.607916"], ["updated_at", "2020-05-05 18:41:23.607916"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Quasi neque accusantium totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.609934"], ["updated_at", "2020-05-05 18:41:23.609934"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Sit ad voluptate vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.611369"], ["updated_at", "2020-05-05 18:41:23.611369"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Modi odio vitae illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.612679"], ["updated_at", "2020-05-05 18:41:23.612679"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quisquam"], ["description", "In quis est dicta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.613976"], ["updated_at", "2020-05-05 18:41:23.613976"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Ea qui ratione veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.615278"], ["updated_at", "2020-05-05 18:41:23.615278"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Impedit qui ad ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.616580"], ["updated_at", "2020-05-05 18:41:23.616580"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Lieselotte Rosenbaum"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Lf39CpFYWxrAz8xPktzfp.3ihau81UmZ2ycbV5zPSeOzVkYcBb4XO"], ["created_at", "2020-05-05 18:41:23.619187"], ["updated_at", "2020-05-05 18:41:23.619187"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:41:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (2.93ms) +Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.3ms | Allocations: 2908) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (11.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "necessitatibus"], ["description", "Minima iusto vel ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.646195"], ["updated_at", "2020-05-05 18:41:23.646195"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Illo excepturi eligendi et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.649925"], ["updated_at", "2020-05-05 18:41:23.649925"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquam"], ["description", "Ex aut atque et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.651472"], ["updated_at", "2020-05-05 18:41:23.651472"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "hic"], ["description", "Voluptas voluptatem delectus qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.652781"], ["updated_at", "2020-05-05 18:41:23.652781"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nam"], ["description", "Enim velit qui voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.654093"], ["updated_at", "2020-05-05 18:41:23.654093"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "numquam"], ["description", "Non voluptate dolore rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.655407"], ["updated_at", "2020-05-05 18:41:23.655407"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eligendi"], ["description", "Porro necessitatibus ea pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.656734"], ["updated_at", "2020-05-05 18:41:23.656734"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Aperiam tempora commodi quidem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.658057"], ["updated_at", "2020-05-05 18:41:23.658057"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Distinctio quo perferendis et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.660070"], ["updated_at", "2020-05-05 18:41:23.660070"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Soluta quia officia libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.662057"], ["updated_at", "2020-05-05 18:41:23.662057"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Michal Murray I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Gzv0IHNK/C3nxwr8or12JOcVQmzm3Ua1dXm.TDbM9XU2BFb4sBv0e"], ["created_at", "2020-05-05 18:41:23.665724"], ["updated_at", "2020-05-05 18:41:23.665724"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:41:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.14ms) +Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms | Allocations: 2844) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (21.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quod"], ["description", "Quidem aut aliquam voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.697885"], ["updated_at", "2020-05-05 18:41:23.697885"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "at"], ["description", "Maiores sit ad quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.700886"], ["updated_at", "2020-05-05 18:41:23.700886"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "exercitationem"], ["description", "Ut quas atque id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.704153"], ["updated_at", "2020-05-05 18:41:23.704153"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Ea dicta voluptate iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.706326"], ["updated_at", "2020-05-05 18:41:23.706326"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Et sequi laborum provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.707761"], ["updated_at", "2020-05-05 18:41:23.707761"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corrupti"], ["description", "Praesentium blanditiis aperiam delectus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.709148"], ["updated_at", "2020-05-05 18:41:23.709148"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quam"], ["description", "Beatae qui magni iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.711146"], ["updated_at", "2020-05-05 18:41:23.711146"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Dolor vel unde saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.712523"], ["updated_at", "2020-05-05 18:41:23.712523"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Dolorum rerum amet aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.713750"], ["updated_at", "2020-05-05 18:41:23.713750"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "debitis"], ["description", "Perspiciatis quia aut nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.715059"], ["updated_at", "2020-05-05 18:41:23.715059"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ruth Jacobi PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$X9gI6o0oqd4HE5d9Oet3X.lgVveMb8YMo4B.w3DQdx2LRK5e7zC9y"], ["created_at", "2020-05-05 18:41:23.717653"], ["updated_at", "2020-05-05 18:41:23.717653"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:41:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.3ms | ActiveRecord: 0.2ms | Allocations: 2841) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:41:23 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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: 1242) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (2.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Consectetur qui nihil ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.740169"], ["updated_at", "2020-05-05 18:41:23.740169"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Aliquid quis distinctio cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.745022"], ["updated_at", "2020-05-05 18:41:23.745022"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Quasi officiis magnam dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.747239"], ["updated_at", "2020-05-05 18:41:23.747239"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Molestiae similique et et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.748803"], ["updated_at", "2020-05-05 18:41:23.748803"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Quam incidunt adipisci ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.750082"], ["updated_at", "2020-05-05 18:41:23.750082"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officia"], ["description", "Quibusdam omnis quam et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.751478"], ["updated_at", "2020-05-05 18:41:23.751478"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Aut eos culpa in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.752807"], ["updated_at", "2020-05-05 18:41:23.752807"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Consequatur et facilis corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.754095"], ["updated_at", "2020-05-05 18:41:23.754095"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempore"], ["description", "Et eligendi animi id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.755414"], ["updated_at", "2020-05-05 18:41:23.755414"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Cum quo odit in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.756760"], ["updated_at", "2020-05-05 18:41:23.756760"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marylin Gulgowski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3ghG.R4Wjvf2k1/tBoX1leVu4HJDDYhZ0JO7uz3fFwmQ9L.gdp.MS"], ["created_at", "2020-05-05 18:41:23.759694"], ["updated_at", "2020-05-05 18:41:23.759694"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:41:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.57ms) +Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.4ms | Allocations: 2843) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:41:23 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.24ms) +Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.2ms | Allocations: 1240) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Quo accusamus adipisci voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.787222"], ["updated_at", "2020-05-05 18:41:23.787222"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dignissimos"], ["description", "Consequatur exercitationem eaque enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.790762"], ["updated_at", "2020-05-05 18:41:23.790762"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Quia est perspiciatis quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.793191"], ["updated_at", "2020-05-05 18:41:23.793191"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Eaque explicabo ratione hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.794875"], ["updated_at", "2020-05-05 18:41:23.794875"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsum"], ["description", "Laborum aperiam ea consectetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.796251"], ["updated_at", "2020-05-05 18:41:23.796251"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Eos et qui officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.797548"], ["updated_at", "2020-05-05 18:41:23.797548"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Voluptatem in et ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.798842"], ["updated_at", "2020-05-05 18:41:23.798842"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officiis"], ["description", "Molestiae quaerat sit autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.800187"], ["updated_at", "2020-05-05 18:41:23.800187"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "similique"], ["description", "Unde sed omnis sequi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.801600"], ["updated_at", "2020-05-05 18:41:23.801600"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Ut consequuntur enim dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.804117"], ["updated_at", "2020-05-05 18:41:23.804117"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Florrie Ryan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$We8diHAw29w1.YtzRS8GrucZz2vWzaJpxig2Yg5xjrQB8PGzSRCiG"], ["created_at", "2020-05-05 18:41:23.807838"], ["updated_at", "2020-05-05 18:41:23.807838"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:41:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.57ms) +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 15:41:23 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Unde velit expedita culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.843587"], ["updated_at", "2020-05-05 18:41:23.843587"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Vel reiciendis voluptas incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.848553"], ["updated_at", "2020-05-05 18:41:23.848553"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Minus officiis ut quisquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.850133"], ["updated_at", "2020-05-05 18:41:23.850133"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Dolor minima quis natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.851459"], ["updated_at", "2020-05-05 18:41:23.851459"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloremque"], ["description", "Quia sint earum mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.852800"], ["updated_at", "2020-05-05 18:41:23.852800"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "reiciendis"], ["description", "Mollitia qui tenetur voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.854239"], ["updated_at", "2020-05-05 18:41:23.854239"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Aut labore iure ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.855617"], ["updated_at", "2020-05-05 18:41:23.855617"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eligendi"], ["description", "Sit qui natus corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.856961"], ["updated_at", "2020-05-05 18:41:23.856961"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "libero"], ["description", "Voluptatem deleniti eius ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.858263"], ["updated_at", "2020-05-05 18:41:23.858263"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Quia quibusdam a dicta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.859587"], ["updated_at", "2020-05-05 18:41:23.859587"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Raymundo Yost"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rcMGPsi6Vyl.u1CM/gI7dO2F9g1GvHiHWflVNnxAQ9yWDEXnFfT6."], ["created_at", "2020-05-05 18:41:23.863057"], ["updated_at", "2020-05-05 18:41:23.863057"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:41:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.03ms) +Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:41:23 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (10.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Aut libero qui nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.886849"], ["updated_at", "2020-05-05 18:41:23.886849"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Distinctio dignissimos illo vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.889584"], ["updated_at", "2020-05-05 18:41:23.889584"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odit"], ["description", "Quo voluptatem error ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.891054"], ["updated_at", "2020-05-05 18:41:23.891054"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Odio et neque cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.892835"], ["updated_at", "2020-05-05 18:41:23.892835"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perspiciatis"], ["description", "Aut repellat debitis non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.894764"], ["updated_at", "2020-05-05 18:41:23.894764"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aperiam"], ["description", "At aliquam autem quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.896184"], ["updated_at", "2020-05-05 18:41:23.896184"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Ipsam aut eos ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.897501"], ["updated_at", "2020-05-05 18:41:23.897501"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quibusdam"], ["description", "Ipsam sit doloremque non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.898786"], ["updated_at", "2020-05-05 18:41:23.898786"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Neque quo aspernatur et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.900064"], ["updated_at", "2020-05-05 18:41:23.900064"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Excepturi laboriosam voluptates praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.901398"], ["updated_at", "2020-05-05 18:41:23.901398"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Laurette Crooks"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Y90wFRcHohfSylEUrDxwTOVzEcRGNmyOq3vNQw5q8fImIAshdbb9K"], ["created_at", "2020-05-05 18:41:23.904494"], ["updated_at", "2020-05-05 18:41:23.904494"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:41:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.14ms) +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 15:41:23 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:41:23.930584"], ["updated_at", "2020-05-05 18:41:23.930584"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.57ms) +Completed 201 Created in 22ms (Views: 1.0ms | ActiveRecord: 1.1ms | Allocations: 6207) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quae"], ["description", "Voluptas quis sunt voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.949298"], ["updated_at", "2020-05-05 18:41:23.949298"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquam"], ["description", "Rem non et optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.952161"], ["updated_at", "2020-05-05 18:41:23.952161"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Aut quod nemo qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.953810"], ["updated_at", "2020-05-05 18:41:23.953810"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "a"], ["description", "Praesentium vel ad inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.955131"], ["updated_at", "2020-05-05 18:41:23.955131"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloribus"], ["description", "Aut excepturi commodi repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.956451"], ["updated_at", "2020-05-05 18:41:23.956451"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facilis"], ["description", "Cupiditate ratione tempore labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.957758"], ["updated_at", "2020-05-05 18:41:23.957758"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quisquam"], ["description", "In quas dolorum ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.959390"], ["updated_at", "2020-05-05 18:41:23.959390"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aperiam"], ["description", "Consequuntur ut mollitia delectus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.961210"], ["updated_at", "2020-05-05 18:41:23.961210"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Eaque dolor et ullam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.962554"], ["updated_at", "2020-05-05 18:41:23.962554"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ab"], ["description", "Voluptas eveniet provident eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.964989"], ["updated_at", "2020-05-05 18:41:23.964989"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Adolfo Daniel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7Gyr.6KhMufAbMxM3rmDm.KolGM7H/GIba0t7fHzNhOyfGHAxI38G"], ["created_at", "2020-05-05 18:41:23.968512"], ["updated_at", "2020-05-05 18:41:23.968512"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:41:23 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.57ms) +Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.1ms | Allocations: 2842) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:41:23 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:41:23.980421"], ["updated_at", "2020-05-05 18:41:23.980421"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.55ms) +Completed 201 Created in 6ms (Views: 1.1ms | ActiveRecord: 0.7ms | Allocations: 2251) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vitae"], ["description", "Debitis cumque modi minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.993940"], ["updated_at", "2020-05-05 18:41:23.993940"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quod"], ["description", "Est velit cupiditate ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.997257"], ["updated_at", "2020-05-05 18:41:23.997257"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Aperiam dicta et labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:23.999558"], ["updated_at", "2020-05-05 18:41:23.999558"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Quasi aut accusamus voluptates."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.000999"], ["updated_at", "2020-05-05 18:41:24.000999"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "culpa"], ["description", "Omnis autem autem et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.002352"], ["updated_at", "2020-05-05 18:41:24.002352"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fuga"], ["description", "Repellat modi sit dolore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.004558"], ["updated_at", "2020-05-05 18:41:24.004558"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "inventore"], ["description", "Aut cum odit deleniti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.006636"], ["updated_at", "2020-05-05 18:41:24.006636"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Nemo ipsum et reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.008822"], ["updated_at", "2020-05-05 18:41:24.008822"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facilis"], ["description", "Provident officia numquam recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.010866"], ["updated_at", "2020-05-05 18:41:24.010866"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusamus"], ["description", "Non excepturi quia laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.012237"], ["updated_at", "2020-05-05 18:41:24.012237"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Marget Hammes"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HT5WCMWCWv4yvcayZMiKEOV1DhssGtDGathRaieMMUgIsXzYVk.Ji"], ["created_at", "2020-05-05 18:41:24.014899"], ["updated_at", "2020-05-05 18:41:24.014899"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 4006) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nesciunt"], ["description", "Blanditiis reiciendis recusandae iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.039938"], ["updated_at", "2020-05-05 18:41:24.039938"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "commodi"], ["description", "Ad maxime enim ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.043552"], ["updated_at", "2020-05-05 18:41:24.043552"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quod"], ["description", "Consequatur veniam repellendus beatae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.046368"], ["updated_at", "2020-05-05 18:41:24.046368"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corporis"], ["description", "Ratione ut aut quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.048746"], ["updated_at", "2020-05-05 18:41:24.048746"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Labore illo rem tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.050240"], ["updated_at", "2020-05-05 18:41:24.050240"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Vel non doloremque at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.051597"], ["updated_at", "2020-05-05 18:41:24.051597"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Quaerat sed ullam iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.052881"], ["updated_at", "2020-05-05 18:41:24.052881"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Soluta et iusto enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.054214"], ["updated_at", "2020-05-05 18:41:24.054214"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Nobis vero qui et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.055478"], ["updated_at", "2020-05-05 18:41:24.055478"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "Iste qui omnis perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.056818"], ["updated_at", "2020-05-05 18:41:24.056818"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Michal Kshlerin IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZBpjOb/lMCbqBYzBGCvewuDRvsoI7OGWmVFkWvMjqUZ0nYUJy8uei"], ["created_at", "2020-05-05 18:41:24.059683"], ["updated_at", "2020-05-05 18:41:24.059683"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.9ms | ActiveRecord: 0.2ms | Allocations: 2841) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 3697) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Assumenda consequatur aliquid qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.085908"], ["updated_at", "2020-05-05 18:41:24.085908"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ex"], ["description", "Iusto facilis libero aliquid."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.089248"], ["updated_at", "2020-05-05 18:41:24.089248"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "debitis"], ["description", "Accusamus blanditiis architecto et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.091484"], ["updated_at", "2020-05-05 18:41:24.091484"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Nobis amet et nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.093455"], ["updated_at", "2020-05-05 18:41:24.093455"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Rerum culpa qui fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.095034"], ["updated_at", "2020-05-05 18:41:24.095034"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "in"], ["description", "At dolorum enim aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.096391"], ["updated_at", "2020-05-05 18:41:24.096391"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Quo labore voluptate vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.097751"], ["updated_at", "2020-05-05 18:41:24.097751"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ullam"], ["description", "Repellendus consequatur beatae expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.099045"], ["updated_at", "2020-05-05 18:41:24.099045"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Voluptatum rerum dignissimos saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.100445"], ["updated_at", "2020-05-05 18:41:24.100445"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellat"], ["description", "Corporis ratione asperiores ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.101770"], ["updated_at", "2020-05-05 18:41:24.101770"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mandi Wisoky I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$M4d1356gyt3xF7x0Y4RWZO3BG4Bg.9VLAcB3knuumtrgDzgFHFETC"], ["created_at", "2020-05-05 18:41:24.105144"], ["updated_at", "2020-05-05 18:41:24.105144"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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 PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:41:24.117226"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 1044) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Laborum aperiam excepturi adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.128585"], ["updated_at", "2020-05-05 18:41:24.128585"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fuga"], ["description", "Voluptatem exercitationem cupiditate est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.131749"], ["updated_at", "2020-05-05 18:41:24.131749"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sapiente"], ["description", "Ut nam repellat est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.134023"], ["updated_at", "2020-05-05 18:41:24.134023"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusantium"], ["description", "Velit consequuntur voluptas distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.135875"], ["updated_at", "2020-05-05 18:41:24.135875"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veniam"], ["description", "Possimus quas sunt minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.137233"], ["updated_at", "2020-05-05 18:41:24.137233"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolore"], ["description", "Molestiae quo temporibus mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.138529"], ["updated_at", "2020-05-05 18:41:24.138529"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "alias"], ["description", "Voluptatum est optio qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.139818"], ["updated_at", "2020-05-05 18:41:24.139818"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Nihil iusto illo quaerat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.141093"], ["updated_at", "2020-05-05 18:41:24.141093"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Commodi ipsa et quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.142347"], ["updated_at", "2020-05-05 18:41:24.142347"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Ea sed qui voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.144637"], ["updated_at", "2020-05-05 18:41:24.144637"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nu Franecki"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GDSfXNwlRCW6rU/rcHlp.OvRC.VYQOU60OWQRTJbDwjKt/gEi8TE6"], ["created_at", "2020-05-05 18:41:24.148929"], ["updated_at", "2020-05-05 18:41:24.148929"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.3ms | ActiveRecord: 0.1ms | Allocations: 2843) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.2ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:41:24.159376"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 999) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "libero"], ["description", "Sint nisi ut eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.170484"], ["updated_at", "2020-05-05 18:41:24.170484"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "excepturi"], ["description", "Sed sapiente maiores iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.173751"], ["updated_at", "2020-05-05 18:41:24.173751"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Qui dignissimos velit est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.176096"], ["updated_at", "2020-05-05 18:41:24.176096"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Nobis natus quam voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.178233"], ["updated_at", "2020-05-05 18:41:24.178233"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quasi"], ["description", "Alias possimus tenetur odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.179904"], ["updated_at", "2020-05-05 18:41:24.179904"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempore"], ["description", "Provident nemo qui tenetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.181173"], ["updated_at", "2020-05-05 18:41:24.181173"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Rerum voluptas iste quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.182451"], ["updated_at", "2020-05-05 18:41:24.182451"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magni"], ["description", "Esse qui at corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.183909"], ["updated_at", "2020-05-05 18:41:24.183909"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "excepturi"], ["description", "Voluptas itaque eos ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.186626"], ["updated_at", "2020-05-05 18:41:24.186626"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Accusamus voluptas est impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:41:24.188884"], ["updated_at", "2020-05-05 18:41:24.188884"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Santiago Altenwerth"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ztrX7ltGlU5xyFEcFLd5euBHpFExlLUlcur/11PU26LAo6z8lcq6G"], ["created_at", "2020-05-05 18:41:24.191554"], ["updated_at", "2020-05-05 18:41:24.191554"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.21ms) +Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.6ms | Allocations: 1205) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cherie Leannon"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$o70RHZPiu7LrcPEVBlVYrOzKZnWJ88Z4HnH0XPUZTvboRgWWGdZ5O"], ["created_at", "2020-05-05 18:41:24.216771"], ["updated_at", "2020-05-05 18:41:24.216771"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rudolf Labadie"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$k7cL1ol3m5Kv/UvlqMDYB.3RJ.OrjL5FueXGrbq5j9B8EMuQ2bFqO"], ["created_at", "2020-05-05 18:41:24.221752"], ["updated_at", "2020-05-05 18:41:24.221752"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Duncan Friesen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Mc/ynY8xbbUgl577LuppDO58nsHfUOq65z8ulHHt84Jb8FNvyEC5u"], ["created_at", "2020-05-05 18:41:24.225450"], ["updated_at", "2020-05-05 18:41:24.225450"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nelle Lowe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ioVAC3Ql3i..6Df.I2ynR.teS2vCLK/iBvjZSQNhfmC6M8lk7QJ76"], ["created_at", "2020-05-05 18:41:24.230201"], ["updated_at", "2020-05-05 18:41:24.230201"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tajuana Greenfelder"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.IwULBws4Kv77evHqWF7ceuL/wnhl3S9odWOYuzTPnqj1jHonEhjK"], ["created_at", "2020-05-05 18:41:24.233141"], ["updated_at", "2020-05-05 18:41:24.233141"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Talisha Weber"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$k/82m8Unc3vu2nZQnG8BgudCyzeZ5nxVg7sD8etxqNbeBC/vPMysy"], ["created_at", "2020-05-05 18:41:24.235557"], ["updated_at", "2020-05-05 18:41:24.235557"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Kerry Little"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UckojC5y6KRJ9UJhRJx56.YQIBje2KeSOD2sVEhv7jaVyCI7h6H/2"], ["created_at", "2020-05-05 18:41:24.237926"], ["updated_at", "2020-05-05 18:41:24.237926"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Chadwick Ondricka"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$uvR6Pqg2XRRMriej8tfU1eQ1VWHg1HsEKQ56N9tEJHpLhhlUd.sVK"], ["created_at", "2020-05-05 18:41:24.240262"], ["updated_at", "2020-05-05 18:41:24.240262"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Pamala Wisoky"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$26674AVP4kqB1CUqdLMGDOvKopL/w0gugQw4qra3FqYYMO3M3HcxC"], ["created_at", "2020-05-05 18:41:24.242745"], ["updated_at", "2020-05-05 18:41:24.242745"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Norman Lind"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Odms.L36S3kLTspsopN2Au4GWxeo6u1oKJMwhZlcHZskIOn/IfQ4e"], ["created_at", "2020-05-05 18:41:24.246562"], ["updated_at", "2020-05-05 18:41:24.246562"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.94ms) +Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms | Allocations: 2345) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Weldon Miller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tETbOb4x9uAcVps/OZUEauY3cMtuEAZqP0ZWn1Je0XZStFuLmac6W"], ["created_at", "2020-05-05 18:41:24.267953"], ["updated_at", "2020-05-05 18:41:24.267953"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Dylan Herzog"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Cm4QjwpWXL3cgP6lIX/3meyKfq7BaDqZxTQs.3QH00YFBIpTAYP5O"], ["created_at", "2020-05-05 18:41:24.272170"], ["updated_at", "2020-05-05 18:41:24.272170"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Joel Kirlin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Bs41XC4yw0XiQO7KxP4xD.BDkjLsUExuhFy1mK9ul4tZgTk/nfDie"], ["created_at", "2020-05-05 18:41:24.275156"], ["updated_at", "2020-05-05 18:41:24.275156"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Silas Huels Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2GQy48ZyigBNH2JCjv.In.54qGsVQaAJc9HIicL6YH2gCeC2Vs3J."], ["created_at", "2020-05-05 18:41:24.278697"], ["updated_at", "2020-05-05 18:41:24.278697"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Minh Fay"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$zsgND.hW8s9cIDL9EKE7juZ9s9koIQjWBxjzZv9VE31K99Z2YNLdi"], ["created_at", "2020-05-05 18:41:24.281485"], ["updated_at", "2020-05-05 18:41:24.281485"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Raphael Bartell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oHPldP.CC8VcnD7Hlvz/c.iPlK.m8iUeUkjwP4BY10Lb9ceFRf3dy"], ["created_at", "2020-05-05 18:41:24.284348"], ["updated_at", "2020-05-05 18:41:24.284348"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Jake O'Kon"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$22VVeY3V0MBoStBtP9mZSOQqIxwPHmZ9mkBvasfaqc1GyrJTf9mJC"], ["created_at", "2020-05-05 18:41:24.288434"], ["updated_at", "2020-05-05 18:41:24.288434"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Darrick Conroy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pyAjah2IX5YpKB6TjdsqXuatCvUaDkihxDc6sbFKMr4RDfYVfiV0m"], ["created_at", "2020-05-05 18:41:24.291854"], ["updated_at", "2020-05-05 18:41:24.291854"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Chantay Waelchi"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8LUeTgqbv2Ikr54F7wJs4e8jsUWRS80W2bGAR.gpJPbqIB26fRSlS"], ["created_at", "2020-05-05 18:41:24.294912"], ["updated_at", "2020-05-05 18:41:24.294912"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bea Prohaska"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$lJTyYrhro50OdPJy9cTOneaSVQNsmejy.cUWmLQuxkaALg4SdWM0m"], ["created_at", "2020-05-05 18:41:24.297846"], ["updated_at", "2020-05-05 18:41:24.297846"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.92ms) +Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.1ms | Allocations: 2203) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Patrick Abshire"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$flFue0OxQou7JrSGZmftq.4ito1rV2OEO/NB9sc2p0RGoxdb1YhZq"], ["created_at", "2020-05-05 18:41:24.316282"], ["updated_at", "2020-05-05 18:41:24.316282"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Wilbur Oberbrunner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KyInlqiCbHphHVCtI//fxOfCyM0upminITCKYMk8T1UO3StWMoDXq"], ["created_at", "2020-05-05 18:41:24.321275"], ["updated_at", "2020-05-05 18:41:24.321275"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Donnell Kuhlman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DJZ.iWDZKXcWoxcsjhHLp.kPz/mdIZ0JRwkPa8Cgq8oyVA3wcrf7u"], ["created_at", "2020-05-05 18:41:24.324210"], ["updated_at", "2020-05-05 18:41:24.324210"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jonathan Borer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4jGCs6TQaxT8y68WV1zdEeXkXa152/bXF2oMzS9bJpQkDxpMGisYm"], ["created_at", "2020-05-05 18:41:24.329451"], ["updated_at", "2020-05-05 18:41:24.329451"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hermine Crona"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CySXyGDxc6kvi8ljQzAEeODwnvWHlcBtMFy4fPJ6y/YHwDS6fkJoi"], ["created_at", "2020-05-05 18:41:24.332592"], ["updated_at", "2020-05-05 18:41:24.332592"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marhta Stiedemann I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$wCQCGDnSAGPnS2Q2N1bBdeLaD9GeJ/M17qfk7eoRhXbYVKcJN47MS"], ["created_at", "2020-05-05 18:41:24.335030"], ["updated_at", "2020-05-05 18:41:24.335030"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Hettie Koch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kG4x7ytKvAmZA/vwJ7n5N.v/qktrc/q8.Yy1iNXT0cgkMXq8oLOiC"], ["created_at", "2020-05-05 18:41:24.337397"], ["updated_at", "2020-05-05 18:41:24.337397"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Modesto Lehner I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$161ayD.RUJ2e5GEig2yu/Oa4BAR9PCvBPoFUmYJkncZlcWqHbdm.O"], ["created_at", "2020-05-05 18:41:24.339740"], ["updated_at", "2020-05-05 18:41:24.339740"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Loria Harber"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$J3a9tMgvoGJEcsjOMXMhI.y0tQM0NfztIAhwu2nOWagcA484dh0Ne"], ["created_at", "2020-05-05 18:41:24.342164"], ["updated_at", "2020-05-05 18:41:24.342164"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Rufus Jacobi"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$EHS3RZ0aSXjiV55aNufph.tg.mOGswZT6agm02VAyjfwCk0g0ugXi"], ["created_at", "2020-05-05 18:41:24.345786"], ["updated_at", "2020-05-05 18:41:24.345786"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.06ms) +Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.4ms) +Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Robt Balistreri MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LQ5EUIeEuv8JNMwCkD8GcOLCMTHfMA/0rXG2xEeZ8av66KxHAGUdW"], ["created_at", "2020-05-05 18:41:24.368234"], ["updated_at", "2020-05-05 18:41:24.368234"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ayana Quitzon"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KttY.5e.SxR/odmZN/IGg.SS.nXQkjPIxvWphg0SrGqtUNwkd5wvO"], ["created_at", "2020-05-05 18:41:24.372608"], ["updated_at", "2020-05-05 18:41:24.372608"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alva Blick"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HZDQVetns1oQEIKx9i3vnujvVgRXK/bDInaFSTrfwTSdqY4JrQXDy"], ["created_at", "2020-05-05 18:41:24.375658"], ["updated_at", "2020-05-05 18:41:24.375658"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Librada Lubowitz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$V2PAOA.VwKgshhxFJVp3ROdnwGL3D1i3xlVK59KJhY1iR.tSn1Wfa"], ["created_at", "2020-05-05 18:41:24.379369"], ["updated_at", "2020-05-05 18:41:24.379369"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Theo Yundt"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KBRVWoN3xAjub8sW5s1SZuWNm3PTvYYIyvmZEz4sbShBfgFWZymXa"], ["created_at", "2020-05-05 18:41:24.382526"], ["updated_at", "2020-05-05 18:41:24.382526"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Emelda Marks"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QxH12qW2J3wsMv.AM7MoneDjSEPblF2zEdbs4uAiSdbxgQlYg69lG"], ["created_at", "2020-05-05 18:41:24.386258"], ["updated_at", "2020-05-05 18:41:24.386258"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Clark Dibbert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HzTpnGbCDedhjhfHPfKjnedZY/PRflithax1lRKgbKBG60zXsLBji"], ["created_at", "2020-05-05 18:41:24.390017"], ["updated_at", "2020-05-05 18:41:24.390017"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ronny Robel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fNq7HE5XYfReCo9kq9gEV.8m4dnxPZBzMUPfv9UeZUiiS0gUcpuVC"], ["created_at", "2020-05-05 18:41:24.393197"], ["updated_at", "2020-05-05 18:41:24.393197"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bill McCullough"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YmHBCSFz.0Yuhqpaa6ayaeBWY.Of3MpkNKB5J5JePzE5H91rpDile"], ["created_at", "2020-05-05 18:41:24.396190"], ["updated_at", "2020-05-05 18:41:24.396190"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Aundrea Wilderman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VLzmdcCqtYou5YYORZYIMusRm4gBsO7xTZPxz1jhitNyk/WezTSjO"], ["created_at", "2020-05-05 18:41:24.398955"], ["updated_at", "2020-05-05 18:41:24.398955"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.47ms) +Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.69ms) +Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.9ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Maximo Prohaska"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GCMCAqzgIbSbhYk5q.CIJuT.n1hykVRABTKRGWtnNHU4UYM0pC39C"], ["created_at", "2020-05-05 18:41:24.422108"], ["updated_at", "2020-05-05 18:41:24.422108"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Joana Nolan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$p5t.4PZKC5T.xnBlaPIsseoq5.wQ0lE1S6n0ZGQeYO0Qj0dCoRVQy"], ["created_at", "2020-05-05 18:41:24.428853"], ["updated_at", "2020-05-05 18:41:24.428853"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Maximo Brown"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$K5eXXt22Qzzf81R26MHGhO/eQYNffhxONfuuJeS0UVK5AKkkF0zwi"], ["created_at", "2020-05-05 18:41:24.432722"], ["updated_at", "2020-05-05 18:41:24.432722"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lennie Beer II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xSRUEOTe9xFF.iotgGXmXe5SSm9IOh0Iwe6adZVYtf8pqJ7R2qVbe"], ["created_at", "2020-05-05 18:41:24.435925"], ["updated_at", "2020-05-05 18:41:24.435925"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kandra Jones"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LxSnVePWSUD7azuO0hcVFOHqape9tSyRrfP/i72JMVoeVnupYKHxO"], ["created_at", "2020-05-05 18:41:24.438722"], ["updated_at", "2020-05-05 18:41:24.438722"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kasey Kihn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$AT.CC4RGMC00B37F13zSwe4vizxkNfumZgzb6rfnkG.rzmsRlKBOa"], ["created_at", "2020-05-05 18:41:24.441531"], ["updated_at", "2020-05-05 18:41:24.441531"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jeromy Farrell I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$IdH60i8hagnBtuwX1fGfR.unzRKbRV1kgxINFTW.QRkaLYe.z8e/O"], ["created_at", "2020-05-05 18:41:24.444823"], ["updated_at", "2020-05-05 18:41:24.444823"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shelby Nienow"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Zm5.CY7RejnFUaQZKR/qGOBvzTYEnqwNZnWqKF0SMxJPCle31gb2q"], ["created_at", "2020-05-05 18:41:24.448388"], ["updated_at", "2020-05-05 18:41:24.448388"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Carie Schneider III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xIkQRhOHXPb1Op6dVb4WceaLs5iaiFQTghhHUQKLCGMnIHmlYF1Oq"], ["created_at", "2020-05-05 18:41:24.451492"], ["updated_at", "2020-05-05 18:41:24.451492"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Orval Hoppe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/Zml/zkgrYoDa0SqX/HjAOEBel2.V.2tZsMonqE6raBLmmvB98Ndm"], ["created_at", "2020-05-05 18:41:24.454338"], ["updated_at", "2020-05-05 18:41:24.454338"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.36ms) +Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 524) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ghislaine McClure"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$j1X5JUDMQ5dmHGiBK9hr6uA2xHTcfN8roy4hN/bbCDP6kkD2MecES"], ["created_at", "2020-05-05 18:41:24.475937"], ["updated_at", "2020-05-05 18:41:24.475937"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tegan Lueilwitz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$AF.TneDfceGv86jlG1U9BO6x3SUsyXVvH5P3xZBDA9Ufz5BzjBmw6"], ["created_at", "2020-05-05 18:41:24.480591"], ["updated_at", "2020-05-05 18:41:24.480591"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bradly Smith"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$w9j4hcpg05iFGstbWnMbIOyojKD7MWrE8YCPC8PDqbkaj8vRuEogi"], ["created_at", "2020-05-05 18:41:24.483819"], ["updated_at", "2020-05-05 18:41:24.483819"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Johnie Schmitt"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fXal8VF9OkNb8RkmkLc6Me11sT2L03ldM5MLMD4KNJmvezXSzNfQS"], ["created_at", "2020-05-05 18:41:24.487279"], ["updated_at", "2020-05-05 18:41:24.487279"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jon Larson Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rIt6f6aWL/4J.Fq.VGeDs.Uxa9t0inSeWjIGncJHYxwfzWocY.UfK"], ["created_at", "2020-05-05 18:41:24.490711"], ["updated_at", "2020-05-05 18:41:24.490711"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sung Russel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$iwKjdaBN34eAHfBS9k6rQOEt8ofuEMfwx6DnGYIjhZPUpHBlAmrKe"], ["created_at", "2020-05-05 18:41:24.494060"], ["updated_at", "2020-05-05 18:41:24.494060"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Annmarie Carter"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$21czI3p6gm3.3BKDeiEKCe.WIZLkmqcHCTK4hw.KCmJgfKe/A0sM6"], ["created_at", "2020-05-05 18:41:24.497001"], ["updated_at", "2020-05-05 18:41:24.497001"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Blossom Powlowski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1LRygWmZL58UaOlvwRG9Ke.tpCj9TgaDL9nIPBE6TI5tRN508ectG"], ["created_at", "2020-05-05 18:41:24.499697"], ["updated_at", "2020-05-05 18:41:24.499697"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mohammad Stanton"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$83avZBPY1K0SthTgEENOx.UBnnODzq047V4feWXYLSgDP0rSQ8McS"], ["created_at", "2020-05-05 18:41:24.502336"], ["updated_at", "2020-05-05 18:41:24.502336"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Monte Luettgen I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jQ2Aa.DZ2B1pMrKJOpi3jebJkH7Pkd/dchKOYvmcKAhTKR2/3qMjS"], ["created_at", "2020-05-05 18:41:24.505149"], ["updated_at", "2020-05-05 18:41:24.505149"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.93ms) +Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 526) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Filiberto Heidenreich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jbhir41F0hStzvplmdggeOR9/nmpugPkbf7UegN9BHvbfGdju8ONi"], ["created_at", "2020-05-05 18:41:24.541220"], ["updated_at", "2020-05-05 18:41:24.541220"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Brett Dickens"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.QQQtgKi3INlFZB/d1KfH.JW0n0dnF20OzvMy3al1fI71VLvxixbu"], ["created_at", "2020-05-05 18:41:24.545720"], ["updated_at", "2020-05-05 18:41:24.545720"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lynwood Homenick"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ypIp2gvNFqKOsVJSwBw7gOXanZq3zIj8zQsdH/SI.vAKik.yNpFLS"], ["created_at", "2020-05-05 18:41:24.549415"], ["updated_at", "2020-05-05 18:41:24.549415"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "An Feest"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$I.13Ubs.o85fw/ntYUil6uKAKg10NeUcHxDly1lS4B298aV5Vtwlq"], ["created_at", "2020-05-05 18:41:24.553097"], ["updated_at", "2020-05-05 18:41:24.553097"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Kristopher Balistreri"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.8uOR6K4C0LQvKKRHRXvi.AKGxumP6dcZv9MAZQ5yeYdPhvxYm35S"], ["created_at", "2020-05-05 18:41:24.556039"], ["updated_at", "2020-05-05 18:41:24.556039"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rocco Mosciski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UHexqJNPOHVNRycwU.rTCeFJb6bhOySRHIS.LJxTX0RTKBlNRx5L6"], ["created_at", "2020-05-05 18:41:24.558881"], ["updated_at", "2020-05-05 18:41:24.558881"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Damion Strosin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mkM1Vh78j7ziFNCzOy8de.S3tb1ar6TKDp3A4Z4dm2etTN04utNCC"], ["created_at", "2020-05-05 18:41:24.562198"], ["updated_at", "2020-05-05 18:41:24.562198"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Edie Harvey"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$zacRBbImGYhKS5UchWCt.OGGiIS4qTsA4xCKYefbD9tmcv.3.FXze"], ["created_at", "2020-05-05 18:41:24.565135"], ["updated_at", "2020-05-05 18:41:24.565135"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kena Sauer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SfevHumlOIyBhWXehabiMuYYkve.fGtv7Z6NaPmQnv7kPupaFKLyG"], ["created_at", "2020-05-05 18:41:24.568500"], ["updated_at", "2020-05-05 18:41:24.568500"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Luigi Bradtke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$P84oK88h4c/Qzu/7g9sle.Ivbp9bCaxvsoWm1PgD10FcGup7Xc8o2"], ["created_at", "2020-05-05 18:41:24.571949"], ["updated_at", "2020-05-05 18:41:24.571949"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.26ms) +Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms | Allocations: 2204) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Sheyla", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "email"=>"shey@mail.com"} +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sheyla"], ["email", "shey@mail.com"], ["password_digest", "$2a$04$Ef1JDH0MrwJ9YBUfIzXUmu6VpPUVsy2qxgY4462vSo5Ng0OOddbIK"], ["created_at", "2020-05-05 18:41:24.582907"], ["updated_at", "2020-05-05 18:41:24.582907"], ["picture", "https://joeschmoe.io/api/v1/jess"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.72ms) +Completed 201 Created in 12ms (Views: 1.4ms | ActiveRecord: 0.6ms | Allocations: 1716) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Felton Champlin V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VXvsA6WnONaipDPEKzm0OOskdlUHHvinvHggSSS/MJJpyaEYZqMGe"], ["created_at", "2020-05-05 18:41:24.639745"], ["updated_at", "2020-05-05 18:41:24.639745"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Eli Zieme"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZXVTNOoFQcrbK5kkiT4.uOnebsGMhxXxA5hYCfh8dIhNtCjhN0/1q"], ["created_at", "2020-05-05 18:41:24.644839"], ["updated_at", "2020-05-05 18:41:24.644839"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jesenia Witting"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5omSsPhvd3NfS18O3ojf9OTYyBM5p/Rjjb2tkKAgzluWdADjt13gW"], ["created_at", "2020-05-05 18:41:24.648671"], ["updated_at", "2020-05-05 18:41:24.648671"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Andre Mitchell III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$758a5HXWvpA.YUe2NtLfo.uZxClAL5NKWaxSfTmkKMKfdBC1WvUN."], ["created_at", "2020-05-05 18:41:24.652555"], ["updated_at", "2020-05-05 18:41:24.652555"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ka Klocko"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WuBveMfvP6YCvPRQp6nLt.CA8VFhbM4kWdGAxHm3Ep7fq2IgMpE/W"], ["created_at", "2020-05-05 18:41:24.655656"], ["updated_at", "2020-05-05 18:41:24.655656"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lael Gleichner I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3UlY7lt.EA/L9Vi4hlDR6.sPiio2nKpKyww7uXaa1BZXClcxMJne."], ["created_at", "2020-05-05 18:41:24.658541"], ["updated_at", "2020-05-05 18:41:24.658541"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Manuel Fritsch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$iNc1FZKasRJ2oG7yt9S5Au.4ndFpZvUUOtsx8336.KRAYPzTOFS3K"], ["created_at", "2020-05-05 18:41:24.661793"], ["updated_at", "2020-05-05 18:41:24.661793"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Richard Blick"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Nrk/N2L6y4wU2MimUR57I.H3lRilCPArAntrzpbL/JaK90uv3pfh6"], ["created_at", "2020-05-05 18:41:24.664725"], ["updated_at", "2020-05-05 18:41:24.664725"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bennie Koepp"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CdCWCl7lFlmEjpTDVfKfnOu2XxL7/nL4QgDgCbX215uvZWEbbEcEK"], ["created_at", "2020-05-05 18:41:24.667634"], ["updated_at", "2020-05-05 18:41:24.667634"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dina Gutmann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$J.JoKM6EhIUeVKCeneydTeLhcGnu4m7bexeySEtKwnzg7s2Z/13zO"], ["created_at", "2020-05-05 18:41:24.671077"], ["updated_at", "2020-05-05 18:41:24.671077"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.66ms) +Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Sheyla", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "email"=>"shey@mail.com"} +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sheyla"], ["email", "shey@mail.com"], ["password_digest", "$2a$04$fw6hZWDzo4blv.hAtvuEnegmcTfgxguF5eMe27gooxX2IPOQsxRSm"], ["created_at", "2020-05-05 18:41:24.682086"], ["updated_at", "2020-05-05 18:41:24.682086"], ["picture", "https://joeschmoe.io/api/v1/jean"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.41ms) +Completed 201 Created in 7ms (Views: 0.9ms | ActiveRecord: 0.3ms | Allocations: 1329) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Ross Konopelski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6rOOZqLtv4nzzRi1JDMqd.kz27o4XXozSygXBCQ97p5kyymRz6YCu"], ["created_at", "2020-05-05 18:41:24.698424"], ["updated_at", "2020-05-05 18:41:24.698424"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rashad Kuvalis"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8zRvHYf7zCbtg15/9dNIR.F9S.aQUXi3Wdf18rra/bVtuvC6sBmK2"], ["created_at", "2020-05-05 18:41:24.702697"], ["updated_at", "2020-05-05 18:41:24.702697"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Melvin Kilback"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$V6ABxTPqmdhsAjevKMNhI.gL45L9GZTu6L7cSvgJUc9drrzm8xxXm"], ["created_at", "2020-05-05 18:41:24.705713"], ["updated_at", "2020-05-05 18:41:24.705713"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rickie Pfeffer II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$uQ1uMVJmNvE4qHTwBA7bi.QnWfdt9nNcRMxUWbuNYAZbia/.2XRGG"], ["created_at", "2020-05-05 18:41:24.709383"], ["updated_at", "2020-05-05 18:41:24.709383"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Graciela Gislason"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VGplhqaR/K9mBORRuQEElOsT8nolPUG1zxzk8sXoSMGYxwe5AH4lS"], ["created_at", "2020-05-05 18:41:24.713862"], ["updated_at", "2020-05-05 18:41:24.713862"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Buddy Heaney"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RkevIXlwezqrG67MhgCJVustzuYh1/MoWlj5FLhcZdFMG2s2pzzza"], ["created_at", "2020-05-05 18:41:24.716866"], ["updated_at", "2020-05-05 18:41:24.716866"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Harvey Witting"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dtkjk01SEeouaWHyL4/gJuZillgaIz4UORPwFh4J0aB/ZuM0GSaRK"], ["created_at", "2020-05-05 18:41:24.719605"], ["updated_at", "2020-05-05 18:41:24.719605"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Winston Hintz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.V7YkM40QPqT9wgACjB8ZeyNqip5Fid.w5ghvXFJmlPjRMbx1m/m."], ["created_at", "2020-05-05 18:41:24.722334"], ["updated_at", "2020-05-05 18:41:24.722334"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Vennie Waters"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/uuJpujXqntOjbjkZayV4.sYsqk47fKjiW3rsen/Mt9YcYU1d6X.y"], ["created_at", "2020-05-05 18:41:24.725178"], ["updated_at", "2020-05-05 18:41:24.725178"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Adam Marvin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xYPblJ9.HNgJR3rZsxHmW.1PboVM40VBfBq.LUvSNAP/QIdR0K1q6"], ["created_at", "2020-05-05 18:41:24.729264"], ["updated_at", "2020-05-05 18:41:24.729264"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.95ms) +Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Foobar"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms) +Completed 401 Unauthorized in 3ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 1817) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (32.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kimberley Kemmer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hdUA4t.8ukwNXyZVJ99shOy01zqFPMUepuRqqZF6huzlAc752aD4y"], ["created_at", "2020-05-05 18:41:24.778024"], ["updated_at", "2020-05-05 18:41:24.778024"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Roberto Gutmann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aZUBd56JcHNEBMMEYtk1NeOlmXgGJrQZqGsQzLQf1wUhpr19Z576."], ["created_at", "2020-05-05 18:41:24.783440"], ["updated_at", "2020-05-05 18:41:24.783440"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Armand Price"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5/mtog7j24Xryoj.imZM8u2HPfhYRFwhJdiVbssFVzRSK7gtmE6RO"], ["created_at", "2020-05-05 18:41:24.786530"], ["updated_at", "2020-05-05 18:41:24.786530"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mitchell Gutkowski DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$S9XMXGGFcXloIGUGDATM4uMrlclLU98wuM4YQrZYnGjmaqn3mUk5C"], ["created_at", "2020-05-05 18:41:24.791622"], ["updated_at", "2020-05-05 18:41:24.791622"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elliott Parisian"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$htzDsbB5D0KkWcP0SDl.5er2qS2GquIazSeaQXS7S46OHpLj9z2Ne"], ["created_at", "2020-05-05 18:41:24.796368"], ["updated_at", "2020-05-05 18:41:24.796368"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Milton Towne"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OKteQeoGQNhXSrzxiG8LNe6FsRiQj/e0/36JdLWSrd4BY5TwsXtpi"], ["created_at", "2020-05-05 18:41:24.799554"], ["updated_at", "2020-05-05 18:41:24.799554"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Toby Homenick"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CdTRlb7nA51/JkqjGC71eOtjUjKJc8CcGg1R1UYY/n/UptiLud0uC"], ["created_at", "2020-05-05 18:41:24.802803"], ["updated_at", "2020-05-05 18:41:24.802803"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Vonda Feest"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.lt9lAoIR1rlfc8vfzgCI.WJzkrUrz.UPX2Xq3ClaKkrokFrRqvdi"], ["created_at", "2020-05-05 18:41:24.805954"], ["updated_at", "2020-05-05 18:41:24.805954"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Felicidad Daugherty"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZAixOij0h59hckLfdex6aebUm7usSlclDsNuXHi8WNZ6e2ENu3MvO"], ["created_at", "2020-05-05 18:41:24.810271"], ["updated_at", "2020-05-05 18:41:24.810271"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tyree O'Hara"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$uZHd3NE.vyicyLBKnX1c/ONUb8LlGvLdcfRYh78jnZfDAdgdhZJ96"], ["created_at", "2020-05-05 18:41:24.814283"], ["updated_at", "2020-05-05 18:41:24.814283"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.89ms) +Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:41:24 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms) +Completed 401 Unauthorized in 3ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 1597) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (4.7ms) SELECT sqlite_version(*) +  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (115.6ms) DELETE FROM "meetings"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (94.7ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (166.0ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (93.5ms) DELETE FROM "meets"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (104.2ms) DELETE FROM "conversations"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (99.2ms) DELETE FROM "messagems"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (88.2ms) DELETE FROM "users"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.2ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (4.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Paris Balistreri DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BJIJD9sZApisUTiKmZ8zgOTTrxhitke8k8TfZxVWGdmZodQad1pgm"], ["created_at", "2020-05-05 18:42:08.917348"], ["updated_at", "2020-05-05 18:42:08.917348"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Molestiae minima veritatis repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:08.938921"], ["updated_at", "2020-05-05 18:42:08.938921"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit consequatur explicabo culpa?"], ["description", "Ex amet autem magni."], ["date", "2020-05-06 18:42:08.963333"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:08.989479"], ["updated_at", "2020-05-05 18:42:08.989479"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minus saepe aspernatur est?"], ["description", "Provident nemo repellendus minima."], ["date", "2020-05-06 18:42:08.991995"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:08.993727"], ["updated_at", "2020-05-05 18:42:08.993727"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est sequi illum quis?"], ["description", "Sint sit repudiandae possimus."], ["date", "2020-05-06 18:42:08.995368"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:08.996439"], ["updated_at", "2020-05-05 18:42:08.996439"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae explicabo numquam non?"], ["description", "Quis illo dolorem doloribus."], ["date", "2020-05-06 18:42:08.997746"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:08.998547"], ["updated_at", "2020-05-05 18:42:08.998547"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed molestiae rem qui?"], ["description", "Quas voluptas hic non."], ["date", "2020-05-06 18:42:08.999788"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.000549"], ["updated_at", "2020-05-05 18:42:09.000549"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis et consequuntur quam?"], ["description", "Quis ab laborum assumenda."], ["date", "2020-05-06 18:42:09.001733"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.002530"], ["updated_at", "2020-05-05 18:42:09.002530"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis impedit architecto omnis?"], ["description", "Quo impedit maxime vitae."], ["date", "2020-05-06 18:42:09.003715"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.004539"], ["updated_at", "2020-05-05 18:42:09.004539"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit quidem expedita nulla?"], ["description", "Aspernatur est ratione quia."], ["date", "2020-05-06 18:42:09.005768"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.006573"], ["updated_at", "2020-05-05 18:42:09.006573"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla quis suscipit quis?"], ["description", "Voluptate molestias consequatur totam."], ["date", "2020-05-06 18:42:09.007778"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.008536"], ["updated_at", "2020-05-05 18:42:09.008536"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit soluta libero rerum?"], ["description", "Et incidunt officia harum."], ["date", "2020-05-06 18:42:09.011362"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.012828"], ["updated_at", "2020-05-05 18:42:09.012828"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati veritatis beatae quia?"], ["description", "Est aut voluptate et."], ["date", "2020-05-06 18:42:09.014780"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.015702"], ["updated_at", "2020-05-05 18:42:09.015702"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est quia velit ipsum?"], ["description", "Sunt et aut vitae."], ["date", "2020-05-06 18:42:09.017143"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.017923"], ["updated_at", "2020-05-05 18:42:09.017923"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia sed voluptate sit?"], ["description", "Odit impedit aut dolorem."], ["date", "2020-05-06 18:42:09.019113"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.019874"], ["updated_at", "2020-05-05 18:42:09.019874"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At quaerat qui architecto?"], ["description", "Eligendi esse quis deleniti."], ["date", "2020-05-06 18:42:09.021021"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.021897"], ["updated_at", "2020-05-05 18:42:09.021897"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos dolores asperiores labore?"], ["description", "Optio corrupti dolor et."], ["date", "2020-05-06 18:42:09.023087"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.023888"], ["updated_at", "2020-05-05 18:42:09.023888"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi harum consequatur eius?"], ["description", "Expedita sunt sed enim."], ["date", "2020-05-06 18:42:09.025526"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.026319"], ["updated_at", "2020-05-05 18:42:09.026319"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum quas asperiores ad?"], ["description", "Voluptatem et laborum vitae."], ["date", "2020-05-06 18:42:09.027838"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.028820"], ["updated_at", "2020-05-05 18:42:09.028820"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et velit aliquid repellendus?"], ["description", "Modi nobis quo dolorum."], ["date", "2020-05-06 18:42:09.030181"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.031153"], ["updated_at", "2020-05-05 18:42:09.031153"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui omnis ex aut?"], ["description", "Et necessitatibus dolorem voluptatem."], ["date", "2020-05-06 18:42:09.033016"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.033974"], ["updated_at", "2020-05-05 18:42:09.033974"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id et et architecto?"], ["description", "Nihil quae vel ut."], ["date", "2020-05-06 18:42:09.035333"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.036143"], ["updated_at", "2020-05-05 18:42:09.036143"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:42:09 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (7.72ms) +Completed 200 OK in 35ms (Views: 16.0ms | ActiveRecord: 0.5ms | Allocations: 8636) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Benton Lowe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RpSE1EGnBMZS7kaVmWGPIuWzqaZXC6Vosc/hFljSoz5a42am7X4Nu"], ["created_at", "2020-05-05 18:42:09.124443"], ["updated_at", "2020-05-05 18:42:09.124443"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "saepe"], ["description", "Voluptatem quia neque velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:09.129396"], ["updated_at", "2020-05-05 18:42:09.129396"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim tempore doloribus itaque?"], ["description", "Magnam odit quo repudiandae."], ["date", "2020-05-06 18:42:09.131681"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.133272"], ["updated_at", "2020-05-05 18:42:09.133272"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et ipsum magnam vero?"], ["description", "Id accusamus laudantium esse."], ["date", "2020-05-06 18:42:09.135153"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.136045"], ["updated_at", "2020-05-05 18:42:09.136045"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque voluptatem esse quisquam?"], ["description", "Quae molestias et totam."], ["date", "2020-05-06 18:42:09.137289"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.138011"], ["updated_at", "2020-05-05 18:42:09.138011"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque sit rem quasi?"], ["description", "Repellat velit repellendus sit."], ["date", "2020-05-06 18:42:09.139424"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.140327"], ["updated_at", "2020-05-05 18:42:09.140327"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque maiores aut et?"], ["description", "Et iure ut et."], ["date", "2020-05-06 18:42:09.141993"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.142984"], ["updated_at", "2020-05-05 18:42:09.142984"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta laudantium eum aperiam?"], ["description", "Ea sint commodi qui."], ["date", "2020-05-06 18:42:09.144338"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.145161"], ["updated_at", "2020-05-05 18:42:09.145161"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et aut sit vero?"], ["description", "Eius sed debitis cumque."], ["date", "2020-05-06 18:42:09.146402"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.147143"], ["updated_at", "2020-05-05 18:42:09.147143"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi ut dignissimos sed?"], ["description", "Sunt adipisci non voluptatem."], ["date", "2020-05-06 18:42:09.148477"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.149665"], ["updated_at", "2020-05-05 18:42:09.149665"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At aliquid animi id?"], ["description", "Ullam et qui repudiandae."], ["date", "2020-05-06 18:42:09.151778"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.153030"], ["updated_at", "2020-05-05 18:42:09.153030"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut in consequuntur aliquid?"], ["description", "Velit hic ut odit."], ["date", "2020-05-06 18:42:09.155312"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.156295"], ["updated_at", "2020-05-05 18:42:09.156295"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur quidem corrupti ut?"], ["description", "Similique impedit esse nisi."], ["date", "2020-05-06 18:42:09.157598"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.158344"], ["updated_at", "2020-05-05 18:42:09.158344"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel eaque vel et?"], ["description", "Et eius ab porro."], ["date", "2020-05-06 18:42:09.160003"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.161033"], ["updated_at", "2020-05-05 18:42:09.161033"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto aut exercitationem similique?"], ["description", "Non ducimus quos et."], ["date", "2020-05-06 18:42:09.162489"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.163284"], ["updated_at", "2020-05-05 18:42:09.163284"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum molestias hic occaecati?"], ["description", "Ad facere maxime pariatur."], ["date", "2020-05-06 18:42:09.164588"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.165323"], ["updated_at", "2020-05-05 18:42:09.165323"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut totam et voluptatum?"], ["description", "Totam est esse et."], ["date", "2020-05-06 18:42:09.166668"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.167380"], ["updated_at", "2020-05-05 18:42:09.167380"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non amet odit voluptate?"], ["description", "Eius porro qui voluptatem."], ["date", "2020-05-06 18:42:09.168840"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.169576"], ["updated_at", "2020-05-05 18:42:09.169576"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum quis eaque minus?"], ["description", "Earum sint ratione illo."], ["date", "2020-05-06 18:42:09.170864"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.171879"], ["updated_at", "2020-05-05 18:42:09.171879"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint excepturi molestiae architecto?"], ["description", "Harum laborum quo debitis."], ["date", "2020-05-06 18:42:09.173940"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.174994"], ["updated_at", "2020-05-05 18:42:09.174994"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem quae est deleniti?"], ["description", "Sit dolores adipisci beatae."], ["date", "2020-05-06 18:42:09.176711"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.177759"], ["updated_at", "2020-05-05 18:42:09.177759"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia aliquid nobis veniam?"], ["description", "Commodi eveniet beatae tempora."], ["date", "2020-05-06 18:42:09.179091"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.179863"], ["updated_at", "2020-05-05 18:42:09.179863"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:42:09 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (9.08ms) +Completed 200 OK in 12ms (Views: 10.9ms | ActiveRecord: 0.2ms | Allocations: 5513) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (1.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Brenna Konopelski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QCrHDBijDmSLEpJE8JBzBeR871ujIgJNUEkaYI/gitkBGZ1hgTJ3u"], ["created_at", "2020-05-05 18:42:09.211707"], ["updated_at", "2020-05-05 18:42:09.211707"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "possimus"], ["description", "Aperiam rerum ab deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:09.216228"], ["updated_at", "2020-05-05 18:42:09.216228"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores aut porro iusto?"], ["description", "Eius possimus ad dolores."], ["date", "2020-05-06 18:42:09.218079"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.219052"], ["updated_at", "2020-05-05 18:42:09.219052"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus aut magnam odio?"], ["description", "Dignissimos nostrum ex aperiam."], ["date", "2020-05-06 18:42:09.220360"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.221105"], ["updated_at", "2020-05-05 18:42:09.221105"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet odio et dignissimos?"], ["description", "Voluptas velit fuga pariatur."], ["date", "2020-05-06 18:42:09.222382"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.223092"], ["updated_at", "2020-05-05 18:42:09.223092"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis quia mollitia dicta?"], ["description", "Laborum quo pariatur ut."], ["date", "2020-05-06 18:42:09.224396"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.225142"], ["updated_at", "2020-05-05 18:42:09.225142"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est saepe quaerat qui?"], ["description", "Tempore et praesentium velit."], ["date", "2020-05-06 18:42:09.226212"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.227188"], ["updated_at", "2020-05-05 18:42:09.227188"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor culpa ea modi?"], ["description", "Illo dolores veniam dolor."], ["date", "2020-05-06 18:42:09.228853"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.229724"], ["updated_at", "2020-05-05 18:42:09.229724"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime sunt sunt reiciendis?"], ["description", "Quo nam sint aperiam."], ["date", "2020-05-06 18:42:09.230905"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.231815"], ["updated_at", "2020-05-05 18:42:09.231815"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut omnis adipisci a?"], ["description", "Quae possimus ipsam similique."], ["date", "2020-05-06 18:42:09.234146"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.235688"], ["updated_at", "2020-05-05 18:42:09.235688"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut aspernatur id omnis?"], ["description", "Eius molestias facilis incidunt."], ["date", "2020-05-06 18:42:09.237204"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.238021"], ["updated_at", "2020-05-05 18:42:09.238021"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut consequatur et dignissimos?"], ["description", "Quo vero nobis qui."], ["date", "2020-05-06 18:42:09.258269"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.259441"], ["updated_at", "2020-05-05 18:42:09.259441"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id perferendis omnis doloremque?"], ["description", "At et aperiam in."], ["date", "2020-05-06 18:42:09.261706"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.262668"], ["updated_at", "2020-05-05 18:42:09.262668"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore voluptatem deserunt vel?"], ["description", "Harum reprehenderit doloremque expedita."], ["date", "2020-05-06 18:42:09.263920"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.264721"], ["updated_at", "2020-05-05 18:42:09.264721"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quia ea ratione?"], ["description", "Qui nobis tenetur cum."], ["date", "2020-05-06 18:42:09.265997"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.266708"], ["updated_at", "2020-05-05 18:42:09.266708"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Adipisci quo consequuntur impedit?"], ["description", "Pariatur provident facilis doloremque."], ["date", "2020-05-06 18:42:09.267922"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.268609"], ["updated_at", "2020-05-05 18:42:09.268609"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut aut quis laboriosam?"], ["description", "Harum possimus ut et."], ["date", "2020-05-06 18:42:09.269867"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.270560"], ["updated_at", "2020-05-05 18:42:09.270560"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora doloremque vel ea?"], ["description", "Qui maiores eligendi consectetur."], ["date", "2020-05-06 18:42:09.271913"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.273386"], ["updated_at", "2020-05-05 18:42:09.273386"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel illum enim nulla?"], ["description", "Et quia vel et."], ["date", "2020-05-06 18:42:09.274993"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.275961"], ["updated_at", "2020-05-05 18:42:09.275961"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure atque aut explicabo?"], ["description", "Iure dolorem est quam."], ["date", "2020-05-06 18:42:09.277954"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.278848"], ["updated_at", "2020-05-05 18:42:09.278848"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione cupiditate est quia?"], ["description", "Aut harum natus eligendi."], ["date", "2020-05-06 18:42:09.280072"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.280769"], ["updated_at", "2020-05-05 18:42:09.280769"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque laudantium autem non?"], ["description", "Veritatis qui sed unde."], ["date", "2020-05-06 18:42:09.281945"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.282624"], ["updated_at", "2020-05-05 18:42:09.282624"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:42:09 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 6ms (Views: 4.7ms | ActiveRecord: 0.1ms | Allocations: 866) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (24.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dexter Rowe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JYKj/kz4Mf.gHcPkyMds7eIPafvL1IlKjntDVAZrXx.vVENXzP4Ki"], ["created_at", "2020-05-05 18:42:09.320522"], ["updated_at", "2020-05-05 18:42:09.320522"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Aperiam aut dolores et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:09.326429"], ["updated_at", "2020-05-05 18:42:09.326429"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil dicta illum facere?"], ["description", "Ea est perferendis iure."], ["date", "2020-05-06 18:42:09.330744"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.333085"], ["updated_at", "2020-05-05 18:42:09.333085"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reiciendis nihil nihil dignissimos?"], ["description", "Voluptatibus veritatis tempora est."], ["date", "2020-05-06 18:42:09.337340"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.339843"], ["updated_at", "2020-05-05 18:42:09.339843"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui beatae numquam labore?"], ["description", "Eligendi tempora sit voluptas."], ["date", "2020-05-06 18:42:09.343077"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.345146"], ["updated_at", "2020-05-05 18:42:09.345146"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam totam consequatur ad?"], ["description", "Magni repudiandae placeat molestiae."], ["date", "2020-05-06 18:42:09.347940"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.349665"], ["updated_at", "2020-05-05 18:42:09.349665"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil sit quasi aut?"], ["description", "Qui quia quae ut."], ["date", "2020-05-06 18:42:09.352515"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.354513"], ["updated_at", "2020-05-05 18:42:09.354513"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga nobis veritatis dolorem?"], ["description", "Id voluptatem et deserunt."], ["date", "2020-05-06 18:42:09.358151"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.360113"], ["updated_at", "2020-05-05 18:42:09.360113"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad ab culpa ut?"], ["description", "Reiciendis at amet et."], ["date", "2020-05-06 18:42:09.363370"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.365176"], ["updated_at", "2020-05-05 18:42:09.365176"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore aut dicta perspiciatis?"], ["description", "Aliquam rerum sed neque."], ["date", "2020-05-06 18:42:09.367862"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.369458"], ["updated_at", "2020-05-05 18:42:09.369458"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quia dignissimos aut?"], ["description", "Dolor ut dignissimos voluptates."], ["date", "2020-05-06 18:42:09.371938"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.373845"], ["updated_at", "2020-05-05 18:42:09.373845"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet dolorem nemo magnam?"], ["description", "Amet reprehenderit cumque ipsum."], ["date", "2020-05-06 18:42:09.379040"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.380905"], ["updated_at", "2020-05-05 18:42:09.380905"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis id ut aut?"], ["description", "Et et est quia."], ["date", "2020-05-06 18:42:09.382786"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.383496"], ["updated_at", "2020-05-05 18:42:09.383496"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis sit ut qui?"], ["description", "Esse dolorem natus est."], ["date", "2020-05-06 18:42:09.384824"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.385598"], ["updated_at", "2020-05-05 18:42:09.385598"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui ut aut laudantium?"], ["description", "Ad possimus corrupti fugiat."], ["date", "2020-05-06 18:42:09.386804"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.387487"], ["updated_at", "2020-05-05 18:42:09.387487"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur nam delectus qui?"], ["description", "Commodi et quod veritatis."], ["date", "2020-05-06 18:42:09.388663"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.389342"], ["updated_at", "2020-05-05 18:42:09.389342"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem nihil similique laudantium?"], ["description", "Voluptatem blanditiis ex quasi."], ["date", "2020-05-06 18:42:09.390484"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.391151"], ["updated_at", "2020-05-05 18:42:09.391151"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore ea voluptas suscipit?"], ["description", "Dolor ad quidem molestias."], ["date", "2020-05-06 18:42:09.392923"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.394446"], ["updated_at", "2020-05-05 18:42:09.394446"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus blanditiis nulla expedita?"], ["description", "Aut voluptatem quo et."], ["date", "2020-05-06 18:42:09.396077"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.397014"], ["updated_at", "2020-05-05 18:42:09.397014"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt id quo eaque?"], ["description", "Corrupti dolorem magnam sint."], ["date", "2020-05-06 18:42:09.398236"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.398906"], ["updated_at", "2020-05-05 18:42:09.398906"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum eum excepturi repellat?"], ["description", "Aperiam sed error vitae."], ["date", "2020-05-06 18:42:09.400173"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.400835"], ["updated_at", "2020-05-05 18:42:09.400835"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro aut soluta odit?"], ["description", "Inventore illum ut eum."], ["date", "2020-05-06 18:42:09.402020"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.402664"], ["updated_at", "2020-05-05 18:42:09.402664"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:42:09 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 509) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Howard Price II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YQn7HYXebq9hve0VEBlEOubS50NVra4VEpHFC.RiLZRvAygSAJWDq"], ["created_at", "2020-05-05 18:42:09.421901"], ["updated_at", "2020-05-05 18:42:09.421901"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Ratione dolore labore nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:09.426027"], ["updated_at", "2020-05-05 18:42:09.426027"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium in quam delectus?"], ["description", "Ut rerum nesciunt eum."], ["date", "2020-05-06 18:42:09.428007"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.428973"], ["updated_at", "2020-05-05 18:42:09.428973"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed ea ut veniam?"], ["description", "Sint omnis occaecati nemo."], ["date", "2020-05-06 18:42:09.430335"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.431050"], ["updated_at", "2020-05-05 18:42:09.431050"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione ea iusto mollitia?"], ["description", "Omnis nesciunt eum porro."], ["date", "2020-05-06 18:42:09.432193"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.433001"], ["updated_at", "2020-05-05 18:42:09.433001"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet minus accusamus corporis?"], ["description", "Ipsum est molestiae voluptatem."], ["date", "2020-05-06 18:42:09.435315"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.436500"], ["updated_at", "2020-05-05 18:42:09.436500"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim id sed aut?"], ["description", "Minima nulla sint et."], ["date", "2020-05-06 18:42:09.438170"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.439019"], ["updated_at", "2020-05-05 18:42:09.439019"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem quis omnis officiis?"], ["description", "Quo quaerat id sed."], ["date", "2020-05-06 18:42:09.440137"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.440813"], ["updated_at", "2020-05-05 18:42:09.440813"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis odio dolorem qui?"], ["description", "Ducimus dignissimos cum iure."], ["date", "2020-05-06 18:42:09.442051"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.443294"], ["updated_at", "2020-05-05 18:42:09.443294"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo in tempore neque?"], ["description", "Quos inventore nihil consectetur."], ["date", "2020-05-06 18:42:09.444744"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.445576"], ["updated_at", "2020-05-05 18:42:09.445576"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum quod vel totam?"], ["description", "Qui occaecati et et."], ["date", "2020-05-06 18:42:09.446751"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.447424"], ["updated_at", "2020-05-05 18:42:09.447424"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum omnis quibusdam dolore?"], ["description", "Voluptas laudantium vitae ea."], ["date", "2020-05-06 18:42:09.449295"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.450025"], ["updated_at", "2020-05-05 18:42:09.450025"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto dolorem ipsum voluptate?"], ["description", "Necessitatibus et in voluptatibus."], ["date", "2020-05-06 18:42:09.451277"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.451986"], ["updated_at", "2020-05-05 18:42:09.451986"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit repudiandae et ipsa?"], ["description", "Perspiciatis voluptatem eum similique."], ["date", "2020-05-06 18:42:09.453380"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.454931"], ["updated_at", "2020-05-05 18:42:09.454931"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia debitis rerum omnis?"], ["description", "Atque voluptatem totam rerum."], ["date", "2020-05-06 18:42:09.456427"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.457274"], ["updated_at", "2020-05-05 18:42:09.457274"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi sit et nesciunt?"], ["description", "Ut itaque sit in."], ["date", "2020-05-06 18:42:09.459077"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.460197"], ["updated_at", "2020-05-05 18:42:09.460197"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut velit autem maiores?"], ["description", "Aut eveniet ex ut."], ["date", "2020-05-06 18:42:09.461626"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.462560"], ["updated_at", "2020-05-05 18:42:09.462560"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui iusto velit ea?"], ["description", "Atque sed qui maxime."], ["date", "2020-05-06 18:42:09.463881"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.464628"], ["updated_at", "2020-05-05 18:42:09.464628"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum dolorem sint accusantium?"], ["description", "Voluptas et eum qui."], ["date", "2020-05-06 18:42:09.465809"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.466534"], ["updated_at", "2020-05-05 18:42:09.466534"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis nulla rem facilis?"], ["description", "Et quae voluptatibus similique."], ["date", "2020-05-06 18:42:09.467792"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.468480"], ["updated_at", "2020-05-05 18:42:09.468480"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum nesciunt quo ea?"], ["description", "Modi molestiae labore recusandae."], ["date", "2020-05-06 18:42:09.469638"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.470311"], ["updated_at", "2020-05-05 18:42:09.470311"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis tenetur sed perferendis?"], ["description", "Asperiores ab cum quia."], ["date", "2020-05-06 18:42:09.471454"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.472245"], ["updated_at", "2020-05-05 18:42:09.472245"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:42:09 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.7ms) +Completed 200 OK in 4ms (Views: 1.1ms | ActiveRecord: 0.4ms | Allocations: 1085) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ronnie Reilly"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Mk/SogHM7vGq4RpVv.S.Lu1WXeT6AiK3Ux0pf0WDVK9wSOLhTzYVi"], ["created_at", "2020-05-05 18:42:09.490175"], ["updated_at", "2020-05-05 18:42:09.490175"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facilis"], ["description", "Est iure nesciunt consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:09.493678"], ["updated_at", "2020-05-05 18:42:09.493678"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia praesentium corrupti magni?"], ["description", "Modi facere dolor blanditiis."], ["date", "2020-05-06 18:42:09.496675"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.498254"], ["updated_at", "2020-05-05 18:42:09.498254"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt consequatur id necessitatibus?"], ["description", "Minima est et sit."], ["date", "2020-05-06 18:42:09.499789"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.500593"], ["updated_at", "2020-05-05 18:42:09.500593"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto doloremque dolorem vel?"], ["description", "Ex illum quaerat in."], ["date", "2020-05-06 18:42:09.501754"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.502458"], ["updated_at", "2020-05-05 18:42:09.502458"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore adipisci voluptatum eum?"], ["description", "Eos ipsam dolorem placeat."], ["date", "2020-05-06 18:42:09.503533"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.504213"], ["updated_at", "2020-05-05 18:42:09.504213"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugiat minus tenetur et?"], ["description", "Voluptates ut est sed."], ["date", "2020-05-06 18:42:09.505399"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.506210"], ["updated_at", "2020-05-05 18:42:09.506210"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id est odio et?"], ["description", "Sunt sed autem consequatur."], ["date", "2020-05-06 18:42:09.507315"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.508014"], ["updated_at", "2020-05-05 18:42:09.508014"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut nulla voluptatem quia?"], ["description", "Sit veniam ipsam saepe."], ["date", "2020-05-06 18:42:09.509841"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.510798"], ["updated_at", "2020-05-05 18:42:09.510798"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non aliquam et et?"], ["description", "Sed impedit ab nisi."], ["date", "2020-05-06 18:42:09.511960"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.512644"], ["updated_at", "2020-05-05 18:42:09.512644"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum necessitatibus aliquid explicabo?"], ["description", "Autem quae numquam omnis."], ["date", "2020-05-06 18:42:09.514115"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.515703"], ["updated_at", "2020-05-05 18:42:09.515703"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Possimus id amet magnam?"], ["description", "Enim porro asperiores molestiae."], ["date", "2020-05-06 18:42:09.518401"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.519362"], ["updated_at", "2020-05-05 18:42:09.519362"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut impedit fugiat perspiciatis?"], ["description", "Natus fuga dignissimos nobis."], ["date", "2020-05-06 18:42:09.520739"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.521446"], ["updated_at", "2020-05-05 18:42:09.521446"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium voluptas architecto a?"], ["description", "Et et odio voluptate."], ["date", "2020-05-06 18:42:09.522624"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.523296"], ["updated_at", "2020-05-05 18:42:09.523296"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit saepe iure aut?"], ["description", "Et harum quasi aut."], ["date", "2020-05-06 18:42:09.524469"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.525293"], ["updated_at", "2020-05-05 18:42:09.525293"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo nemo voluptatibus porro?"], ["description", "Cupiditate quis itaque quisquam."], ["date", "2020-05-06 18:42:09.527153"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.528416"], ["updated_at", "2020-05-05 18:42:09.528416"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat temporibus laborum eius?"], ["description", "Nulla veritatis velit amet."], ["date", "2020-05-06 18:42:09.529830"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.530540"], ["updated_at", "2020-05-05 18:42:09.530540"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut harum omnis beatae?"], ["description", "Qui sapiente cumque qui."], ["date", "2020-05-06 18:42:09.531769"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.532515"], ["updated_at", "2020-05-05 18:42:09.532515"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis placeat sit tenetur?"], ["description", "Nulla vel qui quis."], ["date", "2020-05-06 18:42:09.533919"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.535317"], ["updated_at", "2020-05-05 18:42:09.535317"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non error tempore qui?"], ["description", "Dolor deleniti sunt et."], ["date", "2020-05-06 18:42:09.536901"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.537689"], ["updated_at", "2020-05-05 18:42:09.537689"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem est molestiae consequatur?"], ["description", "Similique omnis doloremque perferendis."], ["date", "2020-05-06 18:42:09.538947"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.539656"], ["updated_at", "2020-05-05 18:42:09.539656"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut ab qui debitis?"], ["description", "Quos illo vel deleniti."], ["date", "2020-05-06 18:42:09.540843"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.541685"], ["updated_at", "2020-05-05 18:42:09.541685"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:42:09 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.74ms) +Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.2ms | Allocations: 1058) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Anneliese Klocko"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3szoqt98sQIKjuqDnceobeDTW4vfOW2YtDr4mh2KWl3tEiNsNKV7e"], ["created_at", "2020-05-05 18:42:09.559718"], ["updated_at", "2020-05-05 18:42:09.559718"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Sed nostrum beatae similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:09.562827"], ["updated_at", "2020-05-05 18:42:09.562827"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugiat eius porro consequatur?"], ["description", "Similique nisi magni quia."], ["date", "2020-05-06 18:42:09.564317"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.565277"], ["updated_at", "2020-05-05 18:42:09.565277"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas enim aliquid consequatur?"], ["description", "Officia voluptatem excepturi qui."], ["date", "2020-05-06 18:42:09.566600"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.567335"], ["updated_at", "2020-05-05 18:42:09.567335"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non minima architecto consequatur?"], ["description", "Id placeat est beatae."], ["date", "2020-05-06 18:42:09.568523"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.569243"], ["updated_at", "2020-05-05 18:42:09.569243"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut et quidem in?"], ["description", "Rerum aspernatur ea cupiditate."], ["date", "2020-05-06 18:42:09.570441"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.571130"], ["updated_at", "2020-05-05 18:42:09.571130"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum magnam voluptates consequatur?"], ["description", "Placeat harum vel nemo."], ["date", "2020-05-06 18:42:09.572274"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.572941"], ["updated_at", "2020-05-05 18:42:09.572941"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum accusantium sit deleniti?"], ["description", "Tempore cumque et et."], ["date", "2020-05-06 18:42:09.574426"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.576884"], ["updated_at", "2020-05-05 18:42:09.576884"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas ab et nisi?"], ["description", "Ut et praesentium aperiam."], ["date", "2020-05-06 18:42:09.578885"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.579817"], ["updated_at", "2020-05-05 18:42:09.579817"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea consequuntur asperiores temporibus?"], ["description", "Magnam voluptatem voluptatem impedit."], ["date", "2020-05-06 18:42:09.581232"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.581992"], ["updated_at", "2020-05-05 18:42:09.581992"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam voluptatem porro dolores?"], ["description", "Tempora aut ut amet."], ["date", "2020-05-06 18:42:09.583241"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.583957"], ["updated_at", "2020-05-05 18:42:09.583957"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima rerum officiis quo?"], ["description", "Odio ut illo ea."], ["date", "2020-05-06 18:42:09.585915"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.586743"], ["updated_at", "2020-05-05 18:42:09.586743"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et vero eaque quo?"], ["description", "Quis nostrum repellat aliquid."], ["date", "2020-05-06 18:42:09.588040"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.588739"], ["updated_at", "2020-05-05 18:42:09.588739"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto omnis neque nam?"], ["description", "Maxime laboriosam nam vel."], ["date", "2020-05-06 18:42:09.589898"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.590558"], ["updated_at", "2020-05-05 18:42:09.590558"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit voluptatum perferendis rerum?"], ["description", "Voluptas omnis voluptatem quo."], ["date", "2020-05-06 18:42:09.591780"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.593035"], ["updated_at", "2020-05-05 18:42:09.593035"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim harum officia ea?"], ["description", "Exercitationem voluptatum omnis magnam."], ["date", "2020-05-06 18:42:09.594990"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.596209"], ["updated_at", "2020-05-05 18:42:09.596209"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium optio omnis ut?"], ["description", "Corrupti commodi aut aut."], ["date", "2020-05-06 18:42:09.597743"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.598433"], ["updated_at", "2020-05-05 18:42:09.598433"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus doloremque et sunt?"], ["description", "Voluptatibus voluptatem enim nulla."], ["date", "2020-05-06 18:42:09.599586"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.600256"], ["updated_at", "2020-05-05 18:42:09.600256"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Unde facilis ab praesentium?"], ["description", "Eos aliquam natus ut."], ["date", "2020-05-06 18:42:09.601409"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.602066"], ["updated_at", "2020-05-05 18:42:09.602066"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis cupiditate voluptatem reprehenderit?"], ["description", "Omnis qui reiciendis consectetur."], ["date", "2020-05-06 18:42:09.603259"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.603931"], ["updated_at", "2020-05-05 18:42:09.603931"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste officia enim modi?"], ["description", "Illo quos vitae soluta."], ["date", "2020-05-06 18:42:09.605103"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.605827"], ["updated_at", "2020-05-05 18:42:09.605827"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum mollitia est qui?"], ["description", "In sapiente unde nostrum."], ["date", "2020-05-06 18:42:09.607061"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.607918"], ["updated_at", "2020-05-05 18:42:09.607918"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:42:09 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 884) +  (0.6ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Darnell Renner I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0zmpt88ZWQ.HCsoyp/gofOUgZ4DEEVZnj8QmnFpfhDaJ1IXDZisiu"], ["created_at", "2020-05-05 18:42:09.625038"], ["updated_at", "2020-05-05 18:42:09.625038"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Reprehenderit id consectetur ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:09.628549"], ["updated_at", "2020-05-05 18:42:09.628549"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas qui est similique?"], ["description", "Praesentium suscipit adipisci consequuntur."], ["date", "2020-05-06 18:42:09.630207"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.631208"], ["updated_at", "2020-05-05 18:42:09.631208"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam sint vel accusantium?"], ["description", "Veritatis cupiditate repudiandae et."], ["date", "2020-05-06 18:42:09.632612"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.633460"], ["updated_at", "2020-05-05 18:42:09.633460"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex aliquam nihil vero?"], ["description", "Cum sunt placeat rerum."], ["date", "2020-05-06 18:42:09.635594"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.636842"], ["updated_at", "2020-05-05 18:42:09.636842"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut quia deserunt sed?"], ["description", "Quasi fugiat voluptatem dolorum."], ["date", "2020-05-06 18:42:09.638685"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.639722"], ["updated_at", "2020-05-05 18:42:09.639722"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit rerum vitae officia?"], ["description", "Nulla voluptatum earum tenetur."], ["date", "2020-05-06 18:42:09.641095"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.641793"], ["updated_at", "2020-05-05 18:42:09.641793"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi molestiae quia dolorum?"], ["description", "Blanditiis quasi iure reprehenderit."], ["date", "2020-05-06 18:42:09.643309"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.644608"], ["updated_at", "2020-05-05 18:42:09.644608"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto quia quo exercitationem?"], ["description", "Consequuntur neque animi repellendus."], ["date", "2020-05-06 18:42:09.646016"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.646808"], ["updated_at", "2020-05-05 18:42:09.646808"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis ipsa sed dolor?"], ["description", "Dolores tempora iste quo."], ["date", "2020-05-06 18:42:09.647971"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.648667"], ["updated_at", "2020-05-05 18:42:09.648667"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda dolorem perspiciatis neque?"], ["description", "Soluta maiores nisi qui."], ["date", "2020-05-06 18:42:09.649888"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.650559"], ["updated_at", "2020-05-05 18:42:09.650559"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta eius non eum?"], ["description", "Non earum dolore nam."], ["date", "2020-05-06 18:42:09.652412"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.653205"], ["updated_at", "2020-05-05 18:42:09.653205"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut esse et accusantium?"], ["description", "A assumenda vel alias."], ["date", "2020-05-06 18:42:09.654872"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.656381"], ["updated_at", "2020-05-05 18:42:09.656381"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut soluta porro quia?"], ["description", "Quas nihil ratione ut."], ["date", "2020-05-06 18:42:09.657938"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.658745"], ["updated_at", "2020-05-05 18:42:09.658745"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et vel ipsa et?"], ["description", "Delectus tempora qui vel."], ["date", "2020-05-06 18:42:09.660667"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.661588"], ["updated_at", "2020-05-05 18:42:09.661588"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia omnis enim id?"], ["description", "Omnis temporibus facere enim."], ["date", "2020-05-06 18:42:09.662849"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.663536"], ["updated_at", "2020-05-05 18:42:09.663536"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut delectus quo enim?"], ["description", "Nam nemo ab nesciunt."], ["date", "2020-05-06 18:42:09.664662"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.665377"], ["updated_at", "2020-05-05 18:42:09.665377"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum nulla debitis earum?"], ["description", "Vel est ut voluptas."], ["date", "2020-05-06 18:42:09.666600"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.667301"], ["updated_at", "2020-05-05 18:42:09.667301"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur molestiae sit et?"], ["description", "Maiores velit non voluptate."], ["date", "2020-05-06 18:42:09.668647"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.669427"], ["updated_at", "2020-05-05 18:42:09.669427"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum culpa illo quos?"], ["description", "Ex consequuntur a consequatur."], ["date", "2020-05-06 18:42:09.670698"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.671361"], ["updated_at", "2020-05-05 18:42:09.671361"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit et modi molestiae?"], ["description", "Neque est eum voluptas."], ["date", "2020-05-06 18:42:09.672558"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.673199"], ["updated_at", "2020-05-05 18:42:09.673199"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse eius inventore eos?"], ["description", "Consequatur adipisci explicabo et."], ["date", "2020-05-06 18:42:09.675048"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.677108"], ["updated_at", "2020-05-05 18:42:09.677108"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:42:09 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms) +Completed 404 Not Found in 2ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 867) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Karine Cole"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$IlgIGgqyXNJK9vXBDeeQWuTK05LbxFMgJriut/65SzcxWPifdG.WC"], ["created_at", "2020-05-05 18:42:09.693534"], ["updated_at", "2020-05-05 18:42:09.693534"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsum"], ["description", "Veniam recusandae aliquam modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:09.697312"], ["updated_at", "2020-05-05 18:42:09.697312"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit unde optio dolorum?"], ["description", "Maiores quisquam quaerat et."], ["date", "2020-05-06 18:42:09.699187"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.700855"], ["updated_at", "2020-05-05 18:42:09.700855"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi est beatae sed?"], ["description", "Odit est odio doloribus."], ["date", "2020-05-06 18:42:09.702447"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.703215"], ["updated_at", "2020-05-05 18:42:09.703215"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea explicabo fugit aspernatur?"], ["description", "Enim eos molestiae ut."], ["date", "2020-05-06 18:42:09.704803"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.705727"], ["updated_at", "2020-05-05 18:42:09.705727"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et eum quo occaecati?"], ["description", "Unde quia est minus."], ["date", "2020-05-06 18:42:09.707086"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.707854"], ["updated_at", "2020-05-05 18:42:09.707854"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi rerum consequuntur consequatur?"], ["description", "Qui ea earum tenetur."], ["date", "2020-05-06 18:42:09.709367"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.710556"], ["updated_at", "2020-05-05 18:42:09.710556"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae ut molestias fuga?"], ["description", "Labore omnis explicabo officia."], ["date", "2020-05-06 18:42:09.711960"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.712680"], ["updated_at", "2020-05-05 18:42:09.712680"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus et non perferendis?"], ["description", "Est voluptates delectus distinctio."], ["date", "2020-05-06 18:42:09.713862"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.714803"], ["updated_at", "2020-05-05 18:42:09.714803"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad blanditiis sequi quia?"], ["description", "Nisi eveniet aut debitis."], ["date", "2020-05-06 18:42:09.717149"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.718677"], ["updated_at", "2020-05-05 18:42:09.718677"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam et quos temporibus?"], ["description", "Et porro dolorem similique."], ["date", "2020-05-06 18:42:09.720201"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.721023"], ["updated_at", "2020-05-05 18:42:09.721023"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas praesentium voluptas molestiae?"], ["description", "Inventore modi libero veniam."], ["date", "2020-05-06 18:42:09.722794"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.723568"], ["updated_at", "2020-05-05 18:42:09.723568"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt asperiores saepe ipsa?"], ["description", "Eos consequatur aut debitis."], ["date", "2020-05-06 18:42:09.724846"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.725665"], ["updated_at", "2020-05-05 18:42:09.725665"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet magni reprehenderit non?"], ["description", "Et repellat quaerat nostrum."], ["date", "2020-05-06 18:42:09.727570"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.728469"], ["updated_at", "2020-05-05 18:42:09.728469"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minus repudiandae ut sequi?"], ["description", "Vitae labore qui nam."], ["date", "2020-05-06 18:42:09.729695"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.730406"], ["updated_at", "2020-05-05 18:42:09.730406"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui aut dolorum corporis?"], ["description", "Recusandae distinctio quibusdam nobis."], ["date", "2020-05-06 18:42:09.731717"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.732587"], ["updated_at", "2020-05-05 18:42:09.732587"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum aspernatur cupiditate nulla?"], ["description", "Qui repellat laboriosam explicabo."], ["date", "2020-05-06 18:42:09.733843"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.735053"], ["updated_at", "2020-05-05 18:42:09.735053"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil et occaecati ut?"], ["description", "Excepturi dolorem aliquam dolores."], ["date", "2020-05-06 18:42:09.737062"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.738006"], ["updated_at", "2020-05-05 18:42:09.738006"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo est non soluta?"], ["description", "Ut non consequatur quasi."], ["date", "2020-05-06 18:42:09.739281"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.739959"], ["updated_at", "2020-05-05 18:42:09.739959"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Delectus omnis quos hic?"], ["description", "Omnis ea voluptatum eos."], ["date", "2020-05-06 18:42:09.741121"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.742141"], ["updated_at", "2020-05-05 18:42:09.742141"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure dolores eum ipsum?"], ["description", "Numquam voluptates veritatis nemo."], ["date", "2020-05-06 18:42:09.744095"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.745123"], ["updated_at", "2020-05-05 18:42:09.745123"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore fugit delectus tenetur?"], ["description", "Ducimus rem minus incidunt."], ["date", "2020-05-06 18:42:09.746487"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.747186"], ["updated_at", "2020-05-05 18:42:09.747186"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:42:09 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"title"=>"Visit Narnia", "description"=>"false", "date"=>"2020-05-06 15:42:09 -0300", "link"=>"https://zoom.com/fakelink", "meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Visit Narnia"], ["description", "false"], ["date", "2020-05-06 18:42:09"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.767115"], ["updated_at", "2020-05-05 18:42:09.767115"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.52ms) +Completed 201 Created in 5ms (Views: 1.1ms | ActiveRecord: 0.4ms | Allocations: 1699) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Derek Johnston"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$eZqZaSzdp/imkjis2NqIseiUmDvmz5Vp4DL9032FiQVgBOFte4wZO"], ["created_at", "2020-05-05 18:42:09.782011"], ["updated_at", "2020-05-05 18:42:09.782011"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quasi"], ["description", "Quam eos perspiciatis et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:09.785876"], ["updated_at", "2020-05-05 18:42:09.785876"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat suscipit possimus omnis?"], ["description", "Magni sunt consequatur et."], ["date", "2020-05-06 18:42:09.787563"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.788507"], ["updated_at", "2020-05-05 18:42:09.788507"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia et non qui?"], ["description", "Aut consequatur omnis natus."], ["date", "2020-05-06 18:42:09.789875"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.790610"], ["updated_at", "2020-05-05 18:42:09.790610"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas perspiciatis voluptatibus et?"], ["description", "Consectetur dolor rem et."], ["date", "2020-05-06 18:42:09.792777"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.793827"], ["updated_at", "2020-05-05 18:42:09.793827"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque enim rerum sit?"], ["description", "Maxime culpa corporis et."], ["date", "2020-05-06 18:42:09.795420"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.797207"], ["updated_at", "2020-05-05 18:42:09.797207"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque sed iste nisi?"], ["description", "Repudiandae ut perferendis non."], ["date", "2020-05-06 18:42:09.799005"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.800355"], ["updated_at", "2020-05-05 18:42:09.800355"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod hic sit vel?"], ["description", "Omnis quos nesciunt saepe."], ["date", "2020-05-06 18:42:09.801776"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.802496"], ["updated_at", "2020-05-05 18:42:09.802496"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et id maxime asperiores?"], ["description", "Inventore omnis aut voluptas."], ["date", "2020-05-06 18:42:09.803766"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.804460"], ["updated_at", "2020-05-05 18:42:09.804460"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui magni consequatur ratione?"], ["description", "Expedita et assumenda cupiditate."], ["date", "2020-05-06 18:42:09.805721"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.806439"], ["updated_at", "2020-05-05 18:42:09.806439"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit odio ipsum non?"], ["description", "Hic quae doloribus sunt."], ["date", "2020-05-06 18:42:09.807693"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.808359"], ["updated_at", "2020-05-05 18:42:09.808359"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis rerum laudantium cupiditate?"], ["description", "Vel ea aut consequuntur."], ["date", "2020-05-06 18:42:09.810957"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.811958"], ["updated_at", "2020-05-05 18:42:09.811958"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi id est laudantium?"], ["description", "Iste explicabo vel nihil."], ["date", "2020-05-06 18:42:09.813386"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.814190"], ["updated_at", "2020-05-05 18:42:09.814190"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint enim labore eum?"], ["description", "Veritatis voluptates impedit dolorem."], ["date", "2020-05-06 18:42:09.816137"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.817407"], ["updated_at", "2020-05-05 18:42:09.817407"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit ut vero aut?"], ["description", "Rerum ut eligendi et."], ["date", "2020-05-06 18:42:09.818887"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.819598"], ["updated_at", "2020-05-05 18:42:09.819598"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam aliquam quod autem?"], ["description", "Error voluptatem impedit sunt."], ["date", "2020-05-06 18:42:09.820816"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.821549"], ["updated_at", "2020-05-05 18:42:09.821549"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque voluptatem consequatur omnis?"], ["description", "Voluptatem et amet ut."], ["date", "2020-05-06 18:42:09.822702"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.823371"], ["updated_at", "2020-05-05 18:42:09.823371"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem asperiores praesentium dolores?"], ["description", "Eaque ea voluptas numquam."], ["date", "2020-05-06 18:42:09.824589"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.825344"], ["updated_at", "2020-05-05 18:42:09.825344"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi eaque repellat illum?"], ["description", "Incidunt ratione non sint."], ["date", "2020-05-06 18:42:09.826578"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.827297"], ["updated_at", "2020-05-05 18:42:09.827297"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias dolor facere et?"], ["description", "Nihil mollitia minima expedita."], ["date", "2020-05-06 18:42:09.829166"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.830081"], ["updated_at", "2020-05-05 18:42:09.830081"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed eligendi omnis delectus?"], ["description", "Corporis perferendis porro voluptate."], ["date", "2020-05-06 18:42:09.831402"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.832130"], ["updated_at", "2020-05-05 18:42:09.832130"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum nemo maiores consequatur?"], ["description", "Hic harum unde quia."], ["date", "2020-05-06 18:42:09.833332"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.833987"], ["updated_at", "2020-05-05 18:42:09.833987"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:42:09 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 3010) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Yevette Schaden"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZW2X5b/lcsq1VQ.j2RIDruUPTTVfD8ZAesJWoShWFJwr.L/efNiky"], ["created_at", "2020-05-05 18:42:09.853511"], ["updated_at", "2020-05-05 18:42:09.853511"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.9ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fuga"], ["description", "Nisi odit hic voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:09.857491"], ["updated_at", "2020-05-05 18:42:09.857491"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error voluptatem magni ullam?"], ["description", "Eveniet aperiam nemo doloremque."], ["date", "2020-05-06 18:42:09.861011"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.862093"], ["updated_at", "2020-05-05 18:42:09.862093"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed eos sed corporis?"], ["description", "In omnis illo et."], ["date", "2020-05-06 18:42:09.863453"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.864167"], ["updated_at", "2020-05-05 18:42:09.864167"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio ut impedit eos?"], ["description", "Qui quas et qui."], ["date", "2020-05-06 18:42:09.865471"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.866217"], ["updated_at", "2020-05-05 18:42:09.866217"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cupiditate laudantium voluptatibus maiores?"], ["description", "Nihil illo et veniam."], ["date", "2020-05-06 18:42:09.867395"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.868069"], ["updated_at", "2020-05-05 18:42:09.868069"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos quasi officiis excepturi?"], ["description", "Nisi aut molestiae porro."], ["date", "2020-05-06 18:42:09.869209"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.869874"], ["updated_at", "2020-05-05 18:42:09.869874"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente laudantium earum sit?"], ["description", "Ex dolores cumque totam."], ["date", "2020-05-06 18:42:09.871045"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.871709"], ["updated_at", "2020-05-05 18:42:09.871709"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quibusdam consequatur et id?"], ["description", "Deserunt dolorem nostrum sed."], ["date", "2020-05-06 18:42:09.872811"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.873480"], ["updated_at", "2020-05-05 18:42:09.873480"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis autem doloribus odio?"], ["description", "Soluta est non voluptates."], ["date", "2020-05-06 18:42:09.874695"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.876159"], ["updated_at", "2020-05-05 18:42:09.876159"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas voluptas consequuntur fugit?"], ["description", "Quis fuga facere dolorem."], ["date", "2020-05-06 18:42:09.878855"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.880024"], ["updated_at", "2020-05-05 18:42:09.880024"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur recusandae modi mollitia?"], ["description", "Voluptatem perspiciatis officia accusamus."], ["date", "2020-05-06 18:42:09.882358"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.883244"], ["updated_at", "2020-05-05 18:42:09.883244"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At expedita est quaerat?"], ["description", "Deserunt inventore natus nostrum."], ["date", "2020-05-06 18:42:09.884535"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.885296"], ["updated_at", "2020-05-05 18:42:09.885296"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At ut sit qui?"], ["description", "Soluta dicta aut illum."], ["date", "2020-05-06 18:42:09.886504"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.887254"], ["updated_at", "2020-05-05 18:42:09.887254"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam commodi dolor suscipit?"], ["description", "Temporibus sit sint animi."], ["date", "2020-05-06 18:42:09.888410"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.889083"], ["updated_at", "2020-05-05 18:42:09.889083"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro suscipit ut voluptatem?"], ["description", "Dicta qui fuga velit."], ["date", "2020-05-06 18:42:09.890413"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.891158"], ["updated_at", "2020-05-05 18:42:09.891158"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea illum cumque aperiam?"], ["description", "Ad omnis repudiandae qui."], ["date", "2020-05-06 18:42:09.892401"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.893713"], ["updated_at", "2020-05-05 18:42:09.893713"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam sunt rem cumque?"], ["description", "Consectetur et incidunt nihil."], ["date", "2020-05-06 18:42:09.895225"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.896455"], ["updated_at", "2020-05-05 18:42:09.896455"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis incidunt tempore cum?"], ["description", "Praesentium ut molestias beatae."], ["date", "2020-05-06 18:42:09.912407"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.913421"], ["updated_at", "2020-05-05 18:42:09.913421"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad id qui commodi?"], ["description", "Veniam deleniti qui molestiae."], ["date", "2020-05-06 18:42:09.914854"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.915855"], ["updated_at", "2020-05-05 18:42:09.915855"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit qui nisi asperiores?"], ["description", "Laboriosam est perspiciatis magnam."], ["date", "2020-05-06 18:42:09.917729"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.918700"], ["updated_at", "2020-05-05 18:42:09.918700"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis debitis sunt voluptatibus?"], ["description", "Non voluptas sit distinctio."], ["date", "2020-05-06 18:42:09.920250"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.921241"], ["updated_at", "2020-05-05 18:42:09.921241"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:42:09 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 2705) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tristan Brekke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZOaU6Vv5FcAGRXNSfkGMkOHQiWE6cZqXuktfvf7/mz.TGd1ypjsRe"], ["created_at", "2020-05-05 18:42:09.938873"], ["updated_at", "2020-05-05 18:42:09.938873"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "modi"], ["description", "Quia perferendis fugit optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:09.943127"], ["updated_at", "2020-05-05 18:42:09.943127"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque delectus vitae illum?"], ["description", "Quisquam dolor omnis omnis."], ["date", "2020-05-06 18:42:09.945038"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.946022"], ["updated_at", "2020-05-05 18:42:09.946022"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint assumenda nam laudantium?"], ["description", "Sed ab dolor et."], ["date", "2020-05-06 18:42:09.947357"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.948067"], ["updated_at", "2020-05-05 18:42:09.948067"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates qui eum quam?"], ["description", "Cupiditate assumenda nisi possimus."], ["date", "2020-05-06 18:42:09.949296"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.949966"], ["updated_at", "2020-05-05 18:42:09.949966"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti sit atque sint?"], ["description", "Quo minima velit omnis."], ["date", "2020-05-06 18:42:09.951055"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.951759"], ["updated_at", "2020-05-05 18:42:09.951759"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui rerum eos sit?"], ["description", "Cumque nihil laborum et."], ["date", "2020-05-06 18:42:09.952870"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.953689"], ["updated_at", "2020-05-05 18:42:09.953689"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit ex error quae?"], ["description", "Magnam veritatis labore ducimus."], ["date", "2020-05-06 18:42:09.954815"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.955571"], ["updated_at", "2020-05-05 18:42:09.955571"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed voluptatem quis voluptates?"], ["description", "Ducimus omnis ut aliquam."], ["date", "2020-05-06 18:42:09.957107"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.959064"], ["updated_at", "2020-05-05 18:42:09.959064"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis atque eaque consequuntur?"], ["description", "Fugit sed est voluptas."], ["date", "2020-05-06 18:42:09.961469"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.962408"], ["updated_at", "2020-05-05 18:42:09.962408"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus quia minus sit?"], ["description", "Officiis expedita excepturi sunt."], ["date", "2020-05-06 18:42:09.963617"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.964390"], ["updated_at", "2020-05-05 18:42:09.964390"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui commodi voluptates quo?"], ["description", "Cupiditate ut itaque mollitia."], ["date", "2020-05-06 18:42:09.966248"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.967028"], ["updated_at", "2020-05-05 18:42:09.967028"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim labore sint aperiam?"], ["description", "Sequi ea consectetur voluptatum."], ["date", "2020-05-06 18:42:09.968298"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.968993"], ["updated_at", "2020-05-05 18:42:09.968993"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem dicta labore et?"], ["description", "Molestiae nihil est adipisci."], ["date", "2020-05-06 18:42:09.970195"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.970904"], ["updated_at", "2020-05-05 18:42:09.970904"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti blanditiis quo voluptatum?"], ["description", "Nostrum quo unde laudantium."], ["date", "2020-05-06 18:42:09.972077"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.972747"], ["updated_at", "2020-05-05 18:42:09.972747"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est neque qui quia?"], ["description", "Nihil sapiente molestiae repellendus."], ["date", "2020-05-06 18:42:09.973962"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.974640"], ["updated_at", "2020-05-05 18:42:09.974640"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti modi nesciunt voluptatibus?"], ["description", "Impedit explicabo facilis quo."], ["date", "2020-05-06 18:42:09.977016"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.978437"], ["updated_at", "2020-05-05 18:42:09.978437"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque eum repudiandae debitis?"], ["description", "Qui et ut necessitatibus."], ["date", "2020-05-06 18:42:09.979925"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.980715"], ["updated_at", "2020-05-05 18:42:09.980715"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet est qui voluptatem?"], ["description", "Repellendus quis assumenda eligendi."], ["date", "2020-05-06 18:42:09.981923"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.982609"], ["updated_at", "2020-05-05 18:42:09.982609"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur atque et voluptatem?"], ["description", "Dolorem ea illum dignissimos."], ["date", "2020-05-06 18:42:09.983683"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.984381"], ["updated_at", "2020-05-05 18:42:09.984381"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et aut a qui?"], ["description", "Dolorum et reiciendis iste."], ["date", "2020-05-06 18:42:09.985664"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.986441"], ["updated_at", "2020-05-05 18:42:09.986441"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum et sit ullam?"], ["description", "Et voluptas amet est."], ["date", "2020-05-06 18:42:09.987938"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:09.988738"], ["updated_at", "2020-05-05 18:42:09.988738"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:42:09 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.2ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:42:09.993556"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 4ms (ActiveRecord: 0.4ms | Allocations: 1397) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Latesha Gorczany"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NHoSe.6dtHYUFyhZpTQSjO1YkU7XMSj8iBzBElIf1uyLjLZeuwe9y"], ["created_at", "2020-05-05 18:42:10.006583"], ["updated_at", "2020-05-05 18:42:10.006583"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Maxime impedit sunt ipsum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.009820"], ["updated_at", "2020-05-05 18:42:10.009820"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quibusdam qui maxime laborum?"], ["description", "Eius rerum recusandae aut."], ["date", "2020-05-06 18:42:10.011778"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.012737"], ["updated_at", "2020-05-05 18:42:10.012737"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit ut et dolor?"], ["description", "Impedit iste sed deleniti."], ["date", "2020-05-06 18:42:10.014113"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.014921"], ["updated_at", "2020-05-05 18:42:10.014921"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae perferendis tenetur ducimus?"], ["description", "Non eveniet voluptatibus neque."], ["date", "2020-05-06 18:42:10.016177"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.017496"], ["updated_at", "2020-05-05 18:42:10.017496"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt assumenda eum dolorum?"], ["description", "Et sed aut fugit."], ["date", "2020-05-06 18:42:10.019450"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.020786"], ["updated_at", "2020-05-05 18:42:10.020786"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque pariatur reiciendis in?"], ["description", "Molestiae voluptatem in perferendis."], ["date", "2020-05-06 18:42:10.022366"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.023206"], ["updated_at", "2020-05-05 18:42:10.023206"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et et doloremque placeat?"], ["description", "Dolorem nulla numquam quia."], ["date", "2020-05-06 18:42:10.024337"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.025277"], ["updated_at", "2020-05-05 18:42:10.025277"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod id nemo est?"], ["description", "Neque distinctio eos animi."], ["date", "2020-05-06 18:42:10.027022"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.027904"], ["updated_at", "2020-05-05 18:42:10.027904"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In doloremque corrupti consequuntur?"], ["description", "Sunt ut veniam ratione."], ["date", "2020-05-06 18:42:10.029074"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.029805"], ["updated_at", "2020-05-05 18:42:10.029805"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores esse qui quam?"], ["description", "Aliquid quia voluptatem alias."], ["date", "2020-05-06 18:42:10.030971"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.031653"], ["updated_at", "2020-05-05 18:42:10.031653"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui veniam eaque expedita?"], ["description", "Corrupti asperiores sit id."], ["date", "2020-05-06 18:42:10.033487"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.034242"], ["updated_at", "2020-05-05 18:42:10.034242"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni voluptas qui fugit?"], ["description", "Velit nisi quos recusandae."], ["date", "2020-05-06 18:42:10.035543"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.036322"], ["updated_at", "2020-05-05 18:42:10.036322"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam ipsum quia sit?"], ["description", "Id sint sed recusandae."], ["date", "2020-05-06 18:42:10.038233"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.039258"], ["updated_at", "2020-05-05 18:42:10.039258"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati ducimus quaerat atque?"], ["description", "Vel iure et illum."], ["date", "2020-05-06 18:42:10.040653"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.041357"], ["updated_at", "2020-05-05 18:42:10.041357"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut ut doloremque saepe?"], ["description", "Dolorem aperiam numquam deleniti."], ["date", "2020-05-06 18:42:10.042909"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.044024"], ["updated_at", "2020-05-05 18:42:10.044024"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi sunt soluta et?"], ["description", "Molestiae consequatur nihil vitae."], ["date", "2020-05-06 18:42:10.045613"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.046467"], ["updated_at", "2020-05-05 18:42:10.046467"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum fugit explicabo mollitia?"], ["description", "Aliquid id maxime ut."], ["date", "2020-05-06 18:42:10.047720"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.048459"], ["updated_at", "2020-05-05 18:42:10.048459"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui officia delectus odio?"], ["description", "Rerum laborum aut odio."], ["date", "2020-05-06 18:42:10.049633"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.050375"], ["updated_at", "2020-05-05 18:42:10.050375"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias ut ab asperiores?"], ["description", "Quia recusandae veritatis aut."], ["date", "2020-05-06 18:42:10.051623"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.052305"], ["updated_at", "2020-05-05 18:42:10.052305"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui officia ut vero?"], ["description", "Qui facere ut voluptatem."], ["date", "2020-05-06 18:42:10.053484"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.054163"], ["updated_at", "2020-05-05 18:42:10.054163"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident voluptatem quo nihil?"], ["description", "Sequi in illum dolorem."], ["date", "2020-05-06 18:42:10.055285"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.056021"], ["updated_at", "2020-05-05 18:42:10.056021"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.1ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:42:10.061584"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 4ms (ActiveRecord: 0.5ms | Allocations: 1321) + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Troy Mohr"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7kVVJ4mqoizZrBAYmSRSb.JK9P/81x/RPt6prsTL3cYWp36nPnUOu"], ["created_at", "2020-05-05 18:42:10.073083"], ["updated_at", "2020-05-05 18:42:10.073083"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "Unde alias corporis illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.076198"], ["updated_at", "2020-05-05 18:42:10.076198"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem dignissimos earum illo?"], ["description", "Eveniet debitis et corrupti."], ["date", "2020-05-06 18:42:10.079221"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.080610"], ["updated_at", "2020-05-05 18:42:10.080610"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint qui consequatur tempora?"], ["description", "Vitae qui tempora dolores."], ["date", "2020-05-06 18:42:10.082548"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.083420"], ["updated_at", "2020-05-05 18:42:10.083420"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem adipisci necessitatibus atque?"], ["description", "Odit et et ut."], ["date", "2020-05-06 18:42:10.084616"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.085507"], ["updated_at", "2020-05-05 18:42:10.085507"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui velit error exercitationem?"], ["description", "Quia ipsa et vel."], ["date", "2020-05-06 18:42:10.086779"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.087515"], ["updated_at", "2020-05-05 18:42:10.087515"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero nihil et delectus?"], ["description", "Distinctio molestiae nulla similique."], ["date", "2020-05-06 18:42:10.088698"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.089378"], ["updated_at", "2020-05-05 18:42:10.089378"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab iste asperiores earum?"], ["description", "Ut minima fugiat vitae."], ["date", "2020-05-06 18:42:10.090510"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.091182"], ["updated_at", "2020-05-05 18:42:10.091182"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati illum aut possimus?"], ["description", "Suscipit aut aliquid voluptas."], ["date", "2020-05-06 18:42:10.092389"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.093640"], ["updated_at", "2020-05-05 18:42:10.093640"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum voluptatem dolorum eum?"], ["description", "Qui qui repellat ipsa."], ["date", "2020-05-06 18:42:10.095112"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.095970"], ["updated_at", "2020-05-05 18:42:10.095970"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt eveniet ad sapiente?"], ["description", "Corrupti molestiae eos sequi."], ["date", "2020-05-06 18:42:10.097623"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.099204"], ["updated_at", "2020-05-05 18:42:10.099204"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque molestias perferendis sed?"], ["description", "Vel blanditiis enim dolorem."], ["date", "2020-05-06 18:42:10.101944"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.102889"], ["updated_at", "2020-05-05 18:42:10.102889"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse non et est?"], ["description", "Voluptatem repellat quaerat adipisci."], ["date", "2020-05-06 18:42:10.104213"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.104952"], ["updated_at", "2020-05-05 18:42:10.104952"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente qui nihil odio?"], ["description", "Voluptatem ipsam quae voluptatibus."], ["date", "2020-05-06 18:42:10.106493"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.107225"], ["updated_at", "2020-05-05 18:42:10.107225"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ducimus et qui eius?"], ["description", "Tenetur inventore laborum sint."], ["date", "2020-05-06 18:42:10.108563"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.109757"], ["updated_at", "2020-05-05 18:42:10.109757"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea occaecati voluptatibus rem?"], ["description", "In corporis iure autem."], ["date", "2020-05-06 18:42:10.111156"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.111880"], ["updated_at", "2020-05-05 18:42:10.111880"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus eos et at?"], ["description", "Provident pariatur omnis eius."], ["date", "2020-05-06 18:42:10.113067"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.113754"], ["updated_at", "2020-05-05 18:42:10.113754"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus dolor iure ut?"], ["description", "Qui odit recusandae aut."], ["date", "2020-05-06 18:42:10.115002"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.115717"], ["updated_at", "2020-05-05 18:42:10.115717"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti inventore ipsa eos?"], ["description", "Qui ad quo iure."], ["date", "2020-05-06 18:42:10.117168"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.118630"], ["updated_at", "2020-05-05 18:42:10.118630"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi eum architecto dolor?"], ["description", "Nam quis voluptatem nemo."], ["date", "2020-05-06 18:42:10.120198"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.121011"], ["updated_at", "2020-05-05 18:42:10.121011"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas perspiciatis occaecati omnis?"], ["description", "Odit et doloremque assumenda."], ["date", "2020-05-06 18:42:10.122307"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.123011"], ["updated_at", "2020-05-05 18:42:10.123011"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam cupiditate labore molestiae?"], ["description", "Reiciendis eaque reprehenderit rerum."], ["date", "2020-05-06 18:42:10.124354"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.125411"], ["updated_at", "2020-05-05 18:42:10.125411"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Carter Brekke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Zw9v.T8zPk9vxmgQgDGYGOW1cYdPw1GoWU44D9Y5VvrJgcQNftgfe"], ["created_at", "2020-05-05 18:42:10.140636"], ["updated_at", "2020-05-05 18:42:10.140636"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Sapiente itaque velit libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.144134"], ["updated_at", "2020-05-05 18:42:10.144134"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil velit doloremque accusantium?"], ["description", "Nemo quas tempora quo."], ["date", "2020-05-06 18:42:10.145675"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.146617"], ["updated_at", "2020-05-05 18:42:10.146617"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem a occaecati similique?"], ["description", "Quis eius est quia."], ["date", "2020-05-06 18:42:10.147830"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.148566"], ["updated_at", "2020-05-05 18:42:10.148566"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil veniam recusandae qui?"], ["description", "Iste quas maxime at."], ["date", "2020-05-06 18:42:10.149709"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.150391"], ["updated_at", "2020-05-05 18:42:10.150391"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla laudantium cupiditate sunt?"], ["description", "Velit natus ipsum qui."], ["date", "2020-05-06 18:42:10.151485"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.152153"], ["updated_at", "2020-05-05 18:42:10.152153"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut est autem sunt?"], ["description", "Sed aut necessitatibus ut."], ["date", "2020-05-06 18:42:10.153283"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.153946"], ["updated_at", "2020-05-05 18:42:10.153946"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt ut recusandae voluptatem?"], ["description", "Rerum incidunt doloribus soluta."], ["date", "2020-05-06 18:42:10.155104"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.155782"], ["updated_at", "2020-05-05 18:42:10.155782"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A in ab cumque?"], ["description", "Incidunt minus vel et."], ["date", "2020-05-06 18:42:10.157128"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.158914"], ["updated_at", "2020-05-05 18:42:10.158914"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas et officiis perspiciatis?"], ["description", "Repudiandae molestiae labore et."], ["date", "2020-05-06 18:42:10.161085"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.162494"], ["updated_at", "2020-05-05 18:42:10.162494"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore voluptatem provident cupiditate?"], ["description", "Illo distinctio delectus at."], ["date", "2020-05-06 18:42:10.164131"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.165000"], ["updated_at", "2020-05-05 18:42:10.165000"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores esse facilis maxime?"], ["description", "Sit ex perspiciatis esse."], ["date", "2020-05-06 18:42:10.166806"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.167585"], ["updated_at", "2020-05-05 18:42:10.167585"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur dolorem voluptates et?"], ["description", "Aut laudantium ipsa et."], ["date", "2020-05-06 18:42:10.168883"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.169554"], ["updated_at", "2020-05-05 18:42:10.169554"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas quos qui quia?"], ["description", "Atque sed molestiae et."], ["date", "2020-05-06 18:42:10.170641"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.171304"], ["updated_at", "2020-05-05 18:42:10.171304"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi atque vel numquam?"], ["description", "Quas voluptatem iure reiciendis."], ["date", "2020-05-06 18:42:10.172428"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.173103"], ["updated_at", "2020-05-05 18:42:10.173103"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis possimus maxime recusandae?"], ["description", "Similique dolores sunt harum."], ["date", "2020-05-06 18:42:10.174331"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.175043"], ["updated_at", "2020-05-05 18:42:10.175043"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo ut quia laborum?"], ["description", "Optio architecto id occaecati."], ["date", "2020-05-06 18:42:10.176544"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.178056"], ["updated_at", "2020-05-05 18:42:10.178056"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas unde fuga voluptate?"], ["description", "Tempora molestias molestiae quis."], ["date", "2020-05-06 18:42:10.180105"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.181039"], ["updated_at", "2020-05-05 18:42:10.181039"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae modi et expedita?"], ["description", "Libero et commodi est."], ["date", "2020-05-06 18:42:10.182334"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.183060"], ["updated_at", "2020-05-05 18:42:10.183060"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed explicabo velit aut?"], ["description", "Optio perferendis ut expedita."], ["date", "2020-05-06 18:42:10.184185"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.185036"], ["updated_at", "2020-05-05 18:42:10.185036"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea ut qui quia?"], ["description", "Voluptatem nisi sunt id."], ["date", "2020-05-06 18:42:10.186339"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.187079"], ["updated_at", "2020-05-05 18:42:10.187079"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id eligendi quia perspiciatis?"], ["description", "Ipsa itaque porro enim."], ["date", "2020-05-06 18:42:10.188227"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.188910"], ["updated_at", "2020-05-05 18:42:10.188910"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 3ms (Views: 0.5ms | ActiveRecord: 0.3ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lou Hickle Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HXDVMSZy9JlHec9jhqnU1.EjyWd4FJ6066hDOM.vdGLxFmU.TtLsK"], ["created_at", "2020-05-05 18:42:10.205701"], ["updated_at", "2020-05-05 18:42:10.205701"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odit"], ["description", "Voluptas non alias facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.209063"], ["updated_at", "2020-05-05 18:42:10.209063"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis cumque quos aut?"], ["description", "Accusantium similique laboriosam qui."], ["date", "2020-05-06 18:42:10.210908"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.211839"], ["updated_at", "2020-05-05 18:42:10.211839"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non debitis et est?"], ["description", "Quam maxime iure quo."], ["date", "2020-05-06 18:42:10.213125"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.213813"], ["updated_at", "2020-05-05 18:42:10.213813"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae esse totam quibusdam?"], ["description", "Qui at aut libero."], ["date", "2020-05-06 18:42:10.215041"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.215952"], ["updated_at", "2020-05-05 18:42:10.215952"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem aliquid minima aut?"], ["description", "Magnam ut voluptatem eveniet."], ["date", "2020-05-06 18:42:10.217306"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.218496"], ["updated_at", "2020-05-05 18:42:10.218496"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos est vel qui?"], ["description", "Consequuntur placeat dolore corporis."], ["date", "2020-05-06 18:42:10.220405"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.222017"], ["updated_at", "2020-05-05 18:42:10.222017"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minus repellendus non et?"], ["description", "Velit qui aperiam omnis."], ["date", "2020-05-06 18:42:10.223505"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.224364"], ["updated_at", "2020-05-05 18:42:10.224364"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est praesentium harum perspiciatis?"], ["description", "Similique blanditiis ipsum sed."], ["date", "2020-05-06 18:42:10.226004"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.227103"], ["updated_at", "2020-05-05 18:42:10.227103"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur qui omnis qui?"], ["description", "Quibusdam cupiditate suscipit sit."], ["date", "2020-05-06 18:42:10.228557"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.229313"], ["updated_at", "2020-05-05 18:42:10.229313"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat consectetur iure enim?"], ["description", "Ut laboriosam a voluptate."], ["date", "2020-05-06 18:42:10.230459"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.231125"], ["updated_at", "2020-05-05 18:42:10.231125"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis omnis maxime itaque?"], ["description", "Omnis et enim porro."], ["date", "2020-05-06 18:42:10.232888"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.233613"], ["updated_at", "2020-05-05 18:42:10.233613"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero delectus qui numquam?"], ["description", "Officia modi non repellendus."], ["date", "2020-05-06 18:42:10.234982"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.235755"], ["updated_at", "2020-05-05 18:42:10.235755"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id voluptatem in sint?"], ["description", "Necessitatibus totam ut labore."], ["date", "2020-05-06 18:42:10.237046"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.238019"], ["updated_at", "2020-05-05 18:42:10.238019"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum dolorum mollitia pariatur?"], ["description", "Molestias repudiandae consequuntur error."], ["date", "2020-05-06 18:42:10.240220"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.241283"], ["updated_at", "2020-05-05 18:42:10.241283"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis ut voluptatem tenetur?"], ["description", "Assumenda rerum voluptatem possimus."], ["date", "2020-05-06 18:42:10.243217"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.244142"], ["updated_at", "2020-05-05 18:42:10.244142"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta blanditiis eum consequatur?"], ["description", "Accusantium aut dolor reiciendis."], ["date", "2020-05-06 18:42:10.245468"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.246191"], ["updated_at", "2020-05-05 18:42:10.246191"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus molestiae natus blanditiis?"], ["description", "Necessitatibus ipsa voluptatem dicta."], ["date", "2020-05-06 18:42:10.247375"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.248106"], ["updated_at", "2020-05-05 18:42:10.248106"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque autem rem consequatur?"], ["description", "Velit sunt neque aut."], ["date", "2020-05-06 18:42:10.249277"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.249952"], ["updated_at", "2020-05-05 18:42:10.249952"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas et harum quibusdam?"], ["description", "Ut voluptatem sed porro."], ["date", "2020-05-06 18:42:10.251246"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.251944"], ["updated_at", "2020-05-05 18:42:10.251944"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut corrupti non nihil?"], ["description", "Est consequuntur sunt voluptatem."], ["date", "2020-05-06 18:42:10.253116"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.253793"], ["updated_at", "2020-05-05 18:42:10.253793"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint consequatur aliquid aut?"], ["description", "Voluptatum aspernatur sint voluptas."], ["date", "2020-05-06 18:42:10.255173"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:10.255975"], ["updated_at", "2020-05-05 18:42:10.255975"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by MeetingsController#destroy as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + UserMeeting Load (0.1ms) SELECT "user_meetings".* FROM "user_meetings" WHERE "user_meetings"."meeting_id" = ? [["meeting_id", 1]] + Meeting Destroy (0.1ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 8ms (ActiveRecord: 0.9ms | Allocations: 2317) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Tempore debitis consectetur eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.276678"], ["updated_at", "2020-05-05 18:42:10.276678"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Corrupti harum doloremque voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.281320"], ["updated_at", "2020-05-05 18:42:10.281320"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veniam"], ["description", "Nam unde deserunt porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.283055"], ["updated_at", "2020-05-05 18:42:10.283055"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Consequatur rerum sed est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.284527"], ["updated_at", "2020-05-05 18:42:10.284527"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Earum praesentium id aperiam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.285939"], ["updated_at", "2020-05-05 18:42:10.285939"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "amet"], ["description", "Cum et excepturi molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.287219"], ["updated_at", "2020-05-05 18:42:10.287219"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Sint dicta quas nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.288425"], ["updated_at", "2020-05-05 18:42:10.288425"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fuga"], ["description", "Cumque ipsam laboriosam at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.289667"], ["updated_at", "2020-05-05 18:42:10.289667"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "commodi"], ["description", "Facilis ducimus sint autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.290915"], ["updated_at", "2020-05-05 18:42:10.290915"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Id officia voluptas architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.292895"], ["updated_at", "2020-05-05 18:42:10.292895"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ester Turner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZNUC3ncBKUyGAN9nx6E97e5xOsmxIbNHpNCyykzPAz8NZwiOpYQIi"], ["created_at", "2020-05-05 18:42:10.295748"], ["updated_at", "2020-05-05 18:42:10.295748"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.36ms) +Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.3ms | Allocations: 2915) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.8ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quidem"], ["description", "Sed inventore magni facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.316864"], ["updated_at", "2020-05-05 18:42:10.316864"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aperiam"], ["description", "Molestiae earum quas dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.321043"], ["updated_at", "2020-05-05 18:42:10.321043"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Nihil eos quia qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.323324"], ["updated_at", "2020-05-05 18:42:10.323324"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Sit id sit alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.324924"], ["updated_at", "2020-05-05 18:42:10.324924"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "a"], ["description", "Dolorem dolor iste tenetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.326387"], ["updated_at", "2020-05-05 18:42:10.326387"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolore"], ["description", "Non ut earum at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.328446"], ["updated_at", "2020-05-05 18:42:10.328446"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Necessitatibus provident omnis quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.329825"], ["updated_at", "2020-05-05 18:42:10.329825"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Sint ab sed repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.331087"], ["updated_at", "2020-05-05 18:42:10.331087"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vero"], ["description", "Rerum corporis optio sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.332392"], ["updated_at", "2020-05-05 18:42:10.332392"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloremque"], ["description", "Dolores voluptates possimus neque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.333690"], ["updated_at", "2020-05-05 18:42:10.333690"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Ariel Cassin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YtfQHf9Drk5HowH2NB6GVOABAN30rxL2ZV5lk.uojhIDiynixVcjS"], ["created_at", "2020-05-05 18:42:10.336360"], ["updated_at", "2020-05-05 18:42:10.336360"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.49ms) +Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.3ms | Allocations: 2843) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Consequuntur quaerat porro est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.355139"], ["updated_at", "2020-05-05 18:42:10.355139"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptates"], ["description", "Accusamus voluptatem velit voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.358262"], ["updated_at", "2020-05-05 18:42:10.358262"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Et earum consequuntur optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.362015"], ["updated_at", "2020-05-05 18:42:10.362015"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facere"], ["description", "Quia fuga similique at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.364235"], ["updated_at", "2020-05-05 18:42:10.364235"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Eos nobis consequatur molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.365897"], ["updated_at", "2020-05-05 18:42:10.365897"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Earum voluptatem unde totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.367116"], ["updated_at", "2020-05-05 18:42:10.367116"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "asperiores"], ["description", "Enim fugiat eligendi alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.368429"], ["updated_at", "2020-05-05 18:42:10.368429"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magni"], ["description", "Harum id sequi aliquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.369751"], ["updated_at", "2020-05-05 18:42:10.369751"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "adipisci"], ["description", "A voluptatum mollitia voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.371009"], ["updated_at", "2020-05-05 18:42:10.371009"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "animi"], ["description", "Minus quia sint qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.372288"], ["updated_at", "2020-05-05 18:42:10.372288"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lane Spencer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ODQrFRZ4xPuJECbhE48oiuCwqxLGyp.SjajZcEq6n54mv1W9956I."], ["created_at", "2020-05-05 18:42:10.374800"], ["updated_at", "2020-05-05 18:42:10.374800"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.3ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.8ms) +Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.4ms | Allocations: 2843) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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: 1242) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Harum magni dolorum non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.398079"], ["updated_at", "2020-05-05 18:42:10.398079"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Aut aut est eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.402522"], ["updated_at", "2020-05-05 18:42:10.402522"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "Illo odio omnis dolore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.404038"], ["updated_at", "2020-05-05 18:42:10.404038"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Doloremque iusto impedit ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.405815"], ["updated_at", "2020-05-05 18:42:10.405815"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "occaecati"], ["description", "Delectus et rerum iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.407309"], ["updated_at", "2020-05-05 18:42:10.407309"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aperiam"], ["description", "Fuga sed dolorum ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.409371"], ["updated_at", "2020-05-05 18:42:10.409371"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Et eum et sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.410848"], ["updated_at", "2020-05-05 18:42:10.410848"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Vel id aliquid debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.412128"], ["updated_at", "2020-05-05 18:42:10.412128"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Eveniet quam autem temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.413501"], ["updated_at", "2020-05-05 18:42:10.413501"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "excepturi"], ["description", "Eum a accusamus reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.414878"], ["updated_at", "2020-05-05 18:42:10.414878"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elijah Rath V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QWsReGHf7MWWyB2K6HF5JOHhHidxUMEHr8Mbtf/ZoJZB6FrKL9iEq"], ["created_at", "2020-05-05 18:42:10.417464"], ["updated_at", "2020-05-05 18:42:10.417464"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.52ms) +Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms | Allocations: 2840) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.28ms) +Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.2ms | Allocations: 1240) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusamus"], ["description", "Perferendis eos maxime et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.441304"], ["updated_at", "2020-05-05 18:42:10.441304"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Nihil enim quo dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.445771"], ["updated_at", "2020-05-05 18:42:10.445771"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deleniti"], ["description", "Deleniti eos cumque itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.447433"], ["updated_at", "2020-05-05 18:42:10.447433"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Rem quod accusantium molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.448745"], ["updated_at", "2020-05-05 18:42:10.448745"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Quia et aliquam provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.450018"], ["updated_at", "2020-05-05 18:42:10.450018"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "labore"], ["description", "Eos minus repellat consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.451272"], ["updated_at", "2020-05-05 18:42:10.451272"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cupiditate"], ["description", "Eius omnis eligendi ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.452512"], ["updated_at", "2020-05-05 18:42:10.452512"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "assumenda"], ["description", "Rem ipsa sed optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.453755"], ["updated_at", "2020-05-05 18:42:10.453755"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corporis"], ["description", "Quam repellat optio eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.455066"], ["updated_at", "2020-05-05 18:42:10.455066"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Doloribus soluta ipsam exercitationem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.456561"], ["updated_at", "2020-05-05 18:42:10.456561"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Thanh Gerhold"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$wvRb6W9LdzRM9RGSpY8xlulEt0fAVu06s9q2JktWrkVOOiaAbXRBS"], ["created_at", "2020-05-05 18:42:10.460513"], ["updated_at", "2020-05-05 18:42:10.460513"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.21ms) +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 15:42:10 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "at"], ["description", "Ut culpa mollitia aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.482076"], ["updated_at", "2020-05-05 18:42:10.482076"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Sunt qui similique non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.485410"], ["updated_at", "2020-05-05 18:42:10.485410"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repudiandae"], ["description", "Dolores sed quam eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.487620"], ["updated_at", "2020-05-05 18:42:10.487620"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Consequuntur rem voluptatibus voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.503132"], ["updated_at", "2020-05-05 18:42:10.503132"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iusto"], ["description", "Quam et dolore ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.505521"], ["updated_at", "2020-05-05 18:42:10.505521"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellat"], ["description", "Ea esse vitae veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.506953"], ["updated_at", "2020-05-05 18:42:10.506953"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Possimus et quaerat a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.508526"], ["updated_at", "2020-05-05 18:42:10.508526"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "mollitia"], ["description", "Soluta blanditiis cumque temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.510347"], ["updated_at", "2020-05-05 18:42:10.510347"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "error"], ["description", "Impedit et qui nostrum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.511867"], ["updated_at", "2020-05-05 18:42:10.511867"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officiis"], ["description", "Tenetur ut sed iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.513179"], ["updated_at", "2020-05-05 18:42:10.513179"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lane Wisozk"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oIDke.lIkiERGQx1k0ZkuugS/vGBDUVt8fT7Wi2LdOx0H/u.YYIYe"], ["created_at", "2020-05-05 18:42:10.515807"], ["updated_at", "2020-05-05 18:42:10.515807"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.8ms | ActiveRecord: 0.2ms | Allocations: 2839) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "neque"], ["description", "Sequi omnis qui error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.536762"], ["updated_at", "2020-05-05 18:42:10.536762"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Recusandae veniam perspiciatis autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.540421"], ["updated_at", "2020-05-05 18:42:10.540421"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Dolore consequatur nihil voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.543816"], ["updated_at", "2020-05-05 18:42:10.543816"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illo"], ["description", "Officia ut sit nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.545332"], ["updated_at", "2020-05-05 18:42:10.545332"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consectetur"], ["description", "Minus et distinctio sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.546656"], ["updated_at", "2020-05-05 18:42:10.546656"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Sit at aut provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.548208"], ["updated_at", "2020-05-05 18:42:10.548208"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "architecto"], ["description", "Accusamus rem earum odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.550256"], ["updated_at", "2020-05-05 18:42:10.550256"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "modi"], ["description", "Quia totam sed vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.551661"], ["updated_at", "2020-05-05 18:42:10.551661"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "provident"], ["description", "Et numquam harum animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.552962"], ["updated_at", "2020-05-05 18:42:10.552962"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Saepe adipisci distinctio cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.554242"], ["updated_at", "2020-05-05 18:42:10.554242"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jacinta Schroeder"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/cKRa.mmDkWN2gnHoFTZh.zGDi7DwasqgHjDEUMEhi1KbEdn1deGC"], ["created_at", "2020-05-05 18:42:10.556886"], ["updated_at", "2020-05-05 18:42:10.556886"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.28ms) +Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2841) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:42: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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:42:10.582851"], ["updated_at", "2020-05-05 18:42:10.582851"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.56ms) +Completed 201 Created in 22ms (Views: 1.0ms | ActiveRecord: 1.2ms | Allocations: 6207) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Sunt exercitationem ex omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.598712"], ["updated_at", "2020-05-05 18:42:10.598712"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quisquam"], ["description", "Quia dolores nam quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.603346"], ["updated_at", "2020-05-05 18:42:10.603346"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugit"], ["description", "Odit deserunt architecto quaerat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.605164"], ["updated_at", "2020-05-05 18:42:10.605164"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ducimus"], ["description", "Nostrum animi nihil nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.606825"], ["updated_at", "2020-05-05 18:42:10.606825"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sequi"], ["description", "Provident dolorem a et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.608237"], ["updated_at", "2020-05-05 18:42:10.608237"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veritatis"], ["description", "Ea nam cum et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.610301"], ["updated_at", "2020-05-05 18:42:10.610301"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Sint aut dolor est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.611628"], ["updated_at", "2020-05-05 18:42:10.611628"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Quidem esse ratione tenetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.612925"], ["updated_at", "2020-05-05 18:42:10.612925"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsam"], ["description", "Perspiciatis reiciendis vero tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.614162"], ["updated_at", "2020-05-05 18:42:10.614162"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Ut similique nemo inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.615479"], ["updated_at", "2020-05-05 18:42:10.615479"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Winston Bauch Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9t41VFvy67VYOfw3l/yhSetewmHjGJau7R/4vb0AswFJ7sKlv5uaC"], ["created_at", "2020-05-05 18:42:10.618115"], ["updated_at", "2020-05-05 18:42:10.618115"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.75ms) +Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:42: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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:42:10.631078"], ["updated_at", "2020-05-05 18:42:10.631078"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.46ms) +Completed 201 Created in 5ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 2251) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Odit hic dolor ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.646540"], ["updated_at", "2020-05-05 18:42:10.646540"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cupiditate"], ["description", "Molestiae aliquam in deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.650756"], ["updated_at", "2020-05-05 18:42:10.650756"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "placeat"], ["description", "Ducimus quasi possimus omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.652718"], ["updated_at", "2020-05-05 18:42:10.652718"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Accusamus sint aut enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.654188"], ["updated_at", "2020-05-05 18:42:10.654188"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quam"], ["description", "Et error eaque asperiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.655653"], ["updated_at", "2020-05-05 18:42:10.655653"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "earum"], ["description", "Nihil officia quis voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.657018"], ["updated_at", "2020-05-05 18:42:10.657018"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "A ut quas aperiam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.658266"], ["updated_at", "2020-05-05 18:42:10.658266"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Harum adipisci et officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.660374"], ["updated_at", "2020-05-05 18:42:10.660374"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cumque"], ["description", "Asperiores architecto aut et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.663096"], ["updated_at", "2020-05-05 18:42:10.663096"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Nihil autem omnis quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.665318"], ["updated_at", "2020-05-05 18:42:10.665318"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Ross Hoppe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TrXAeSw9OkThTfFJzvMw.Ot4Zjbd5OdsdJEOoiuUbwpJpLzflJ6Ii"], ["created_at", "2020-05-05 18:42:10.668117"], ["updated_at", "2020-05-05 18:42:10.668117"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.5ms | ActiveRecord: 0.1ms | Allocations: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 4006) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Labore possimus ipsum sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.692450"], ["updated_at", "2020-05-05 18:42:10.692450"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Sint similique veniam qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.696425"], ["updated_at", "2020-05-05 18:42:10.696425"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facilis"], ["description", "Quasi adipisci voluptas porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.698347"], ["updated_at", "2020-05-05 18:42:10.698347"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "mollitia"], ["description", "Ullam quis sed facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.699777"], ["updated_at", "2020-05-05 18:42:10.699777"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Sed alias et et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.702004"], ["updated_at", "2020-05-05 18:42:10.702004"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "beatae"], ["description", "Pariatur ab laboriosam non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.704260"], ["updated_at", "2020-05-05 18:42:10.704260"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "saepe"], ["description", "Autem dicta voluptatum maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.706874"], ["updated_at", "2020-05-05 18:42:10.706874"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Quae inventore facilis qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.708900"], ["updated_at", "2020-05-05 18:42:10.708900"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Et rerum at nostrum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.710711"], ["updated_at", "2020-05-05 18:42:10.710711"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Omnis inventore necessitatibus et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.712015"], ["updated_at", "2020-05-05 18:42:10.712015"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Terry Kilback Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DZry.SgAKVN0KGtGHeqjP.bdfb4FfLeXewW3KNUFSHghT9qTWbcdC"], ["created_at", "2020-05-05 18:42:10.714655"], ["updated_at", "2020-05-05 18:42:10.714655"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.1ms | Allocations: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 3697) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Est soluta voluptatem ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.738109"], ["updated_at", "2020-05-05 18:42:10.738109"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Tempora hic id deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.742145"], ["updated_at", "2020-05-05 18:42:10.742145"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "numquam"], ["description", "Sed aut quibusdam natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.745224"], ["updated_at", "2020-05-05 18:42:10.745224"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quas"], ["description", "Ducimus quo quasi quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.746664"], ["updated_at", "2020-05-05 18:42:10.746664"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Accusantium dolorem et aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.748041"], ["updated_at", "2020-05-05 18:42:10.748041"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illo"], ["description", "Qui ea sed voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.749430"], ["updated_at", "2020-05-05 18:42:10.749430"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quidem"], ["description", "Praesentium fugit incidunt qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.750723"], ["updated_at", "2020-05-05 18:42:10.750723"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Autem voluptate aut in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.752038"], ["updated_at", "2020-05-05 18:42:10.752038"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Officiis natus autem et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.753479"], ["updated_at", "2020-05-05 18:42:10.753479"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "occaecati"], ["description", "Quos vel corporis totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.754794"], ["updated_at", "2020-05-05 18:42:10.754794"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elliot Purdy Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1rbuhyfPSuaq8jtUQdcXk.1aLopzZRz9a4srXZEBVf0TkPA5gA5Me"], ["created_at", "2020-05-05 18:42:10.757384"], ["updated_at", "2020-05-05 18:42:10.757384"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.13ms) +Completed 200 OK in 8ms (Views: 6.3ms | ActiveRecord: 0.3ms | Allocations: 2843) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.2ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:42:10.770826"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1044) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (13.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Molestiae repellat aperiam enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.781040"], ["updated_at", "2020-05-05 18:42:10.781040"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Quis explicabo minus enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.796433"], ["updated_at", "2020-05-05 18:42:10.796433"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusantium"], ["description", "Voluptatem quas ex dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.797943"], ["updated_at", "2020-05-05 18:42:10.797943"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ullam"], ["description", "Recusandae inventore esse et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.799226"], ["updated_at", "2020-05-05 18:42:10.799226"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Blanditiis iste et molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.800559"], ["updated_at", "2020-05-05 18:42:10.800559"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Tempora rerum ut ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.802580"], ["updated_at", "2020-05-05 18:42:10.802580"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Alias facere saepe sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.804774"], ["updated_at", "2020-05-05 18:42:10.804774"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Est magnam autem nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.807028"], ["updated_at", "2020-05-05 18:42:10.807028"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Omnis et sit ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.808377"], ["updated_at", "2020-05-05 18:42:10.808377"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quasi"], ["description", "Cumque odio laudantium rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.810034"], ["updated_at", "2020-05-05 18:42:10.810034"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jarrod Bins"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/xTvAgxu9Ok.b1fv2xComeiT83fX6C0O.bqOyLH/elv/OepWHELfa"], ["created_at", "2020-05-05 18:42:10.816283"], ["updated_at", "2020-05-05 18:42:10.816283"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2842) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:42:10.827717"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 999) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "distinctio"], ["description", "Aspernatur et omnis beatae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.837824"], ["updated_at", "2020-05-05 18:42:10.837824"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Beatae quam reiciendis id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.840822"], ["updated_at", "2020-05-05 18:42:10.840822"], ["created_by", "1"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "amet"], ["description", "Labore ea tempore in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.844893"], ["updated_at", "2020-05-05 18:42:10.844893"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dicta"], ["description", "Et error deserunt nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.846461"], ["updated_at", "2020-05-05 18:42:10.846461"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Similique velit suscipit impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.847707"], ["updated_at", "2020-05-05 18:42:10.847707"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempora"], ["description", "Exercitationem quia odio qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.849043"], ["updated_at", "2020-05-05 18:42:10.849043"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laborum"], ["description", "Nulla labore in et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.850300"], ["updated_at", "2020-05-05 18:42:10.850300"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsum"], ["description", "Quod sed voluptas cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.851548"], ["updated_at", "2020-05-05 18:42:10.851548"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Voluptatem nam perferendis fugit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.852942"], ["updated_at", "2020-05-05 18:42:10.852942"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorum"], ["description", "Tenetur consequatur cumque voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:10.854239"], ["updated_at", "2020-05-05 18:42:10.854239"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Micheal Schulist PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$bQ0/jARIKHcjnWdae6QTcOwy9K7nSEkkoXNdwWp/ZMr/cJ9XXHyMC"], ["created_at", "2020-05-05 18:42:10.856842"], ["updated_at", "2020-05-05 18:42:10.856842"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.35ms) +Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1205) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ellsworth Bruen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GGqGQHm1AlAAWVhroSDG9eu.WU7K/dVxK.LfsMM9V89P0SUnIfu.O"], ["created_at", "2020-05-05 18:42:10.881712"], ["updated_at", "2020-05-05 18:42:10.881712"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marinda Hintz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$P.RobSq/6ACIs2PT.QQqGu3wk44IXU6zdhTKPZ.2XFiU64p0e4FqW"], ["created_at", "2020-05-05 18:42:10.886995"], ["updated_at", "2020-05-05 18:42:10.886995"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Delinda Weber"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$m64xWon6wE4LI1a3aVghsOC9olc5fWVCG4gZykVByXSIF3wm0tbei"], ["created_at", "2020-05-05 18:42:10.889628"], ["updated_at", "2020-05-05 18:42:10.889628"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ivy Kub DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$m/5n4qaD/Nsnj.4uMTQJjOgo7Xo5k7QeT9CUWmtk9PXbEIIvx0Y/O"], ["created_at", "2020-05-05 18:42:10.892370"], ["updated_at", "2020-05-05 18:42:10.892370"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kieth Kohler IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hf1xfJ1.Wg.p2/Q8xhCBD.fd5Ro0uKWQZhcaIdsytEhOHLWB9raS2"], ["created_at", "2020-05-05 18:42:10.895188"], ["updated_at", "2020-05-05 18:42:10.895188"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rosena Ferry"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8LHUlhh/Cuyyh0y4bdlHSuQfohSwB6K6ibYkWyHPJhSGi7VdnCLxW"], ["created_at", "2020-05-05 18:42:10.897615"], ["updated_at", "2020-05-05 18:42:10.897615"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tomoko Stark III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Z8EvrTfSnjlu0Auu0DmVMuSPtcpwL3KGLIrCPUPSJ.uu4H.LsA1BW"], ["created_at", "2020-05-05 18:42:10.900052"], ["updated_at", "2020-05-05 18:42:10.900052"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dorthy Kuvalis"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$p1L5/NnzNT9fC3K.CyRFEOes/Z6gtEz.gXoxPBzK7e18EZaqX7L9O"], ["created_at", "2020-05-05 18:42:10.903025"], ["updated_at", "2020-05-05 18:42:10.903025"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sung Leannon"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$EWomXMW.HnNA8GNcS/x4h.IqDWb/QgtirrAUDpjtVcydOCINJS1dm"], ["created_at", "2020-05-05 18:42:10.906395"], ["updated_at", "2020-05-05 18:42:10.906395"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cami Muller III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZvhSIJcStAcKNaMOTz.KgOEL/S.cWfeIGb3gvKQs5uEynpou28VvG"], ["created_at", "2020-05-05 18:42:10.909511"], ["updated_at", "2020-05-05 18:42:10.909511"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.76ms) +Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms | Allocations: 2345) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gayle Wehner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$43uYcbS4CmO.37LUtQ86f.tBejRiQM0GuOwS.kI8ctkfsfo11jvKS"], ["created_at", "2020-05-05 18:42:10.930178"], ["updated_at", "2020-05-05 18:42:10.930178"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kecia Beier"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/A.HNlXNe52qdpRji/bW4.pG3FAoATRL8jdGCA/QTT6OlZbucsiau"], ["created_at", "2020-05-05 18:42:10.934857"], ["updated_at", "2020-05-05 18:42:10.934857"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Stacee O'Hara"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$PpwNBAf2V/B9VRM7nKNXmeHXT/A4jkNerFRJXEaCjgLxH/6Vltn.O"], ["created_at", "2020-05-05 18:42:10.937633"], ["updated_at", "2020-05-05 18:42:10.937633"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Bebe Hayes"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VuqUB6EFimh56xaMAV5ta.V4jVYkThOTMFjh14bXxTXEwq8XZr0q6"], ["created_at", "2020-05-05 18:42:10.940140"], ["updated_at", "2020-05-05 18:42:10.940140"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elanor Romaguera"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qr/jnG4TDrhulBDb3gwWqehO.pqMT0cju34Lsst7Q5/hhdnKwNE/u"], ["created_at", "2020-05-05 18:42:10.943653"], ["updated_at", "2020-05-05 18:42:10.943653"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ervin Parker"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VMPvt/WyHm8m0QIZ4IFwVumNjtys.srYcyWmDEKJ2fG.xsx.X6Xx2"], ["created_at", "2020-05-05 18:42:10.947306"], ["updated_at", "2020-05-05 18:42:10.947306"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sherly Mohr"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Hda2vigvqVT6Zbgug8jSt.mev6ibgC0wOKIZXkkKQOSapF5GVNXSe"], ["created_at", "2020-05-05 18:42:10.950212"], ["updated_at", "2020-05-05 18:42:10.950212"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ernesto Renner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VxpM1j1QBnl4O2NqKOjiCOD2RqoB8b0XmkdnpXh.yE6IpbYPAhlFe"], ["created_at", "2020-05-05 18:42:10.952605"], ["updated_at", "2020-05-05 18:42:10.952605"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Esteban Murray DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HzOvPnuKnatvJWdpSB6MSOZvz59re7IV2HWLnondb3qEpymPUihEO"], ["created_at", "2020-05-05 18:42:10.955183"], ["updated_at", "2020-05-05 18:42:10.955183"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Esther Schowalter"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2qMXlG34YOsKhgyaaYaZMOqbMT0.Q4rYVbWLJHXC5pAQILU1b1xei"], ["created_at", "2020-05-05 18:42:10.957607"], ["updated_at", "2020-05-05 18:42:10.957607"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:42:10 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.18ms) +Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms | Allocations: 2203) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Francisco Bernhard"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$r1/MejR0NJEjri3B2EF1jeHm7XoHYnLYgWNEZPJawg0Uq9IVatT5O"], ["created_at", "2020-05-05 18:42:10.975426"], ["updated_at", "2020-05-05 18:42:10.975426"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Caryl Prohaska III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$eHky4kVgflfus0Al3QsrAudhZTtVpLIG8kSW0b1J/4vYGVKi94M9e"], ["created_at", "2020-05-05 18:42:10.980470"], ["updated_at", "2020-05-05 18:42:10.980470"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lue Kihn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$weHzf4ugmfCxxjYwtdz2yO6Aub1TRkx.65SAC3bj5Du2apneuDaga"], ["created_at", "2020-05-05 18:42:10.983733"], ["updated_at", "2020-05-05 18:42:10.983733"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sang Kilback"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ENKgx.K8K4aoN2uzdh72GumvdB10hkOZLGWyQfiYueUbhqOjrG/s2"], ["created_at", "2020-05-05 18:42:10.987201"], ["updated_at", "2020-05-05 18:42:10.987201"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Elli Greenholt"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KR4pFgcvHZHkqnjs/GmSv.n4pMj6liKelXd.l56gC19ZoAEw.O.7e"], ["created_at", "2020-05-05 18:42:10.990133"], ["updated_at", "2020-05-05 18:42:10.990133"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tanner Murphy MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZViF81P9OH7UEJcMqd8nq.p1qkzDWQfUQ83.s5hHIE.dxmD6ILrPO"], ["created_at", "2020-05-05 18:42:10.992919"], ["updated_at", "2020-05-05 18:42:10.992919"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Delphine Nicolas"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$S3Af3OEb.u8FlH2zWlOue.DlrKO5ToGn8Hz451IghfsBMUsjdB.j2"], ["created_at", "2020-05-05 18:42:10.995783"], ["updated_at", "2020-05-05 18:42:10.995783"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hyman Romaguera"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oeSgxm7gmAxJwG6ZzpCKnuXsxdDBvcutqHxYA0r7tXh3GbTXhPS9i"], ["created_at", "2020-05-05 18:42:10.998171"], ["updated_at", "2020-05-05 18:42:10.998171"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kellye Jerde"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$zfZ7Eunmo3gwZoTYHaw91u9Iy5R6/R1MwyjV6KkOWK8RHfdJEy/vK"], ["created_at", "2020-05-05 18:42:11.000572"], ["updated_at", "2020-05-05 18:42:11.000572"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Minda Wehner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jzQST9UhdotYNgDVjMdmBe.VPqs9EJ6kHJNOSHhDynfv426ZcNDRm"], ["created_at", "2020-05-05 18:42:11.003251"], ["updated_at", "2020-05-05 18:42:11.003251"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:42:11 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.05ms) +Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:42:11 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.46ms) +Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Wilfred McLaughlin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$IQtUayR/3E7VmlJDyWtp..b6DUyX0yLx1ASSy42qSSmJ6MQZv5/Au"], ["created_at", "2020-05-05 18:42:11.023790"], ["updated_at", "2020-05-05 18:42:11.023790"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rodrigo Volkman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LTRzyaz8PWFZgn3okJ2BmOOKpT9Mk2w0YAxWRlZHBDVNWZaLewHcO"], ["created_at", "2020-05-05 18:42:11.028495"], ["updated_at", "2020-05-05 18:42:11.028495"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Norris O'Keefe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fwB6MX4jwoUdXaS5vZbXT.8s3AURmbBJYLL7j0mq3cMLwcbLr63xm"], ["created_at", "2020-05-05 18:42:11.031195"], ["updated_at", "2020-05-05 18:42:11.031195"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Cristen Larkin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NaE8swp3drCCWbMrBzhyaOBULws2cicPDDY2t9Xa/k94NOe1Pr6hG"], ["created_at", "2020-05-05 18:42:11.033672"], ["updated_at", "2020-05-05 18:42:11.033672"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tonisha Dickinson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0zxdAw0tZACzBTZkWvTAFu3pe9lh7nD7SkBGmwo7vB6Vl5Pt9QHuy"], ["created_at", "2020-05-05 18:42:11.036306"], ["updated_at", "2020-05-05 18:42:11.036306"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Vanita Simonis"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/nbqptvmaYALBUBS0A2MO.sV9RB7iMix3x.PhR9eno1sJ12Noi0Ke"], ["created_at", "2020-05-05 18:42:11.038727"], ["updated_at", "2020-05-05 18:42:11.038727"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Arletta Collins DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pIXkNXD9KDbg1BkJv7GjR.02jO0Qa9HYNBifqLh3S7HKQSFlSRoQy"], ["created_at", "2020-05-05 18:42:11.041424"], ["updated_at", "2020-05-05 18:42:11.041424"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Earlene Wolff"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$zkZancjVGx8kkbYv42s05.qOWC/sHCzjiQwJTyc7cmzLqcvdjeO3i"], ["created_at", "2020-05-05 18:42:11.045336"], ["updated_at", "2020-05-05 18:42:11.045336"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ramona Treutel PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$J0NGo2.pkqDUdnHP4O7U9OfPzmVWi5qmRT3iGjE4HSPLlSe2RWMc2"], ["created_at", "2020-05-05 18:42:11.048927"], ["updated_at", "2020-05-05 18:42:11.048927"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jonah Feil"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$V5glNPB4lTfcdjM3D4Gt2.9xAu9XO9gIFeKetA7BAxTyEtbmnAN3e"], ["created_at", "2020-05-05 18:42:11.051439"], ["updated_at", "2020-05-05 18:42:11.051439"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:42:11 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.14ms) +Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:42:11 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.39ms) +Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.2ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Carylon Goyette"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZXBeQgUZjswikpV2XxfjaunjmC9irLZjj.p7QSGza8966xx/wxUce"], ["created_at", "2020-05-05 18:42:11.072270"], ["updated_at", "2020-05-05 18:42:11.072270"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Jaimee Schuppe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ivEKbioxKZyOsC2iO1k5m.e7goxXivm9QVEGALtKybMtfw3xz6hy2"], ["created_at", "2020-05-05 18:42:11.077245"], ["updated_at", "2020-05-05 18:42:11.077245"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Zenia Hoppe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dIK8floXGh4n3lQOSwbAcuREwTzRz0I4wARLEFBaeC28tw71whFlO"], ["created_at", "2020-05-05 18:42:11.080148"], ["updated_at", "2020-05-05 18:42:11.080148"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Detra Schinner IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5skHquY.O9U7nW0mFBBLS.wcXthsW7diGjoICkQ7q3YmUethqA18u"], ["created_at", "2020-05-05 18:42:11.082728"], ["updated_at", "2020-05-05 18:42:11.082728"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Isabella Sporer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Itd39p/8O1Axs4aD.Wm8Zex6pIhosB1tVSB3sA65rEV7lRKnYdFMW"], ["created_at", "2020-05-05 18:42:11.086828"], ["updated_at", "2020-05-05 18:42:11.086828"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Yoshiko Monahan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pdFh2DTC7Xa8r5kUyPGC2.74hBTdezEfDe5yXd3eTufik1eLLyV8q"], ["created_at", "2020-05-05 18:42:11.089760"], ["updated_at", "2020-05-05 18:42:11.089760"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leif Larkin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0Z1hYoUFVfEFaQcgdeKlueMP1DTEUytF36D5gSlp0ax9y6740Ny5a"], ["created_at", "2020-05-05 18:42:11.092437"], ["updated_at", "2020-05-05 18:42:11.092437"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lynsey Schowalter"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SQvnHyPP3Qj3C7OFyaemneD3BUg.l6bgynMDPZlQ392W4mv2rGJeG"], ["created_at", "2020-05-05 18:42:11.095394"], ["updated_at", "2020-05-05 18:42:11.095394"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leeanne Rice"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0bLyEnyVCwTjZ9TMp6TmlOTo4iafbVi7mgQjWxh702zwaMMnQB8Qi"], ["created_at", "2020-05-05 18:42:11.097826"], ["updated_at", "2020-05-05 18:42:11.097826"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leona Shanahan I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vFzNHlgILbuE6c5ioQFlWuuVFidVlBiX7Fpz5k6sGoiraaDBZQbp."], ["created_at", "2020-05-05 18:42:11.100291"], ["updated_at", "2020-05-05 18:42:11.100291"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:42:11 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.0ms) +Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:42:11 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marcel Jast"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DsWr2kY9Xd8T3LiTDf6vj.5D3OOk4MdEPNEx4ieq/OvA.gQxDOJg6"], ["created_at", "2020-05-05 18:42:11.120654"], ["updated_at", "2020-05-05 18:42:11.120654"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Trenton Wolff"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$W15kap2UcF/2KEl.xtaX6uzGW91M4UHEWFY8cDbwGDAuMm0lGkn7W"], ["created_at", "2020-05-05 18:42:11.125937"], ["updated_at", "2020-05-05 18:42:11.125937"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Doreatha Stroman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NloRvx/gt4dojzqfjTU8lOTnmsPiA30XGl8YIVzRxaEHS9T4p4/Au"], ["created_at", "2020-05-05 18:42:11.129569"], ["updated_at", "2020-05-05 18:42:11.129569"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Johnny Connelly"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$W84KYOxX94lT3HCd4DwUOek2I4zDQJKfGo9QvxsStuXbIQtQaeq2e"], ["created_at", "2020-05-05 18:42:11.132729"], ["updated_at", "2020-05-05 18:42:11.132729"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hildegarde Rau IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7N6bEYZHhkfhIOkzmmALgOjRVNUlmCLb6yZypEfGupoLcqmEzpGo."], ["created_at", "2020-05-05 18:42:11.135730"], ["updated_at", "2020-05-05 18:42:11.135730"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Edythe Bechtelar"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tL0i3qAtUWOGEnwIy6OYUeqvKzPjyiJ7JWlZdZj8R2ezp1Ptj0MM."], ["created_at", "2020-05-05 18:42:11.138131"], ["updated_at", "2020-05-05 18:42:11.138131"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mitsue Leuschke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TbpdXhcNj7CrFVUzGYuY7OR.YVYfl.9ImX5SoTf4lCoHj9NWgiaJa"], ["created_at", "2020-05-05 18:42:11.140594"], ["updated_at", "2020-05-05 18:42:11.140594"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Louetta Kulas"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UBGvIFtFA1eQAY1NxVPRs.t/ygv3g6CUQ9DuPb5Yf6Cv1BYOMIXTu"], ["created_at", "2020-05-05 18:42:11.143333"], ["updated_at", "2020-05-05 18:42:11.143333"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bee Rempel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Kudr4XLLZFHfZn0i94p5SObUl3XUtrjBhRRj/3auuTspndiGhTAGK"], ["created_at", "2020-05-05 18:42:11.146921"], ["updated_at", "2020-05-05 18:42:11.146921"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Claudio Boyer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$PcKZXhd2RymJ04FVf0Ago.r7mZZMadXXsO5wSVm4OCB5tA3eXvK/2"], ["created_at", "2020-05-05 18:42:11.149424"], ["updated_at", "2020-05-05 18:42:11.149424"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:42:11 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.09ms) +Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:42:11 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Shannan Hahn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BotlNtAg9zPKqLb75tp2ueYdE.rgJGY4nozpXhm22g5cNwyFAaZBW"], ["created_at", "2020-05-05 18:42:11.170099"], ["updated_at", "2020-05-05 18:42:11.170099"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Fredric Reinger"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tmVJeTIDyw26sUuWu1N0oeSA7a1QZwe0Len9yxTVXOVd8fM7VP9vm"], ["created_at", "2020-05-05 18:42:11.174059"], ["updated_at", "2020-05-05 18:42:11.174059"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Earle Hilll"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mOf9WqQQk8ArUKHQGkX9jeDe7RU9.mXsoKA4YqEMESmw11K4g7E9."], ["created_at", "2020-05-05 18:42:11.191290"], ["updated_at", "2020-05-05 18:42:11.191290"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Florinda Corkery"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BOLwQPnYOLTF35hgr2aQOuQr631BMbPY2EdGzAEYcK8xUNCuycGe2"], ["created_at", "2020-05-05 18:42:11.194365"], ["updated_at", "2020-05-05 18:42:11.194365"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Fritz Hegmann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jk3280R1Pfnt918hgxOAN.UsIxSICwgZll0GqkR9E1esFSgZ4hxjW"], ["created_at", "2020-05-05 18:42:11.197075"], ["updated_at", "2020-05-05 18:42:11.197075"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mauricio Bauch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fG5ZinIB/M1hd5alpBBcvuZeF6EhqCCjARRtdFoZkD4uS2r2H1UMa"], ["created_at", "2020-05-05 18:42:11.199563"], ["updated_at", "2020-05-05 18:42:11.199563"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Merlin Kris"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$C2.PyxEddrERL.tIuoyVY.yMOszxbZwEV/irF7fttmTDfBCR88eq2"], ["created_at", "2020-05-05 18:42:11.202097"], ["updated_at", "2020-05-05 18:42:11.202097"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bettye Champlin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Q2dfpARq5rxYchjuweqW/e/2dp2E.tMdbpI5f/8U2Y9TX658.Hvay"], ["created_at", "2020-05-05 18:42:11.205014"], ["updated_at", "2020-05-05 18:42:11.205014"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Betty Metz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SZKQiVvQFnsRzujLnAW7g.QhnSeW4uXyw4OW6NmZavKqZOQpGgJL2"], ["created_at", "2020-05-05 18:42:11.208095"], ["updated_at", "2020-05-05 18:42:11.208095"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Orval Hahn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$cw3r88yuUZWpRQ4ZjGkI4eeg5y36IU1neIcfXz/EdH.loRgb9WONq"], ["created_at", "2020-05-05 18:42:11.210917"], ["updated_at", "2020-05-05 18:42:11.210917"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:42:11 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.91ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:42:11 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Sheyla", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "email"=>"shey@mail.com"} +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sheyla"], ["email", "shey@mail.com"], ["password_digest", "$2a$04$DhMQg2SS8on3LTlpW962x.cpE8glJahM4dp/JrDPcvImHTHfnJchG"], ["created_at", "2020-05-05 18:42:11.220827"], ["updated_at", "2020-05-05 18:42:11.220827"], ["picture", "https://joeschmoe.io/api/v1/jocelyn"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.49ms) +Completed 201 Created in 11ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1715) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Troy Hayes"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oiqdWeiMqIts7g45tIdchulYqZq24YVaSiCuaObmQCHClrLv5L2TW"], ["created_at", "2020-05-05 18:42:11.239738"], ["updated_at", "2020-05-05 18:42:11.239738"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mario Frami"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$bRBKq8Px.CiFhU.EKmlQbOpfAE99tW4zBCmEetMTvqKdDu7gVPjp6"], ["created_at", "2020-05-05 18:42:11.244102"], ["updated_at", "2020-05-05 18:42:11.244102"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Francis Moen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CDsVaFYvcFRUlR2aa4zteen3pfWmpic054ue.s3.6W4tDa1cRHxsu"], ["created_at", "2020-05-05 18:42:11.249223"], ["updated_at", "2020-05-05 18:42:11.249223"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Evia Haley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FX7IgTx4skn5JQaixx6zpuwotSD3N6dc25VtBrjuqIK74.QrvpexG"], ["created_at", "2020-05-05 18:42:11.252137"], ["updated_at", "2020-05-05 18:42:11.252137"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ronnie Abshire"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$bXJDO8w3unMOefQ.bwgVuuppuoB36TgoPgyYkGYQflPDESI597csW"], ["created_at", "2020-05-05 18:42:11.254575"], ["updated_at", "2020-05-05 18:42:11.254575"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Natalie Daugherty"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Nsnvz7wMASjPHXY0kzwWCuh7QJ9aHBWFPLsxp2GR8Clo1bY05HGiS"], ["created_at", "2020-05-05 18:42:11.257121"], ["updated_at", "2020-05-05 18:42:11.257121"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jacques Bernier"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FsRVQhdjs5kVYvxEb1AyUOYWuOCZHH//qADXnD4n2PjPWczpEWtB6"], ["created_at", "2020-05-05 18:42:11.259615"], ["updated_at", "2020-05-05 18:42:11.259615"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alda Runolfsdottir"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5ifCKTRD8zmmzWIWkJV3EOp/iaR7OIeyftyxCc1NvxDdi.LlV3OP2"], ["created_at", "2020-05-05 18:42:11.262656"], ["updated_at", "2020-05-05 18:42:11.262656"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Deetta Franecki"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$yAkNCgbm6Nk0B6DmcY4PE.oG9DTmTztZJ2JdknToSwmFMPIVZ0DoS"], ["created_at", "2020-05-05 18:42:11.265996"], ["updated_at", "2020-05-05 18:42:11.265996"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Isaias Brown"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$86L6wa4Qnh78sHMe8cGp/us86.XmYn/CMdiQA4UCDGR.TNq32SkFq"], ["created_at", "2020-05-05 18:42:11.269476"], ["updated_at", "2020-05-05 18:42:11.269476"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:42:11 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.89ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:42:11 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Sheyla", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "email"=>"shey@mail.com"} +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sheyla"], ["email", "shey@mail.com"], ["password_digest", "$2a$04$W2q0R.WNLkmgSPlB08OhOOmrIfmnPxzzi6thKMxznLa4C1ZNtE.TO"], ["created_at", "2020-05-05 18:42:11.279730"], ["updated_at", "2020-05-05 18:42:11.279730"], ["picture", "https://joeschmoe.io/api/v1/jai"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.65ms) +Completed 201 Created in 7ms (Views: 1.4ms | ActiveRecord: 0.3ms | Allocations: 1295) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Kelsie Spinka"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$km/O6zYKJbhnJ34/DBMgzOZhDIRzJ2ibZJaq29Sg/OR84YeoRrD92"], ["created_at", "2020-05-05 18:42:11.295745"], ["updated_at", "2020-05-05 18:42:11.295745"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Steve Aufderhar DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CfyDHRS.1sRH/yHfSsZjAOxs8WcEuI26NLSRxdC.E2uTD1Ovvw9Wq"], ["created_at", "2020-05-05 18:42:11.299661"], ["updated_at", "2020-05-05 18:42:11.299661"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lanny Ondricka"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DDhIoPklzVlncNDKr/8onusR3J.xoP38IIHtGBsNm0m7y9mK9G1Du"], ["created_at", "2020-05-05 18:42:11.302342"], ["updated_at", "2020-05-05 18:42:11.302342"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Moses Nicolas"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$IpmpN4ZoYBRrB6DkpaALhOIbtaEbSRyJw9vnKHHG2dy2HZlTQUicK"], ["created_at", "2020-05-05 18:42:11.305582"], ["updated_at", "2020-05-05 18:42:11.305582"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Cora Macejkovic"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FbgMiSsPO3S.KRtVmFw0BeB6mIJ9FS2DAdr1YfMhctjxoYe3u8l3i"], ["created_at", "2020-05-05 18:42:11.309239"], ["updated_at", "2020-05-05 18:42:11.309239"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Casey Pacocha"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.G3g5e7Cr5I40Kjf1pvH4.IOSQotqxbtxIl1RFBvjMOb2v22lK6om"], ["created_at", "2020-05-05 18:42:11.312705"], ["updated_at", "2020-05-05 18:42:11.312705"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Raymon Rodriguez"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aAdzWQkca6fFv722pv/2leVhh3By/T6g1V.6hlM44DumRfqF/l9py"], ["created_at", "2020-05-05 18:42:11.315167"], ["updated_at", "2020-05-05 18:42:11.315167"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nada Howe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.cXFellh9qrMmwQ5567s9.MUVf2MqUWzOy02OHDq7tqHhaLWz1S4a"], ["created_at", "2020-05-05 18:42:11.317607"], ["updated_at", "2020-05-05 18:42:11.317607"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Napoleon Schiller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Qfy0vI7Osqo8iDizwBrYdeGqSo80jjiL/0PtYAgcB8pFACpmdK.qG"], ["created_at", "2020-05-05 18:42:11.319986"], ["updated_at", "2020-05-05 18:42:11.319986"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Keeley Wilkinson DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qiDY.A7bmL.EHckaTpmOzO7/njvtcpLP7kaDWleN3kkvt5p7OJNk6"], ["created_at", "2020-05-05 18:42:11.322437"], ["updated_at", "2020-05-05 18:42:11.322437"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:42:11 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.72ms) +Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.2ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:42:11 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Foobar"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms) +Completed 401 Unauthorized in 3ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 1817) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Matthew Kiehn DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ftFUOl0uFgEb3D.gcnSHL.GBo7xMv5Es3g/IftgttnsyN3BTXWKZW"], ["created_at", "2020-05-05 18:42:11.375039"], ["updated_at", "2020-05-05 18:42:11.375039"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tristan Swaniawski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$uWK/WcFGzo5uh0s3NjTmIud1weBBByrLoGaHHDRqMzJXD603DGPQu"], ["created_at", "2020-05-05 18:42:11.380450"], ["updated_at", "2020-05-05 18:42:11.380450"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Dudley Hickle"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rJorkjtvZVGHJ1aVOv9Ls.BjFlEe4QM5rrA.QVpau2WnE2FcDiQA2"], ["created_at", "2020-05-05 18:42:11.383148"], ["updated_at", "2020-05-05 18:42:11.383148"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Irma Greenfelder"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$zcz/.pu2C8d99qQQMSBrbe1eTMqumq87XBHvFwXIyszFV1e8NvUKq"], ["created_at", "2020-05-05 18:42:11.386540"], ["updated_at", "2020-05-05 18:42:11.386540"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dong Barton"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ApFHYD8rn6TtwTgF4s.aF.Ij2XQUF6fxb/BKEKR2MI7UpXZq5je5y"], ["created_at", "2020-05-05 18:42:11.389956"], ["updated_at", "2020-05-05 18:42:11.389956"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Vincenzo Borer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DYnBC8fCBFohFP/R.qLdTegjNJtlVlpX4ds7luy4h1KV4bJLOncg."], ["created_at", "2020-05-05 18:42:11.392871"], ["updated_at", "2020-05-05 18:42:11.392871"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Babette Ratke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OXOwAhUrNgQqEvGyu4OjK.1uUKZe73/yUtqdJJLbkxBQKM9DjDHii"], ["created_at", "2020-05-05 18:42:11.395683"], ["updated_at", "2020-05-05 18:42:11.395683"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Novella Mills"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jat7oIuv917QzAICUfLHUO7mdoV00Dma3eRJjzapAEhqxfTaXa4mS"], ["created_at", "2020-05-05 18:42:11.398401"], ["updated_at", "2020-05-05 18:42:11.398401"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gale Hayes"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$yfKGaNvUwp0sybJRXtImdOGsGX.dx8Jgv.oSUgI6m6W8VZ5o3OT.2"], ["created_at", "2020-05-05 18:42:11.400864"], ["updated_at", "2020-05-05 18:42:11.400864"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rod Haley MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$f4Q0W9Oq/ENzlL4ysEXHY.mzLKjVGkgydn8TriCXHCg6eGw8cYLqK"], ["created_at", "2020-05-05 18:42:11.403249"], ["updated_at", "2020-05-05 18:42:11.403249"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:42:11 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.34ms) +Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:42:11 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.04ms) +Completed 401 Unauthorized in 3ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 1597) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (4.6ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (151.9ms) DELETE FROM "meetings"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (1.0ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (94.8ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (107.7ms) DELETE FROM "user_meetings"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (94.5ms) DELETE FROM "meets"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (94.2ms) DELETE FROM "conversations"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (100.7ms) DELETE FROM "messagems"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.9ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (102.5ms) DELETE FROM "users"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (4.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hertha Torp Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9B7F2KN9EpBgaxwm.g.gruu1Jt4JBuuJX5ayX.lj0nk/0mHwRRYS2"], ["created_at", "2020-05-05 18:42:51.197148"], ["updated_at", "2020-05-05 18:42:51.197148"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "necessitatibus"], ["description", "Optio inventore delectus vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:51.219354"], ["updated_at", "2020-05-05 18:42:51.219354"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum nulla perspiciatis natus?"], ["description", "Soluta aut inventore consequatur."], ["date", "2020-05-06 18:42:51.244000"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.270750"], ["updated_at", "2020-05-05 18:42:51.270750"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis in ducimus voluptatem?"], ["description", "Neque optio tempora quidem."], ["date", "2020-05-06 18:42:51.272389"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.273156"], ["updated_at", "2020-05-05 18:42:51.273156"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat quam qui voluptatem?"], ["description", "Et consequuntur delectus voluptate."], ["date", "2020-05-06 18:42:51.274346"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.275356"], ["updated_at", "2020-05-05 18:42:51.275356"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores ex ut voluptatem?"], ["description", "Eos aut incidunt id."], ["date", "2020-05-06 18:42:51.276934"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.277758"], ["updated_at", "2020-05-05 18:42:51.277758"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut possimus qui quam?"], ["description", "Quia sed itaque qui."], ["date", "2020-05-06 18:42:51.278902"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.279708"], ["updated_at", "2020-05-05 18:42:51.279708"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam molestiae eos earum?"], ["description", "Iure possimus voluptas architecto."], ["date", "2020-05-06 18:42:51.280903"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.282204"], ["updated_at", "2020-05-05 18:42:51.282204"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi nam et beatae?"], ["description", "Architecto ad aperiam illum."], ["date", "2020-05-06 18:42:51.284176"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.285471"], ["updated_at", "2020-05-05 18:42:51.285471"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In aut cum quisquam?"], ["description", "Quasi labore suscipit corporis."], ["date", "2020-05-06 18:42:51.286970"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.287822"], ["updated_at", "2020-05-05 18:42:51.287822"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur enim aut est?"], ["description", "Saepe est doloribus reiciendis."], ["date", "2020-05-06 18:42:51.288940"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.289632"], ["updated_at", "2020-05-05 18:42:51.289632"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero dolorem et porro?"], ["description", "Est nulla minima quis."], ["date", "2020-05-06 18:42:51.291429"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.292298"], ["updated_at", "2020-05-05 18:42:51.292298"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque modi consequatur non?"], ["description", "Quae est ullam nobis."], ["date", "2020-05-06 18:42:51.294277"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.295296"], ["updated_at", "2020-05-05 18:42:51.295296"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et commodi quisquam voluptate?"], ["description", "Ea omnis veritatis consequuntur."], ["date", "2020-05-06 18:42:51.296779"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.297494"], ["updated_at", "2020-05-05 18:42:51.297494"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit voluptates quis illum?"], ["description", "Beatae officiis temporibus fuga."], ["date", "2020-05-06 18:42:51.298617"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.299302"], ["updated_at", "2020-05-05 18:42:51.299302"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae nobis cum aliquam?"], ["description", "Nemo accusantium architecto nostrum."], ["date", "2020-05-06 18:42:51.300516"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.301226"], ["updated_at", "2020-05-05 18:42:51.301226"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed omnis odit magnam?"], ["description", "Consequatur voluptatem placeat quas."], ["date", "2020-05-06 18:42:51.303007"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.304150"], ["updated_at", "2020-05-05 18:42:51.304150"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque aperiam quisquam corrupti?"], ["description", "Et debitis possimus dolores."], ["date", "2020-05-06 18:42:51.305619"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.306485"], ["updated_at", "2020-05-05 18:42:51.306485"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet deleniti consequatur qui?"], ["description", "Optio sequi vel blanditiis."], ["date", "2020-05-06 18:42:51.307816"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.308588"], ["updated_at", "2020-05-05 18:42:51.308588"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem voluptas enim fuga?"], ["description", "Culpa in sed modi."], ["date", "2020-05-06 18:42:51.309952"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.311256"], ["updated_at", "2020-05-05 18:42:51.311256"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quibusdam iure iste sunt?"], ["description", "Porro odit explicabo voluptatem."], ["date", "2020-05-06 18:42:51.312740"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.313468"], ["updated_at", "2020-05-05 18:42:51.313468"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit fuga est omnis?"], ["description", "Eos nobis quasi vel."], ["date", "2020-05-06 18:42:51.314885"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.315813"], ["updated_at", "2020-05-05 18:42:51.315813"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:42:51 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.49ms) +Completed 200 OK in 34ms (Views: 15.7ms | ActiveRecord: 0.5ms | Allocations: 8637) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Beaulah Zulauf MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$66yIbrEnzz5.nHjf7aAfI.8tq2rE88b2hm7c96R/y4PVizxbM8F2G"], ["created_at", "2020-05-05 18:42:51.401304"], ["updated_at", "2020-05-05 18:42:51.401304"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Non rem placeat voluptatum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:51.405917"], ["updated_at", "2020-05-05 18:42:51.405917"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati rem enim blanditiis?"], ["description", "Facilis odit non earum."], ["date", "2020-05-06 18:42:51.407805"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.408809"], ["updated_at", "2020-05-05 18:42:51.408809"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis non nobis placeat?"], ["description", "Quo omnis aspernatur alias."], ["date", "2020-05-06 18:42:51.410677"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.411788"], ["updated_at", "2020-05-05 18:42:51.411788"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae odio culpa aliquid?"], ["description", "Est ut temporibus dignissimos."], ["date", "2020-05-06 18:42:51.413220"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.413928"], ["updated_at", "2020-05-05 18:42:51.413928"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio et sit id?"], ["description", "Voluptas error quia dolorum."], ["date", "2020-05-06 18:42:51.415138"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.415864"], ["updated_at", "2020-05-05 18:42:51.415864"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit cum eos quis?"], ["description", "Et quis laborum et."], ["date", "2020-05-06 18:42:51.417057"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.417748"], ["updated_at", "2020-05-05 18:42:51.417748"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem cumque explicabo nobis?"], ["description", "Cupiditate nisi veniam corporis."], ["date", "2020-05-06 18:42:51.419075"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.419872"], ["updated_at", "2020-05-05 18:42:51.419872"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem aliquam officia et?"], ["description", "Possimus eius ut ut."], ["date", "2020-05-06 18:42:51.421122"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.421917"], ["updated_at", "2020-05-05 18:42:51.421917"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et sint necessitatibus atque?"], ["description", "Autem sapiente quas doloremque."], ["date", "2020-05-06 18:42:51.424093"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.426051"], ["updated_at", "2020-05-05 18:42:51.426051"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus illo odit animi?"], ["description", "Pariatur libero iure quae."], ["date", "2020-05-06 18:42:51.428021"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.429022"], ["updated_at", "2020-05-05 18:42:51.429022"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet quia assumenda quo?"], ["description", "Libero est veritatis et."], ["date", "2020-05-06 18:42:51.431297"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.432321"], ["updated_at", "2020-05-05 18:42:51.432321"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed nostrum aut provident?"], ["description", "Esse facere et non."], ["date", "2020-05-06 18:42:51.433890"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.435189"], ["updated_at", "2020-05-05 18:42:51.435189"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni dolorum reiciendis temporibus?"], ["description", "Iusto aliquid dolorem error."], ["date", "2020-05-06 18:42:51.436858"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.437721"], ["updated_at", "2020-05-05 18:42:51.437721"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque amet qui et?"], ["description", "Non esse aliquam necessitatibus."], ["date", "2020-05-06 18:42:51.439091"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.440011"], ["updated_at", "2020-05-05 18:42:51.440011"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis aut est voluptatum?"], ["description", "Sapiente architecto in eos."], ["date", "2020-05-06 18:42:51.441648"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.445564"], ["updated_at", "2020-05-05 18:42:51.445564"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores deserunt alias quos?"], ["description", "Rerum quae labore omnis."], ["date", "2020-05-06 18:42:51.447664"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.448825"], ["updated_at", "2020-05-05 18:42:51.448825"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti aliquid nihil vel?"], ["description", "Eaque harum quod aliquam."], ["date", "2020-05-06 18:42:51.451365"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.452863"], ["updated_at", "2020-05-05 18:42:51.452863"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est facere laboriosam dolor?"], ["description", "Voluptatum sapiente ipsum velit."], ["date", "2020-05-06 18:42:51.455870"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.456929"], ["updated_at", "2020-05-05 18:42:51.456929"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui aliquam omnis qui?"], ["description", "Occaecati iusto eaque facere."], ["date", "2020-05-06 18:42:51.458401"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.459152"], ["updated_at", "2020-05-05 18:42:51.459152"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non consequuntur tenetur soluta?"], ["description", "Omnis et veritatis dolorem."], ["date", "2020-05-06 18:42:51.461088"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.462105"], ["updated_at", "2020-05-05 18:42:51.462105"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt perferendis alias autem?"], ["description", "Quasi dolores mollitia dolorem."], ["date", "2020-05-06 18:42:51.464369"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.465538"], ["updated_at", "2020-05-05 18:42:51.465538"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:42:51 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.22ms) +Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.3ms | Allocations: 5516) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (3.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Roselyn Bailey"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mwm8PjVaNz.3ZLSObvZFieGOIxr2E2IyAHYRQIcftkHNaVwMOw/yW"], ["created_at", "2020-05-05 18:42:51.501355"], ["updated_at", "2020-05-05 18:42:51.501355"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "expedita"], ["description", "Qui impedit itaque qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:51.508845"], ["updated_at", "2020-05-05 18:42:51.508845"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste quo voluptate eum?"], ["description", "Voluptatem modi consequuntur id."], ["date", "2020-05-06 18:42:51.512652"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.513713"], ["updated_at", "2020-05-05 18:42:51.513713"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequuntur odit rem omnis?"], ["description", "Adipisci saepe rerum laboriosam."], ["date", "2020-05-06 18:42:51.515139"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.515880"], ["updated_at", "2020-05-05 18:42:51.515880"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut est adipisci debitis?"], ["description", "Ipsa veritatis aut rem."], ["date", "2020-05-06 18:42:51.517074"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.517860"], ["updated_at", "2020-05-05 18:42:51.517860"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque omnis sequi veritatis?"], ["description", "Inventore voluptatum distinctio beatae."], ["date", "2020-05-06 18:42:51.519125"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.519841"], ["updated_at", "2020-05-05 18:42:51.519841"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta sequi rerum similique?"], ["description", "Dolor quod ipsum laborum."], ["date", "2020-05-06 18:42:51.521004"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.521719"], ["updated_at", "2020-05-05 18:42:51.521719"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non fuga eum illo?"], ["description", "Dolores ab quam dolor."], ["date", "2020-05-06 18:42:51.522969"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.524472"], ["updated_at", "2020-05-05 18:42:51.524472"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates perferendis commodi deleniti?"], ["description", "Enim quos est adipisci."], ["date", "2020-05-06 18:42:51.526545"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.529163"], ["updated_at", "2020-05-05 18:42:51.529163"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et labore dignissimos maiores?"], ["description", "Quisquam animi quasi id."], ["date", "2020-05-06 18:42:51.531033"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.531956"], ["updated_at", "2020-05-05 18:42:51.531956"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam eius consequatur dicta?"], ["description", "Dignissimos quaerat et eum."], ["date", "2020-05-06 18:42:51.533298"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.534076"], ["updated_at", "2020-05-05 18:42:51.534076"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi cum tempore temporibus?"], ["description", "Occaecati quis non quia."], ["date", "2020-05-06 18:42:51.536015"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.536879"], ["updated_at", "2020-05-05 18:42:51.536879"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque sed illo sequi?"], ["description", "Consequatur molestiae perspiciatis earum."], ["date", "2020-05-06 18:42:51.538168"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.560815"], ["updated_at", "2020-05-05 18:42:51.560815"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque sed quae impedit?"], ["description", "Illo atque quae et."], ["date", "2020-05-06 18:42:51.562495"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.564229"], ["updated_at", "2020-05-05 18:42:51.564229"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et dolor non et?"], ["description", "Sint dolore odio saepe."], ["date", "2020-05-06 18:42:51.566708"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.567755"], ["updated_at", "2020-05-05 18:42:51.567755"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima odio possimus aspernatur?"], ["description", "Magni suscipit voluptates sit."], ["date", "2020-05-06 18:42:51.569209"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.570082"], ["updated_at", "2020-05-05 18:42:51.570082"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil corporis suscipit alias?"], ["description", "Ut quis itaque delectus."], ["date", "2020-05-06 18:42:51.571537"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.572407"], ["updated_at", "2020-05-05 18:42:51.572407"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore earum est nemo?"], ["description", "Doloremque provident beatae tempore."], ["date", "2020-05-06 18:42:51.573946"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.575601"], ["updated_at", "2020-05-05 18:42:51.575601"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quam odio et?"], ["description", "Quae consectetur consequatur nesciunt."], ["date", "2020-05-06 18:42:51.577477"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.578549"], ["updated_at", "2020-05-05 18:42:51.578549"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium non tempora eaque?"], ["description", "Eos minima delectus autem."], ["date", "2020-05-06 18:42:51.580345"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.582251"], ["updated_at", "2020-05-05 18:42:51.582251"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non omnis nulla dolorem?"], ["description", "Omnis tempore quasi iste."], ["date", "2020-05-06 18:42:51.587194"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.588795"], ["updated_at", "2020-05-05 18:42:51.588795"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel voluptatibus enim laborum?"], ["description", "Reprehenderit et nobis et."], ["date", "2020-05-06 18:42:51.590259"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.591089"], ["updated_at", "2020-05-05 18:42:51.591089"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:42:51 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 404 Not Found in 6ms (Views: 4.7ms | ActiveRecord: 0.1ms | Allocations: 866) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Evelynn Franecki"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nSPru.auLlNE6phbasOo1OdQEUdqYwjzZrSphGGKHV/96wOvDs.Um"], ["created_at", "2020-05-05 18:42:51.612145"], ["updated_at", "2020-05-05 18:42:51.612145"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cumque"], ["description", "Voluptatibus quia hic id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:51.615145"], ["updated_at", "2020-05-05 18:42:51.615145"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ducimus autem quae ipsam?"], ["description", "Quasi eveniet sint error."], ["date", "2020-05-06 18:42:51.616863"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.617824"], ["updated_at", "2020-05-05 18:42:51.617824"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo nostrum dolorem voluptate?"], ["description", "Quisquam pariatur enim ut."], ["date", "2020-05-06 18:42:51.619292"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.620038"], ["updated_at", "2020-05-05 18:42:51.620038"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam dolorem consectetur dolorem?"], ["description", "Corrupti a vel dolorum."], ["date", "2020-05-06 18:42:51.621253"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.621997"], ["updated_at", "2020-05-05 18:42:51.621997"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ducimus officia sint corporis?"], ["description", "Est nihil saepe aut."], ["date", "2020-05-06 18:42:51.623338"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.625242"], ["updated_at", "2020-05-05 18:42:51.625242"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur quo dolorem eos?"], ["description", "Accusamus et placeat expedita."], ["date", "2020-05-06 18:42:51.627627"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.629248"], ["updated_at", "2020-05-05 18:42:51.629248"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam sed sit quia?"], ["description", "Vero quis ad eligendi."], ["date", "2020-05-06 18:42:51.630666"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.631534"], ["updated_at", "2020-05-05 18:42:51.631534"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis non dolor consequatur?"], ["description", "Deleniti nostrum ut quo."], ["date", "2020-05-06 18:42:51.632720"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.633418"], ["updated_at", "2020-05-05 18:42:51.633418"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quo sunt et?"], ["description", "Cum nostrum voluptatem alias."], ["date", "2020-05-06 18:42:51.634601"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.635368"], ["updated_at", "2020-05-05 18:42:51.635368"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur dolor et mollitia?"], ["description", "Quaerat dolore nisi rerum."], ["date", "2020-05-06 18:42:51.636532"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.637228"], ["updated_at", "2020-05-05 18:42:51.637228"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui est beatae autem?"], ["description", "Illo aliquam et pariatur."], ["date", "2020-05-06 18:42:51.639025"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.639751"], ["updated_at", "2020-05-05 18:42:51.639751"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum est eos et?"], ["description", "Enim ut tenetur dignissimos."], ["date", "2020-05-06 18:42:51.641002"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.642207"], ["updated_at", "2020-05-05 18:42:51.642207"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Culpa excepturi sint rerum?"], ["description", "Nihil omnis eum magni."], ["date", "2020-05-06 18:42:51.644836"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.646371"], ["updated_at", "2020-05-05 18:42:51.646371"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam corporis modi ipsum?"], ["description", "Et eum eaque omnis."], ["date", "2020-05-06 18:42:51.647844"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.648656"], ["updated_at", "2020-05-05 18:42:51.648656"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea non necessitatibus rem?"], ["description", "Odit nostrum aliquid totam."], ["date", "2020-05-06 18:42:51.649817"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.650501"], ["updated_at", "2020-05-05 18:42:51.650501"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure voluptatem omnis totam?"], ["description", "Rerum voluptas perferendis in."], ["date", "2020-05-06 18:42:51.651642"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.652302"], ["updated_at", "2020-05-05 18:42:51.652302"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem reprehenderit qui vel?"], ["description", "A ex qui ab."], ["date", "2020-05-06 18:42:51.653599"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.654381"], ["updated_at", "2020-05-05 18:42:51.654381"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste ad maiores corrupti?"], ["description", "Doloremque omnis saepe sit."], ["date", "2020-05-06 18:42:51.655675"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.656506"], ["updated_at", "2020-05-05 18:42:51.656506"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil natus cupiditate ab?"], ["description", "Fuga nesciunt expedita praesentium."], ["date", "2020-05-06 18:42:51.657782"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.658487"], ["updated_at", "2020-05-05 18:42:51.658487"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor et quasi voluptas?"], ["description", "Et ut ut dicta."], ["date", "2020-05-06 18:42:51.660195"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.661486"], ["updated_at", "2020-05-05 18:42:51.661486"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima voluptatum excepturi corrupti?"], ["description", "Et minus ipsam et."], ["date", "2020-05-06 18:42:51.662936"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.663927"], ["updated_at", "2020-05-05 18:42:51.663927"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:42:51 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Stan Beier"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WiGPmHAxlZw4vko7NzSZV.Z6ZZf8iqVnQNX1//thdJLW2ymEXqZK."], ["created_at", "2020-05-05 18:42:51.683635"], ["updated_at", "2020-05-05 18:42:51.683635"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Libero quas et soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:51.687712"], ["updated_at", "2020-05-05 18:42:51.687712"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius accusantium voluptas hic?"], ["description", "Rem saepe earum voluptas."], ["date", "2020-05-06 18:42:51.690101"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.691117"], ["updated_at", "2020-05-05 18:42:51.691117"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem velit ex sequi?"], ["description", "Harum cumque aliquam dolor."], ["date", "2020-05-06 18:42:51.692774"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.694078"], ["updated_at", "2020-05-05 18:42:51.694078"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex quis nesciunt nam?"], ["description", "Praesentium fugit voluptates quia."], ["date", "2020-05-06 18:42:51.695499"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.696230"], ["updated_at", "2020-05-05 18:42:51.696230"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis et tempore rerum?"], ["description", "Impedit praesentium rerum vel."], ["date", "2020-05-06 18:42:51.697532"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.698246"], ["updated_at", "2020-05-05 18:42:51.698246"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor neque ipsam est?"], ["description", "Dignissimos nostrum magni necessitatibus."], ["date", "2020-05-06 18:42:51.699324"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.699997"], ["updated_at", "2020-05-05 18:42:51.699997"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere aut ut et?"], ["description", "Consequatur repudiandae repellendus officiis."], ["date", "2020-05-06 18:42:51.701102"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.701884"], ["updated_at", "2020-05-05 18:42:51.701884"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil dignissimos non fugiat?"], ["description", "Tempore autem veritatis eum."], ["date", "2020-05-06 18:42:51.703049"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.703793"], ["updated_at", "2020-05-05 18:42:51.703793"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique sit sit modi?"], ["description", "Aliquid ut esse ut."], ["date", "2020-05-06 18:42:51.706202"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.707650"], ["updated_at", "2020-05-05 18:42:51.707650"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi ut est provident?"], ["description", "Ab nobis sint consequatur."], ["date", "2020-05-06 18:42:51.709611"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.711106"], ["updated_at", "2020-05-05 18:42:51.711106"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum necessitatibus deserunt eum?"], ["description", "Eveniet animi ut et."], ["date", "2020-05-06 18:42:51.713179"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.714100"], ["updated_at", "2020-05-05 18:42:51.714100"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati suscipit non amet?"], ["description", "Et quod inventore quam."], ["date", "2020-05-06 18:42:51.715447"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.716214"], ["updated_at", "2020-05-05 18:42:51.716214"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit dolores voluptatem omnis?"], ["description", "Nesciunt quas consequatur excepturi."], ["date", "2020-05-06 18:42:51.717400"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.718090"], ["updated_at", "2020-05-05 18:42:51.718090"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam quae corporis quo?"], ["description", "Cupiditate sed voluptas dignissimos."], ["date", "2020-05-06 18:42:51.719340"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.720040"], ["updated_at", "2020-05-05 18:42:51.720040"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem molestiae a iure?"], ["description", "Vel hic necessitatibus vero."], ["date", "2020-05-06 18:42:51.721265"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.721963"], ["updated_at", "2020-05-05 18:42:51.721963"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil temporibus quis qui?"], ["description", "Velit quo cum assumenda."], ["date", "2020-05-06 18:42:51.723195"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.724068"], ["updated_at", "2020-05-05 18:42:51.724068"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id tenetur consectetur sequi?"], ["description", "Rem et perferendis enim."], ["date", "2020-05-06 18:42:51.726794"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.727902"], ["updated_at", "2020-05-05 18:42:51.727902"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quam occaecati atque?"], ["description", "Eos dolore quia rerum."], ["date", "2020-05-06 18:42:51.729235"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.729917"], ["updated_at", "2020-05-05 18:42:51.729917"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus modi omnis eaque?"], ["description", "Non quo atque dolore."], ["date", "2020-05-06 18:42:51.731122"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.731800"], ["updated_at", "2020-05-05 18:42:51.731800"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum odit doloribus officiis?"], ["description", "Esse debitis sequi est."], ["date", "2020-05-06 18:42:51.733083"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.733801"], ["updated_at", "2020-05-05 18:42:51.733801"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Delectus fuga aut qui?"], ["description", "Ut dolorem aut quidem."], ["date", "2020-05-06 18:42:51.734999"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.735699"], ["updated_at", "2020-05-05 18:42:51.735699"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:42:51 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.67ms) +Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.3ms | Allocations: 1086) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hipolito Hane V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Qx5hD3BZhGi.m8FwoII6euhZ/tWV74dnT4cdLzRBuSbD.bBlQ1fWK"], ["created_at", "2020-05-05 18:42:51.754610"], ["updated_at", "2020-05-05 18:42:51.754610"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "pariatur"], ["description", "Sunt eos sed laboriosam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:51.757508"], ["updated_at", "2020-05-05 18:42:51.757508"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit quaerat asperiores ratione?"], ["description", "Incidunt non laboriosam animi."], ["date", "2020-05-06 18:42:51.759017"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.760105"], ["updated_at", "2020-05-05 18:42:51.760105"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed minima officiis ea?"], ["description", "Omnis et nesciunt eligendi."], ["date", "2020-05-06 18:42:51.761925"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.762891"], ["updated_at", "2020-05-05 18:42:51.762891"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe enim at praesentium?"], ["description", "Vero rerum et ipsa."], ["date", "2020-05-06 18:42:51.764906"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.766810"], ["updated_at", "2020-05-05 18:42:51.766810"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut enim quo vero?"], ["description", "Officiis neque aut placeat."], ["date", "2020-05-06 18:42:51.768720"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.770118"], ["updated_at", "2020-05-05 18:42:51.770118"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto est quia corporis?"], ["description", "Minus et officiis voluptas."], ["date", "2020-05-06 18:42:51.771454"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.772179"], ["updated_at", "2020-05-05 18:42:51.772179"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut sint harum atque?"], ["description", "Modi omnis molestiae at."], ["date", "2020-05-06 18:42:51.773397"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.774167"], ["updated_at", "2020-05-05 18:42:51.774167"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis nobis quasi vel?"], ["description", "Reiciendis earum autem fugiat."], ["date", "2020-05-06 18:42:51.775875"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.776859"], ["updated_at", "2020-05-05 18:42:51.776859"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum similique adipisci ut?"], ["description", "Sunt delectus sit sit."], ["date", "2020-05-06 18:42:51.778137"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.778879"], ["updated_at", "2020-05-05 18:42:51.778879"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor suscipit reiciendis omnis?"], ["description", "Doloribus enim alias amet."], ["date", "2020-05-06 18:42:51.780096"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.780784"], ["updated_at", "2020-05-05 18:42:51.780784"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis mollitia quas ut?"], ["description", "Natus et et quam."], ["date", "2020-05-06 18:42:51.782563"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.783314"], ["updated_at", "2020-05-05 18:42:51.783314"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique error vel repellendus?"], ["description", "Porro dolor aut tempore."], ["date", "2020-05-06 18:42:51.785347"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.786705"], ["updated_at", "2020-05-05 18:42:51.786705"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id magni nostrum ea?"], ["description", "Delectus excepturi voluptatem incidunt."], ["date", "2020-05-06 18:42:51.788418"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.789300"], ["updated_at", "2020-05-05 18:42:51.789300"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim sint adipisci enim?"], ["description", "Voluptates ut harum ipsum."], ["date", "2020-05-06 18:42:51.790591"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.791282"], ["updated_at", "2020-05-05 18:42:51.791282"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id dolores aut hic?"], ["description", "Facilis dolorem perferendis enim."], ["date", "2020-05-06 18:42:51.792498"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.793735"], ["updated_at", "2020-05-05 18:42:51.793735"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore rerum qui qui?"], ["description", "Autem aspernatur tenetur quisquam."], ["date", "2020-05-06 18:42:51.795124"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.795982"], ["updated_at", "2020-05-05 18:42:51.795982"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut nobis pariatur est?"], ["description", "Beatae esse sint et."], ["date", "2020-05-06 18:42:51.797168"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.797891"], ["updated_at", "2020-05-05 18:42:51.797891"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et officia qui quae?"], ["description", "Nihil sed ipsam error."], ["date", "2020-05-06 18:42:51.799045"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.799743"], ["updated_at", "2020-05-05 18:42:51.799743"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi cupiditate reiciendis sed?"], ["description", "Pariatur dicta eum veritatis."], ["date", "2020-05-06 18:42:51.800943"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.801701"], ["updated_at", "2020-05-05 18:42:51.801701"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus quo quo maxime?"], ["description", "Accusamus nisi ut sed."], ["date", "2020-05-06 18:42:51.802854"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.803534"], ["updated_at", "2020-05-05 18:42:51.803534"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est sed et sint?"], ["description", "Temporibus labore doloribus nisi."], ["date", "2020-05-06 18:42:51.805038"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.806582"], ["updated_at", "2020-05-05 18:42:51.806582"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:42:51 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.66ms) +Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.2ms | Allocations: 1058) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.3ms) SAVEPOINT active_record_2 + User Create (1.9ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Wilfredo Hermiston"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oYqJcJWJSMLTKC06AgtqXuPd5ON8UEZX0HghjftpNKDoMXxTB30pC"], ["created_at", "2020-05-05 18:42:51.823796"], ["updated_at", "2020-05-05 18:42:51.823796"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Saepe distinctio odio et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:51.828984"], ["updated_at", "2020-05-05 18:42:51.828984"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi et sint quae?"], ["description", "Pariatur quod eius rem."], ["date", "2020-05-06 18:42:51.830920"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.831905"], ["updated_at", "2020-05-05 18:42:51.831905"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo reprehenderit necessitatibus quas?"], ["description", "Hic quia commodi ea."], ["date", "2020-05-06 18:42:51.833202"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.833887"], ["updated_at", "2020-05-05 18:42:51.833887"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit ut velit nam?"], ["description", "Quaerat necessitatibus blanditiis sapiente."], ["date", "2020-05-06 18:42:51.835050"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.835755"], ["updated_at", "2020-05-05 18:42:51.835755"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum saepe sequi et?"], ["description", "Sed sunt ab voluptatem."], ["date", "2020-05-06 18:42:51.836915"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.837660"], ["updated_at", "2020-05-05 18:42:51.837660"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam odit et quod?"], ["description", "Quisquam odit vel reiciendis."], ["date", "2020-05-06 18:42:51.838816"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.839540"], ["updated_at", "2020-05-05 18:42:51.839540"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam non debitis omnis?"], ["description", "Dolores enim animi minima."], ["date", "2020-05-06 18:42:51.840661"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.841337"], ["updated_at", "2020-05-05 18:42:51.841337"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non illum qui sint?"], ["description", "Voluptatem voluptas recusandae et."], ["date", "2020-05-06 18:42:51.842952"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.843874"], ["updated_at", "2020-05-05 18:42:51.843874"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero quia ut quia?"], ["description", "Ut maiores quasi cum."], ["date", "2020-05-06 18:42:51.845440"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.846979"], ["updated_at", "2020-05-05 18:42:51.846979"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis praesentium cumque rerum?"], ["description", "Voluptas debitis aut nemo."], ["date", "2020-05-06 18:42:51.848564"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.850093"], ["updated_at", "2020-05-05 18:42:51.850093"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et eum modi dignissimos?"], ["description", "Pariatur enim et animi."], ["date", "2020-05-06 18:42:51.852208"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.853065"], ["updated_at", "2020-05-05 18:42:51.853065"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia mollitia provident illo?"], ["description", "Dolor explicabo est fugit."], ["date", "2020-05-06 18:42:51.854352"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.855070"], ["updated_at", "2020-05-05 18:42:51.855070"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis a non quis?"], ["description", "Voluptatem suscipit sunt vel."], ["date", "2020-05-06 18:42:51.856223"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.856899"], ["updated_at", "2020-05-05 18:42:51.856899"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores eaque et similique?"], ["description", "Modi quidem est assumenda."], ["date", "2020-05-06 18:42:51.858037"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.859001"], ["updated_at", "2020-05-05 18:42:51.859001"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque exercitationem voluptatem laborum?"], ["description", "Facere cum doloribus similique."], ["date", "2020-05-06 18:42:51.860809"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.861741"], ["updated_at", "2020-05-05 18:42:51.861741"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore ut nesciunt nam?"], ["description", "Ea accusantium expedita est."], ["date", "2020-05-06 18:42:51.863108"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.863836"], ["updated_at", "2020-05-05 18:42:51.863836"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non dolores similique ut?"], ["description", "Ipsa eaque dolorem provident."], ["date", "2020-05-06 18:42:51.865500"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.867096"], ["updated_at", "2020-05-05 18:42:51.867096"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non sapiente quis ipsam?"], ["description", "Sunt tenetur veniam odit."], ["date", "2020-05-06 18:42:51.868671"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.869701"], ["updated_at", "2020-05-05 18:42:51.869701"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam aut doloribus numquam?"], ["description", "Magnam ut rerum ea."], ["date", "2020-05-06 18:42:51.871202"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.872077"], ["updated_at", "2020-05-05 18:42:51.872077"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia voluptatem consequuntur est?"], ["description", "Est dolorem nostrum ea."], ["date", "2020-05-06 18:42:51.873508"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.874563"], ["updated_at", "2020-05-05 18:42:51.874563"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam aut ea est?"], ["description", "Assumenda eaque accusantium quisquam."], ["date", "2020-05-06 18:42:51.877158"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.878947"], ["updated_at", "2020-05-05 18:42:51.878947"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:42:51 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.5ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.1ms) +Completed 404 Not Found in 5ms (Views: 0.8ms | ActiveRecord: 0.6ms | Allocations: 884) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Tyler Smith"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$eghvPvQ1KEnc/jfNTp1Zj.aC1h9s2VEmTLXEc3nZ.rKcybbZH.ol2"], ["created_at", "2020-05-05 18:42:51.899272"], ["updated_at", "2020-05-05 18:42:51.899272"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Aliquam quas veritatis tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:51.902021"], ["updated_at", "2020-05-05 18:42:51.902021"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore hic quam voluptatem?"], ["description", "Nulla animi quidem est."], ["date", "2020-05-06 18:42:51.903503"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.904449"], ["updated_at", "2020-05-05 18:42:51.904449"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem eligendi non nihil?"], ["description", "Consequatur eos iure quod."], ["date", "2020-05-06 18:42:51.906586"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.908077"], ["updated_at", "2020-05-05 18:42:51.908077"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum quaerat dolores consequuntur?"], ["description", "Quasi qui sint temporibus."], ["date", "2020-05-06 18:42:51.911309"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.912607"], ["updated_at", "2020-05-05 18:42:51.912607"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione ipsa vitae repudiandae?"], ["description", "Dolorem atque eum aut."], ["date", "2020-05-06 18:42:51.913953"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.914708"], ["updated_at", "2020-05-05 18:42:51.914708"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla dolorem ea eaque?"], ["description", "Fugit laudantium non est."], ["date", "2020-05-06 18:42:51.915822"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.916619"], ["updated_at", "2020-05-05 18:42:51.916619"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit recusandae dolor ipsum?"], ["description", "Vel eos voluptatem aperiam."], ["date", "2020-05-06 18:42:51.917713"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.918415"], ["updated_at", "2020-05-05 18:42:51.918415"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non est tempore molestias?"], ["description", "Eum ex facere eaque."], ["date", "2020-05-06 18:42:51.919513"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.920211"], ["updated_at", "2020-05-05 18:42:51.920211"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum hic quos voluptas?"], ["description", "Incidunt velit ut sunt."], ["date", "2020-05-06 18:42:51.921308"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.921965"], ["updated_at", "2020-05-05 18:42:51.921965"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores vel similique rerum?"], ["description", "Rerum voluptatem magnam consectetur."], ["date", "2020-05-06 18:42:51.923026"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.923761"], ["updated_at", "2020-05-05 18:42:51.923761"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam quaerat et aut?"], ["description", "Aut hic ducimus voluptas."], ["date", "2020-05-06 18:42:51.927885"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.929707"], ["updated_at", "2020-05-05 18:42:51.929707"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ducimus nesciunt quasi possimus?"], ["description", "Saepe sint qui expedita."], ["date", "2020-05-06 18:42:51.931711"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.932601"], ["updated_at", "2020-05-05 18:42:51.932601"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor iure fugit ipsam?"], ["description", "Voluptas natus consequuntur itaque."], ["date", "2020-05-06 18:42:51.933819"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.934568"], ["updated_at", "2020-05-05 18:42:51.934568"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum voluptate perspiciatis sed?"], ["description", "Eligendi laudantium quas officia."], ["date", "2020-05-06 18:42:51.935695"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.936437"], ["updated_at", "2020-05-05 18:42:51.936437"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum ipsum provident aut?"], ["description", "Minima dolores non inventore."], ["date", "2020-05-06 18:42:51.937667"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.938462"], ["updated_at", "2020-05-05 18:42:51.938462"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam tempore consequatur eius?"], ["description", "Aut assumenda nisi ut."], ["date", "2020-05-06 18:42:51.939618"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.940313"], ["updated_at", "2020-05-05 18:42:51.940313"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum vel omnis dolorum?"], ["description", "Mollitia quae exercitationem est."], ["date", "2020-05-06 18:42:51.941443"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.942128"], ["updated_at", "2020-05-05 18:42:51.942128"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est ab provident voluptatem?"], ["description", "Fugit voluptatem ex voluptates."], ["date", "2020-05-06 18:42:51.943879"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.944841"], ["updated_at", "2020-05-05 18:42:51.944841"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum sint et suscipit?"], ["description", "Et labore nihil autem."], ["date", "2020-05-06 18:42:51.946935"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.948450"], ["updated_at", "2020-05-05 18:42:51.948450"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt quae et molestiae?"], ["description", "Sit cumque ut facilis."], ["date", "2020-05-06 18:42:51.950107"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.950954"], ["updated_at", "2020-05-05 18:42:51.950954"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem assumenda modi earum?"], ["description", "Fugiat exercitationem enim expedita."], ["date", "2020-05-06 18:42:51.952183"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.952859"], ["updated_at", "2020-05-05 18:42:51.952859"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:42:51 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["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: 867) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Pia Champlin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tnt7Y8TsfoiJ4EwbAYSRte3Ly.9fJjYrwU.NU6.LaC8rLp/YMKF9e"], ["created_at", "2020-05-05 18:42:51.969692"], ["updated_at", "2020-05-05 18:42:51.969692"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "itaque"], ["description", "Qui magni sint doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:51.972822"], ["updated_at", "2020-05-05 18:42:51.972822"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas non dicta voluptatem?"], ["description", "Voluptas quod in cumque."], ["date", "2020-05-06 18:42:51.974573"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.976299"], ["updated_at", "2020-05-05 18:42:51.976299"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel dolorem sed ipsum?"], ["description", "Quod ullam quia aut."], ["date", "2020-05-06 18:42:51.978073"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.978960"], ["updated_at", "2020-05-05 18:42:51.978960"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis magnam voluptatum iusto?"], ["description", "Reprehenderit beatae possimus deleniti."], ["date", "2020-05-06 18:42:51.980148"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.980819"], ["updated_at", "2020-05-05 18:42:51.980819"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam et quibusdam quas?"], ["description", "Repellendus nesciunt odit aut."], ["date", "2020-05-06 18:42:51.981961"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.982830"], ["updated_at", "2020-05-05 18:42:51.982830"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo doloribus vel eius?"], ["description", "Occaecati itaque voluptatem voluptatibus."], ["date", "2020-05-06 18:42:51.984057"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.984959"], ["updated_at", "2020-05-05 18:42:51.984959"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum cupiditate quo aut?"], ["description", "Aspernatur aliquam omnis reiciendis."], ["date", "2020-05-06 18:42:51.987200"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.988363"], ["updated_at", "2020-05-05 18:42:51.988363"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil ut optio numquam?"], ["description", "Et itaque aut quaerat."], ["date", "2020-05-06 18:42:51.990198"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.991039"], ["updated_at", "2020-05-05 18:42:51.991039"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequuntur quo qui omnis?"], ["description", "Vitae sequi unde aut."], ["date", "2020-05-06 18:42:51.992188"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.993238"], ["updated_at", "2020-05-05 18:42:51.993238"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quibusdam aliquid autem ut?"], ["description", "Vero perferendis inventore repellat."], ["date", "2020-05-06 18:42:51.994917"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.995760"], ["updated_at", "2020-05-05 18:42:51.995760"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni tempora tempore veniam?"], ["description", "Quod porro veritatis dolor."], ["date", "2020-05-06 18:42:51.997589"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:51.998431"], ["updated_at", "2020-05-05 18:42:51.998431"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur quo error voluptas?"], ["description", "Quo architecto dolor incidunt."], ["date", "2020-05-06 18:42:51.999692"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.000388"], ["updated_at", "2020-05-05 18:42:52.000388"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores dolor quisquam ex?"], ["description", "Facere quam voluptas et."], ["date", "2020-05-06 18:42:52.001548"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.002237"], ["updated_at", "2020-05-05 18:42:52.002237"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Adipisci veritatis et dolores?"], ["description", "Consequatur temporibus et ipsum."], ["date", "2020-05-06 18:42:52.003373"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.004102"], ["updated_at", "2020-05-05 18:42:52.004102"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id unde maxime aspernatur?"], ["description", "Libero at est cumque."], ["date", "2020-05-06 18:42:52.005469"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.006427"], ["updated_at", "2020-05-05 18:42:52.006427"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet doloremque minus aut?"], ["description", "Quas quia veniam qui."], ["date", "2020-05-06 18:42:52.008105"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.008996"], ["updated_at", "2020-05-05 18:42:52.008996"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio sit laboriosam a?"], ["description", "Eum suscipit placeat consequuntur."], ["date", "2020-05-06 18:42:52.010160"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.011190"], ["updated_at", "2020-05-05 18:42:52.011190"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum beatae aut velit?"], ["description", "Ab velit ex ea."], ["date", "2020-05-06 18:42:52.012652"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.013437"], ["updated_at", "2020-05-05 18:42:52.013437"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium officiis quisquam ratione?"], ["description", "Vel magnam quia ea."], ["date", "2020-05-06 18:42:52.014512"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.015345"], ["updated_at", "2020-05-05 18:42:52.015345"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum praesentium similique omnis?"], ["description", "Et perspiciatis expedita natus."], ["date", "2020-05-06 18:42:52.016478"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.017186"], ["updated_at", "2020-05-05 18:42:52.017186"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut rerum et quia?"], ["description", "Iste beatae sed vitae."], ["date", "2020-05-06 18:42:52.018292"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.018965"], ["updated_at", "2020-05-05 18:42:52.018965"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:42:52 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"title"=>"Visit Narnia", "description"=>"false", "date"=>"2020-05-06 15:42:52 -0300", "link"=>"https://zoom.com/fakelink", "meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Visit Narnia"], ["description", "false"], ["date", "2020-05-06 18:42:52"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.038988"], ["updated_at", "2020-05-05 18:42:52.038988"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.48ms) +Completed 201 Created in 5ms (Views: 1.0ms | ActiveRecord: 0.4ms | Allocations: 1699) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tristan Wolff"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZTYAmIigxkpbhg5IvQYKk.NLtH4fnhEAK.DVhOIH6z4l8lVlf.Kka"], ["created_at", "2020-05-05 18:42:52.052393"], ["updated_at", "2020-05-05 18:42:52.052393"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eius"], ["description", "Vel deserunt omnis eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.056179"], ["updated_at", "2020-05-05 18:42:52.056179"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem voluptates voluptas eos?"], ["description", "Itaque natus eveniet est."], ["date", "2020-05-06 18:42:52.057772"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.058719"], ["updated_at", "2020-05-05 18:42:52.058719"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et odio dolorum est?"], ["description", "Blanditiis enim excepturi suscipit."], ["date", "2020-05-06 18:42:52.060757"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.061729"], ["updated_at", "2020-05-05 18:42:52.061729"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur voluptas veniam rerum?"], ["description", "Nostrum optio ducimus eveniet."], ["date", "2020-05-06 18:42:52.063048"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.063739"], ["updated_at", "2020-05-05 18:42:52.063739"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed et quis sed?"], ["description", "Qui id iste est."], ["date", "2020-05-06 18:42:52.064963"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.065781"], ["updated_at", "2020-05-05 18:42:52.065781"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum consequatur corrupti qui?"], ["description", "Placeat doloremque cumque qui."], ["date", "2020-05-06 18:42:52.067735"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.068904"], ["updated_at", "2020-05-05 18:42:52.068904"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A aspernatur distinctio exercitationem?"], ["description", "Nulla aperiam inventore labore."], ["date", "2020-05-06 18:42:52.071042"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.072382"], ["updated_at", "2020-05-05 18:42:52.072382"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat dolore voluptatibus expedita?"], ["description", "Est sit quidem soluta."], ["date", "2020-05-06 18:42:52.073972"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.074797"], ["updated_at", "2020-05-05 18:42:52.074797"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex nulla nihil sint?"], ["description", "Quibusdam distinctio corporis quia."], ["date", "2020-05-06 18:42:52.076413"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.077393"], ["updated_at", "2020-05-05 18:42:52.077393"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita odit et dignissimos?"], ["description", "Officiis qui facere ea."], ["date", "2020-05-06 18:42:52.078708"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.079416"], ["updated_at", "2020-05-05 18:42:52.079416"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos labore aliquam quia?"], ["description", "Consequatur nisi id nesciunt."], ["date", "2020-05-06 18:42:52.081264"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.082042"], ["updated_at", "2020-05-05 18:42:52.082042"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et modi est non?"], ["description", "Nihil ullam eveniet quae."], ["date", "2020-05-06 18:42:52.083349"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.084080"], ["updated_at", "2020-05-05 18:42:52.084080"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae in quia cumque?"], ["description", "Dolor ratione delectus ut."], ["date", "2020-05-06 18:42:52.085414"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.086372"], ["updated_at", "2020-05-05 18:42:52.086372"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero rerum aut sequi?"], ["description", "Eligendi eveniet laborum amet."], ["date", "2020-05-06 18:42:52.088253"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.089179"], ["updated_at", "2020-05-05 18:42:52.089179"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe velit quos vel?"], ["description", "Eligendi neque et optio."], ["date", "2020-05-06 18:42:52.090386"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.091069"], ["updated_at", "2020-05-05 18:42:52.091069"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus soluta repudiandae et?"], ["description", "Vitae voluptatibus possimus quas."], ["date", "2020-05-06 18:42:52.092276"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.093373"], ["updated_at", "2020-05-05 18:42:52.093373"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint esse eaque laborum?"], ["description", "Doloremque explicabo ea laboriosam."], ["date", "2020-05-06 18:42:52.094985"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.095825"], ["updated_at", "2020-05-05 18:42:52.095825"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas autem aperiam omnis?"], ["description", "Enim magnam maxime ad."], ["date", "2020-05-06 18:42:52.097037"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.097719"], ["updated_at", "2020-05-05 18:42:52.097719"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit autem et id?"], ["description", "Blanditiis dignissimos iste quisquam."], ["date", "2020-05-06 18:42:52.098847"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.099580"], ["updated_at", "2020-05-05 18:42:52.099580"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est rem autem omnis?"], ["description", "Ullam id ipsum nostrum."], ["date", "2020-05-06 18:42:52.100694"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.101387"], ["updated_at", "2020-05-05 18:42:52.101387"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod sed dolores nulla?"], ["description", "Facilis vitae rerum repudiandae."], ["date", "2020-05-06 18:42:52.102545"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.103276"], ["updated_at", "2020-05-05 18:42:52.103276"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:42:52 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 3010) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Maureen Glover DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$o5EUGyDVrRvjOgaXEr21supsnGDqehkrVo704w9VANRBQe.G5pWbm"], ["created_at", "2020-05-05 18:42:52.122030"], ["updated_at", "2020-05-05 18:42:52.122030"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nesciunt"], ["description", "Commodi temporibus voluptas quas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.125035"], ["updated_at", "2020-05-05 18:42:52.125035"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam perspiciatis dolores quidem?"], ["description", "Inventore ab sint placeat."], ["date", "2020-05-06 18:42:52.127332"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.129102"], ["updated_at", "2020-05-05 18:42:52.129102"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui vero corrupti ratione?"], ["description", "Expedita rerum quia tempore."], ["date", "2020-05-06 18:42:52.131080"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.132290"], ["updated_at", "2020-05-05 18:42:52.132290"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui optio sequi necessitatibus?"], ["description", "Magni enim laborum voluptatem."], ["date", "2020-05-06 18:42:52.133676"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.134461"], ["updated_at", "2020-05-05 18:42:52.134461"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam sed et aut?"], ["description", "Et ratione eaque voluptas."], ["date", "2020-05-06 18:42:52.135625"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.136358"], ["updated_at", "2020-05-05 18:42:52.136358"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi deserunt nisi eveniet?"], ["description", "Voluptatem mollitia quod autem."], ["date", "2020-05-06 18:42:52.137501"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.138182"], ["updated_at", "2020-05-05 18:42:52.138182"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id placeat quibusdam omnis?"], ["description", "Qui qui autem ut."], ["date", "2020-05-06 18:42:52.139297"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.139972"], ["updated_at", "2020-05-05 18:42:52.139972"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex ea deleniti itaque?"], ["description", "Soluta voluptatem commodi ipsa."], ["date", "2020-05-06 18:42:52.141059"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.141729"], ["updated_at", "2020-05-05 18:42:52.141729"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et distinctio sed alias?"], ["description", "Eos quis placeat saepe."], ["date", "2020-05-06 18:42:52.143340"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.144394"], ["updated_at", "2020-05-05 18:42:52.144394"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est et minima reprehenderit?"], ["description", "Debitis voluptas quia quod."], ["date", "2020-05-06 18:42:52.145951"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.147504"], ["updated_at", "2020-05-05 18:42:52.147504"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut et ut ut?"], ["description", "Ea tenetur error hic."], ["date", "2020-05-06 18:42:52.150389"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.151557"], ["updated_at", "2020-05-05 18:42:52.151557"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus molestias eveniet velit?"], ["description", "Laborum facere rem magnam."], ["date", "2020-05-06 18:42:52.152907"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.153606"], ["updated_at", "2020-05-05 18:42:52.153606"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex omnis est asperiores?"], ["description", "Atque officiis cumque nesciunt."], ["date", "2020-05-06 18:42:52.154791"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.155503"], ["updated_at", "2020-05-05 18:42:52.155503"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam veniam sapiente in?"], ["description", "Quia et minima minus."], ["date", "2020-05-06 18:42:52.156601"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.157310"], ["updated_at", "2020-05-05 18:42:52.157310"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quae amet beatae?"], ["description", "Ipsa mollitia facere libero."], ["date", "2020-05-06 18:42:52.158545"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.159371"], ["updated_at", "2020-05-05 18:42:52.159371"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat quibusdam voluptate tempora?"], ["description", "Ratione voluptatem recusandae enim."], ["date", "2020-05-06 18:42:52.161239"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.162159"], ["updated_at", "2020-05-05 18:42:52.162159"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam dolores repellendus eum?"], ["description", "Eos incidunt in voluptatem."], ["date", "2020-05-06 18:42:52.163312"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.164040"], ["updated_at", "2020-05-05 18:42:52.164040"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum qui iure corporis?"], ["description", "Quo et delectus fugit."], ["date", "2020-05-06 18:42:52.165307"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.166127"], ["updated_at", "2020-05-05 18:42:52.166127"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit cumque sit ex?"], ["description", "Ab consectetur sunt suscipit."], ["date", "2020-05-06 18:42:52.167876"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.169017"], ["updated_at", "2020-05-05 18:42:52.169017"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias itaque numquam assumenda?"], ["description", "Est voluptate quasi reprehenderit."], ["date", "2020-05-06 18:42:52.184430"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.185676"], ["updated_at", "2020-05-05 18:42:52.185676"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor iusto voluptatibus quo?"], ["description", "Molestias aut eaque sequi."], ["date", "2020-05-06 18:42:52.187485"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.188744"], ["updated_at", "2020-05-05 18:42:52.188744"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:42:52 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 2705) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.9ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shandi Nikolaus"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$61yCgE45TSs8v88iMe8bL.fAzvUbEibOseo3UAgd0eOoioTvH3/ZO"], ["created_at", "2020-05-05 18:42:52.208227"], ["updated_at", "2020-05-05 18:42:52.208227"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Iure assumenda et facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.212500"], ["updated_at", "2020-05-05 18:42:52.212500"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui iste quod aliquam?"], ["description", "Quaerat est non placeat."], ["date", "2020-05-06 18:42:52.214428"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.215427"], ["updated_at", "2020-05-05 18:42:52.215427"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid fuga culpa id?"], ["description", "Pariatur tenetur illo voluptatum."], ["date", "2020-05-06 18:42:52.216887"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.217626"], ["updated_at", "2020-05-05 18:42:52.217626"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem aspernatur dolorem molestiae?"], ["description", "Dolorem at aut omnis."], ["date", "2020-05-06 18:42:52.219004"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.219734"], ["updated_at", "2020-05-05 18:42:52.219734"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus exercitationem nesciunt amet?"], ["description", "Ex in quibusdam corrupti."], ["date", "2020-05-06 18:42:52.221024"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.221737"], ["updated_at", "2020-05-05 18:42:52.221737"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil velit aut quo?"], ["description", "Magni eaque blanditiis et."], ["date", "2020-05-06 18:42:52.222979"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.223749"], ["updated_at", "2020-05-05 18:42:52.223749"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi ratione illum natus?"], ["description", "Dolore saepe et eos."], ["date", "2020-05-06 18:42:52.225136"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.226351"], ["updated_at", "2020-05-05 18:42:52.226351"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas optio cumque sunt?"], ["description", "Ea deserunt dolorum voluptatem."], ["date", "2020-05-06 18:42:52.228778"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.230067"], ["updated_at", "2020-05-05 18:42:52.230067"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit vero quo omnis?"], ["description", "Accusamus quibusdam provident quia."], ["date", "2020-05-06 18:42:52.231946"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.232802"], ["updated_at", "2020-05-05 18:42:52.232802"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim fuga sunt fugit?"], ["description", "Fugit aliquam eos cum."], ["date", "2020-05-06 18:42:52.234148"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.234918"], ["updated_at", "2020-05-05 18:42:52.234918"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque aut nemo ipsum?"], ["description", "Reprehenderit quidem voluptate aut."], ["date", "2020-05-06 18:42:52.236781"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.237553"], ["updated_at", "2020-05-05 18:42:52.237553"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex rerum enim qui?"], ["description", "Ratione excepturi ut corporis."], ["date", "2020-05-06 18:42:52.238867"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.239561"], ["updated_at", "2020-05-05 18:42:52.239561"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit sed quibusdam odio?"], ["description", "Omnis fugiat quod provident."], ["date", "2020-05-06 18:42:52.240745"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.241407"], ["updated_at", "2020-05-05 18:42:52.241407"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem ratione illo odit?"], ["description", "Veniam blanditiis numquam aut."], ["date", "2020-05-06 18:42:52.242992"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.244353"], ["updated_at", "2020-05-05 18:42:52.244353"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et qui aut quam?"], ["description", "Eligendi mollitia et labore."], ["date", "2020-05-06 18:42:52.245923"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.246735"], ["updated_at", "2020-05-05 18:42:52.246735"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos dolor quis quos?"], ["description", "Et dolores natus modi."], ["date", "2020-05-06 18:42:52.248407"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.249442"], ["updated_at", "2020-05-05 18:42:52.249442"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt quos voluptatem quis?"], ["description", "Nihil aut temporibus quis."], ["date", "2020-05-06 18:42:52.250831"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.251545"], ["updated_at", "2020-05-05 18:42:52.251545"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta aut quo vel?"], ["description", "Molestiae iste aut similique."], ["date", "2020-05-06 18:42:52.252780"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.253668"], ["updated_at", "2020-05-05 18:42:52.253668"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit est vel qui?"], ["description", "In ipsam et vel."], ["date", "2020-05-06 18:42:52.255620"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.256669"], ["updated_at", "2020-05-05 18:42:52.256669"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto aliquid nemo quo?"], ["description", "Ab aliquam minima ex."], ["date", "2020-05-06 18:42:52.257957"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.258671"], ["updated_at", "2020-05-05 18:42:52.258671"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta et et consequatur?"], ["description", "Fugiat omnis enim et."], ["date", "2020-05-06 18:42:52.260371"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.261654"], ["updated_at", "2020-05-05 18:42:52.261654"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:42:52 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.2ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:42:52.266346"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 4ms (ActiveRecord: 0.5ms | Allocations: 1396) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gilberto King"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dlKgmInH6sr05s2.2AETkOuaMAxoopltiM50tJNyzIyfFjJnlSUGu"], ["created_at", "2020-05-05 18:42:52.279673"], ["updated_at", "2020-05-05 18:42:52.279673"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Velit laborum expedita nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.283432"], ["updated_at", "2020-05-05 18:42:52.283432"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut fugit qui maiores?"], ["description", "Beatae veritatis quos minus."], ["date", "2020-05-06 18:42:52.285125"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.286157"], ["updated_at", "2020-05-05 18:42:52.286157"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Adipisci minima tempore dolores?"], ["description", "Veritatis suscipit accusantium placeat."], ["date", "2020-05-06 18:42:52.287734"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.289481"], ["updated_at", "2020-05-05 18:42:52.289481"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem illo explicabo repudiandae?"], ["description", "Facere molestias placeat tenetur."], ["date", "2020-05-06 18:42:52.291161"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.292786"], ["updated_at", "2020-05-05 18:42:52.292786"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos nihil officiis quis?"], ["description", "Dolores voluptate placeat commodi."], ["date", "2020-05-06 18:42:52.294468"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.295368"], ["updated_at", "2020-05-05 18:42:52.295368"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam illo voluptatem iusto?"], ["description", "A fugiat fuga quis."], ["date", "2020-05-06 18:42:52.296469"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.297159"], ["updated_at", "2020-05-05 18:42:52.297159"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque ut numquam culpa?"], ["description", "Hic voluptatum dolores deserunt."], ["date", "2020-05-06 18:42:52.298208"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.298901"], ["updated_at", "2020-05-05 18:42:52.298901"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto aspernatur porro voluptatum?"], ["description", "Eveniet neque aut voluptatem."], ["date", "2020-05-06 18:42:52.300117"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.300833"], ["updated_at", "2020-05-05 18:42:52.300833"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem iure natus quas?"], ["description", "Sed odio similique voluptatum."], ["date", "2020-05-06 18:42:52.301984"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.302640"], ["updated_at", "2020-05-05 18:42:52.302640"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure natus et corrupti?"], ["description", "Consectetur modi unde eum."], ["date", "2020-05-06 18:42:52.304053"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.304908"], ["updated_at", "2020-05-05 18:42:52.304908"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos qui porro eveniet?"], ["description", "Impedit sit rerum architecto."], ["date", "2020-05-06 18:42:52.307052"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.308273"], ["updated_at", "2020-05-05 18:42:52.308273"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit dolor repellendus aperiam?"], ["description", "Et id quia porro."], ["date", "2020-05-06 18:42:52.310666"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.311730"], ["updated_at", "2020-05-05 18:42:52.311730"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel rerum molestiae officia?"], ["description", "Quos sunt perspiciatis qui."], ["date", "2020-05-06 18:42:52.313066"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.313759"], ["updated_at", "2020-05-05 18:42:52.313759"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore sed consequatur qui?"], ["description", "Quia vel adipisci excepturi."], ["date", "2020-05-06 18:42:52.314968"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.315768"], ["updated_at", "2020-05-05 18:42:52.315768"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequuntur sunt aut et?"], ["description", "Facere nulla excepturi officiis."], ["date", "2020-05-06 18:42:52.317104"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.317843"], ["updated_at", "2020-05-05 18:42:52.317843"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptate provident ratione doloremque?"], ["description", "Explicabo adipisci aliquam rerum."], ["date", "2020-05-06 18:42:52.319149"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.319848"], ["updated_at", "2020-05-05 18:42:52.319848"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis nostrum officia nisi?"], ["description", "Fugiat nemo cupiditate voluptatem."], ["date", "2020-05-06 18:42:52.321020"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.321736"], ["updated_at", "2020-05-05 18:42:52.321736"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum distinctio in impedit?"], ["description", "Omnis iure libero est."], ["date", "2020-05-06 18:42:52.322881"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.323566"], ["updated_at", "2020-05-05 18:42:52.323566"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis architecto ipsam accusamus?"], ["description", "Rerum repellat qui ut."], ["date", "2020-05-06 18:42:52.324792"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.326184"], ["updated_at", "2020-05-05 18:42:52.326184"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et eum non ex?"], ["description", "Ut id quaerat nisi."], ["date", "2020-05-06 18:42:52.327719"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.329066"], ["updated_at", "2020-05-05 18:42:52.329066"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut fugit mollitia cum?"], ["description", "Quia fuga error nostrum."], ["date", "2020-05-06 18:42:52.330572"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.331405"], ["updated_at", "2020-05-05 18:42:52.331405"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:42:52 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.0ms) SAVEPOINT active_record_2 + Meeting Update (0.1ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:42:52.335597"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1303) + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tyler Reinger Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XScFOdVYe2AQKuD2BJ1NmOv/cPpQQCwXcWrM9yvfm7USTGDR/ATYS"], ["created_at", "2020-05-05 18:42:52.349128"], ["updated_at", "2020-05-05 18:42:52.349128"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Sed qui amet fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.352818"], ["updated_at", "2020-05-05 18:42:52.352818"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At id dignissimos eos?"], ["description", "Id placeat mollitia eum."], ["date", "2020-05-06 18:42:52.354586"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.355653"], ["updated_at", "2020-05-05 18:42:52.355653"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut ut illum et?"], ["description", "Adipisci deserunt velit et."], ["date", "2020-05-06 18:42:52.357039"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.357758"], ["updated_at", "2020-05-05 18:42:52.357758"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias velit sequi optio?"], ["description", "Sint repellendus quaerat beatae."], ["date", "2020-05-06 18:42:52.358947"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.359610"], ["updated_at", "2020-05-05 18:42:52.359610"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor quasi sint praesentium?"], ["description", "Fuga molestiae tempora dolor."], ["date", "2020-05-06 18:42:52.361227"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.362394"], ["updated_at", "2020-05-05 18:42:52.362394"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos vel eum odio?"], ["description", "Sapiente et itaque aspernatur."], ["date", "2020-05-06 18:42:52.363720"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.364431"], ["updated_at", "2020-05-05 18:42:52.364431"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor qui tempore voluptatibus?"], ["description", "Sit provident modi voluptas."], ["date", "2020-05-06 18:42:52.365725"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.366619"], ["updated_at", "2020-05-05 18:42:52.366619"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero dolorem et non?"], ["description", "Sed doloribus cumque sed."], ["date", "2020-05-06 18:42:52.367997"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.369470"], ["updated_at", "2020-05-05 18:42:52.369470"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere in ex autem?"], ["description", "Ducimus dignissimos sint eum."], ["date", "2020-05-06 18:42:52.371064"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.372122"], ["updated_at", "2020-05-05 18:42:52.372122"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (2.0ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui ut provident quo?"], ["description", "Sequi tempora aut fuga."], ["date", "2020-05-06 18:42:52.374097"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.375537"], ["updated_at", "2020-05-05 18:42:52.375537"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut enim iure quas?"], ["description", "Id beatae aut voluptates."], ["date", "2020-05-06 18:42:52.379467"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.380873"], ["updated_at", "2020-05-05 18:42:52.380873"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus rerum laborum in?"], ["description", "Doloribus et ad sit."], ["date", "2020-05-06 18:42:52.382711"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.383771"], ["updated_at", "2020-05-05 18:42:52.383771"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam voluptatem commodi asperiores?"], ["description", "Sed fugit facilis beatae."], ["date", "2020-05-06 18:42:52.385395"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.386373"], ["updated_at", "2020-05-05 18:42:52.386373"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi nulla labore praesentium?"], ["description", "Dignissimos quo nihil harum."], ["date", "2020-05-06 18:42:52.387786"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.389013"], ["updated_at", "2020-05-05 18:42:52.389013"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim dolores autem ea?"], ["description", "Dignissimos labore accusamus perferendis."], ["date", "2020-05-06 18:42:52.390622"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.391521"], ["updated_at", "2020-05-05 18:42:52.391521"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptate culpa minus nobis?"], ["description", "Quis vel est soluta."], ["date", "2020-05-06 18:42:52.393001"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.394190"], ["updated_at", "2020-05-05 18:42:52.394190"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia est quo quaerat?"], ["description", "Reprehenderit accusamus nobis ut."], ["date", "2020-05-06 18:42:52.395478"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.396195"], ["updated_at", "2020-05-05 18:42:52.396195"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi autem est sit?"], ["description", "Quod tempora ea necessitatibus."], ["date", "2020-05-06 18:42:52.397276"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.398001"], ["updated_at", "2020-05-05 18:42:52.398001"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita consequatur minima non?"], ["description", "In facilis dolores blanditiis."], ["date", "2020-05-06 18:42:52.399130"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.399797"], ["updated_at", "2020-05-05 18:42:52.399797"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi nesciunt cupiditate aliquid?"], ["description", "Autem et eaque provident."], ["date", "2020-05-06 18:42:52.400895"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.401566"], ["updated_at", "2020-05-05 18:42:52.401566"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum consectetur qui illum?"], ["description", "Sit architecto harum deserunt."], ["date", "2020-05-06 18:42:52.402796"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.403540"], ["updated_at", "2020-05-05 18:42:52.403540"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:42:52 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 868) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cherly Kovacek"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.cpeOAYgpOqfBHQqksi4ces7dt.Y7QG1qHU0uE9eNaQZ7JROyGrg2"], ["created_at", "2020-05-05 18:42:52.420127"], ["updated_at", "2020-05-05 18:42:52.420127"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illum"], ["description", "Et quis modi non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.423629"], ["updated_at", "2020-05-05 18:42:52.423629"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed fugit nobis qui?"], ["description", "Minima expedita quo qui."], ["date", "2020-05-06 18:42:52.425762"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.427436"], ["updated_at", "2020-05-05 18:42:52.427436"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse rerum eius quo?"], ["description", "Quo error voluptatem autem."], ["date", "2020-05-06 18:42:52.430658"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.432616"], ["updated_at", "2020-05-05 18:42:52.432616"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam reprehenderit molestiae eos?"], ["description", "Et animi recusandae voluptate."], ["date", "2020-05-06 18:42:52.434554"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.435525"], ["updated_at", "2020-05-05 18:42:52.435525"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit est aliquam eveniet?"], ["description", "Magnam qui earum accusamus."], ["date", "2020-05-06 18:42:52.436784"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.437680"], ["updated_at", "2020-05-05 18:42:52.437680"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis adipisci aliquam ab?"], ["description", "Aliquid vel corrupti sed."], ["date", "2020-05-06 18:42:52.439218"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.440107"], ["updated_at", "2020-05-05 18:42:52.440107"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore facilis modi unde?"], ["description", "Ratione nesciunt voluptatem illo."], ["date", "2020-05-06 18:42:52.441676"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.442849"], ["updated_at", "2020-05-05 18:42:52.442849"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis maiores debitis labore?"], ["description", "In aut ut excepturi."], ["date", "2020-05-06 18:42:52.445216"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.446280"], ["updated_at", "2020-05-05 18:42:52.446280"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa aut quod aut?"], ["description", "Animi quasi provident totam."], ["date", "2020-05-06 18:42:52.448027"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.450525"], ["updated_at", "2020-05-05 18:42:52.450525"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum reiciendis repellat eius?"], ["description", "Soluta in in fugit."], ["date", "2020-05-06 18:42:52.452350"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.453363"], ["updated_at", "2020-05-05 18:42:52.453363"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor unde omnis reiciendis?"], ["description", "Accusantium optio hic modi."], ["date", "2020-05-06 18:42:52.455553"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.456536"], ["updated_at", "2020-05-05 18:42:52.456536"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda voluptates nemo quia?"], ["description", "Et error quia quaerat."], ["date", "2020-05-06 18:42:52.458058"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.458930"], ["updated_at", "2020-05-05 18:42:52.458930"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum recusandae qui eaque?"], ["description", "Est illum accusamus voluptatem."], ["date", "2020-05-06 18:42:52.460719"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.461809"], ["updated_at", "2020-05-05 18:42:52.461809"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore eos non qui?"], ["description", "Voluptas maiores autem sunt."], ["date", "2020-05-06 18:42:52.463361"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.464338"], ["updated_at", "2020-05-05 18:42:52.464338"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit sed qui ducimus?"], ["description", "Animi corporis quis sint."], ["date", "2020-05-06 18:42:52.465874"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.466769"], ["updated_at", "2020-05-05 18:42:52.466769"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae quia repellat praesentium?"], ["description", "Et impedit libero saepe."], ["date", "2020-05-06 18:42:52.468873"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.470636"], ["updated_at", "2020-05-05 18:42:52.470636"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum est odio eos?"], ["description", "Enim eius atque labore."], ["date", "2020-05-06 18:42:52.472302"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.473183"], ["updated_at", "2020-05-05 18:42:52.473183"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore exercitationem animi nihil?"], ["description", "Aut id ut ea."], ["date", "2020-05-06 18:42:52.474590"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.475604"], ["updated_at", "2020-05-05 18:42:52.475604"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et beatae dolor reiciendis?"], ["description", "Repudiandae doloremque laborum culpa."], ["date", "2020-05-06 18:42:52.477667"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.478664"], ["updated_at", "2020-05-05 18:42:52.478664"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda voluptas temporibus enim?"], ["description", "Et saepe omnis reiciendis."], ["date", "2020-05-06 18:42:52.480144"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.481058"], ["updated_at", "2020-05-05 18:42:52.481058"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis sit architecto aperiam?"], ["description", "Commodi nesciunt itaque sed."], ["date", "2020-05-06 18:42:52.482440"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.483278"], ["updated_at", "2020-05-05 18:42:52.483278"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:42:52 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.11ms) +Completed 404 Not Found in 4ms (Views: 0.9ms | ActiveRecord: 0.3ms | Allocations: 868) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (2.9ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Morgan Pagac"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ScT9Ay5pwxsAACdpegxLdeijFfG0/G6dygoQgxpMyy.xqBGiLL7PS"], ["created_at", "2020-05-05 18:42:52.510526"], ["updated_at", "2020-05-05 18:42:52.510526"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "mollitia"], ["description", "Ipsam delectus ducimus nostrum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.518239"], ["updated_at", "2020-05-05 18:42:52.518239"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut ut et consequatur?"], ["description", "Nisi explicabo ducimus laboriosam."], ["date", "2020-05-06 18:42:52.520866"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.521931"], ["updated_at", "2020-05-05 18:42:52.521931"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut ut corrupti dignissimos?"], ["description", "Ratione voluptatem minus veritatis."], ["date", "2020-05-06 18:42:52.523571"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.524581"], ["updated_at", "2020-05-05 18:42:52.524581"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque iure temporibus nulla?"], ["description", "Earum sed molestiae qui."], ["date", "2020-05-06 18:42:52.526169"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.527725"], ["updated_at", "2020-05-05 18:42:52.527725"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim autem earum rem?"], ["description", "Tempora commodi rerum ullam."], ["date", "2020-05-06 18:42:52.529618"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.531945"], ["updated_at", "2020-05-05 18:42:52.531945"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio molestias saepe facilis?"], ["description", "Neque deserunt nemo hic."], ["date", "2020-05-06 18:42:52.534196"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.535467"], ["updated_at", "2020-05-05 18:42:52.535467"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores laborum sint et?"], ["description", "In a beatae saepe."], ["date", "2020-05-06 18:42:52.536878"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.537732"], ["updated_at", "2020-05-05 18:42:52.537732"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis beatae eum maxime?"], ["description", "Mollitia neque rem tenetur."], ["date", "2020-05-06 18:42:52.539000"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.540378"], ["updated_at", "2020-05-05 18:42:52.540378"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non dolor fuga voluptas?"], ["description", "Numquam animi incidunt est."], ["date", "2020-05-06 18:42:52.541844"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.542929"], ["updated_at", "2020-05-05 18:42:52.542929"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam mollitia facilis voluptas?"], ["description", "Qui sapiente odio sed."], ["date", "2020-05-06 18:42:52.544887"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.545834"], ["updated_at", "2020-05-05 18:42:52.545834"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequuntur ut est qui?"], ["description", "Debitis quo qui exercitationem."], ["date", "2020-05-06 18:42:52.547836"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.549449"], ["updated_at", "2020-05-05 18:42:52.549449"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur ut minima ipsa?"], ["description", "Aperiam et sit ut."], ["date", "2020-05-06 18:42:52.552767"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.554275"], ["updated_at", "2020-05-05 18:42:52.554275"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore qui culpa voluptatum?"], ["description", "Corporis vel numquam mollitia."], ["date", "2020-05-06 18:42:52.556181"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.557339"], ["updated_at", "2020-05-05 18:42:52.557339"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam aperiam et corrupti?"], ["description", "Qui aliquam nostrum id."], ["date", "2020-05-06 18:42:52.558850"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.559942"], ["updated_at", "2020-05-05 18:42:52.559942"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores minus quam doloremque?"], ["description", "Ut quas est suscipit."], ["date", "2020-05-06 18:42:52.561832"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.562722"], ["updated_at", "2020-05-05 18:42:52.562722"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas esse necessitatibus animi?"], ["description", "Natus et placeat fugit."], ["date", "2020-05-06 18:42:52.564131"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.564922"], ["updated_at", "2020-05-05 18:42:52.564922"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Possimus non dolores sapiente?"], ["description", "Sunt omnis incidunt quis."], ["date", "2020-05-06 18:42:52.566163"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.566883"], ["updated_at", "2020-05-05 18:42:52.566883"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores quis magni reiciendis?"], ["description", "Quia tenetur pariatur voluptas."], ["date", "2020-05-06 18:42:52.568054"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.568796"], ["updated_at", "2020-05-05 18:42:52.568796"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem velit blanditiis fugit?"], ["description", "Rerum odio et aliquid."], ["date", "2020-05-06 18:42:52.570673"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.571918"], ["updated_at", "2020-05-05 18:42:52.571918"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut in id rerum?"], ["description", "Qui est facilis asperiores."], ["date", "2020-05-06 18:42:52.573370"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.574116"], ["updated_at", "2020-05-05 18:42:52.574116"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum ut officiis et?"], ["description", "Nihil maiores assumenda consequuntur."], ["date", "2020-05-06 18:42:52.575345"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:42:52.576794"], ["updated_at", "2020-05-05 18:42:52.576794"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:42:52 -0300 +Processing by MeetingsController#destroy as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + UserMeeting Load (0.1ms) SELECT "user_meetings".* FROM "user_meetings" WHERE "user_meetings"."meeting_id" = ? [["meeting_id", 1]] + Meeting Destroy (0.1ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 7ms (ActiveRecord: 0.8ms | Allocations: 2317) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Odit ea saepe sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.598208"], ["updated_at", "2020-05-05 18:42:52.598208"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "similique"], ["description", "Blanditiis eum ducimus tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.601261"], ["updated_at", "2020-05-05 18:42:52.601261"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusamus"], ["description", "Non debitis assumenda voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.602835"], ["updated_at", "2020-05-05 18:42:52.602835"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Nostrum provident eaque minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.604281"], ["updated_at", "2020-05-05 18:42:52.604281"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "temporibus"], ["description", "Omnis voluptas voluptatem cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.605895"], ["updated_at", "2020-05-05 18:42:52.605895"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Maxime voluptas asperiores nostrum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.607291"], ["updated_at", "2020-05-05 18:42:52.607291"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nisi"], ["description", "Rerum esse vel tenetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.608685"], ["updated_at", "2020-05-05 18:42:52.608685"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Omnis neque nulla rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.612495"], ["updated_at", "2020-05-05 18:42:52.612495"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Vel odio laboriosam velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.615072"], ["updated_at", "2020-05-05 18:42:52.615072"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequuntur"], ["description", "Sed dolores quis dicta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.616812"], ["updated_at", "2020-05-05 18:42:52.616812"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Cyril Quigley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dG0yz4CJ4cd1ak90RfiN..BuTHnReWGXo0AVOd2JrX2dTq87g/kWG"], ["created_at", "2020-05-05 18:42:52.620382"], ["updated_at", "2020-05-05 18:42:52.620382"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:52 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +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.2ms | ActiveRecord: 0.3ms | Allocations: 2913) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (2.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corporis"], ["description", "Aut eos aliquid est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.643465"], ["updated_at", "2020-05-05 18:42:52.643465"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Dolores at sint architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.650056"], ["updated_at", "2020-05-05 18:42:52.650056"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Inventore non nulla voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.653164"], ["updated_at", "2020-05-05 18:42:52.653164"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "provident"], ["description", "Rem consequatur ab voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.655511"], ["updated_at", "2020-05-05 18:42:52.655511"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "amet"], ["description", "Et voluptates voluptas omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.657140"], ["updated_at", "2020-05-05 18:42:52.657140"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "atque"], ["description", "Consequatur dicta officiis voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.660136"], ["updated_at", "2020-05-05 18:42:52.660136"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laudantium"], ["description", "Ut ut accusantium voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.662172"], ["updated_at", "2020-05-05 18:42:52.662172"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vitae"], ["description", "Corrupti porro iure est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.663924"], ["updated_at", "2020-05-05 18:42:52.663924"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Officia iusto numquam nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.665819"], ["updated_at", "2020-05-05 18:42:52.665819"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Ut quo earum quaerat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.667506"], ["updated_at", "2020-05-05 18:42:52.667506"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Trudi Schultz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$lUAHnIz8ZRok4qbribvK4ukUToi22vEehqBoqrMkEufiP2KbWzPnm"], ["created_at", "2020-05-05 18:42:52.671249"], ["updated_at", "2020-05-05 18:42:52.671249"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:52 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.51ms) +Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.2ms | Allocations: 2844) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (112.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (5.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Aut aut possimus sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.805243"], ["updated_at", "2020-05-05 18:42:52.805243"], ["created_by", "1"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Quas quidem magni ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.815644"], ["updated_at", "2020-05-05 18:42:52.815644"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Laboriosam expedita maiores provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.821108"], ["updated_at", "2020-05-05 18:42:52.821108"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Nesciunt laboriosam omnis quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.826494"], ["updated_at", "2020-05-05 18:42:52.826494"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.4ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Occaecati voluptatem nulla necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.832601"], ["updated_at", "2020-05-05 18:42:52.832601"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "possimus"], ["description", "Sint aut voluptatem esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.839085"], ["updated_at", "2020-05-05 18:42:52.839085"], ["created_by", "1"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatibus"], ["description", "Quia nam temporibus eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.845965"], ["updated_at", "2020-05-05 18:42:52.845965"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "necessitatibus"], ["description", "Consequatur earum voluptatem totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.851459"], ["updated_at", "2020-05-05 18:42:52.851459"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Sapiente minus ut ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.854652"], ["updated_at", "2020-05-05 18:42:52.854652"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Consequatur non nam autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.857322"], ["updated_at", "2020-05-05 18:42:52.857322"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Krystle Ruecker"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FuL/pGvF0/euu7Y2ZX6Vt.OiX3ZsaZBZ.EnB3jU6I.ktI90NesYV6"], ["created_at", "2020-05-05 18:42:52.861969"], ["updated_at", "2020-05-05 18:42:52.861969"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:52 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (8.82ms) +Completed 200 OK in 12ms (Views: 11.0ms | ActiveRecord: 0.3ms | Allocations: 2844) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:42:52 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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: 1241) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.0ms) rollback transaction +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veniam"], ["description", "Eaque dolor iusto qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.894748"], ["updated_at", "2020-05-05 18:42:52.894748"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Nihil rerum est rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.898252"], ["updated_at", "2020-05-05 18:42:52.898252"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Omnis magni repellat autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.899675"], ["updated_at", "2020-05-05 18:42:52.899675"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Officiis impedit dolorem voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.901366"], ["updated_at", "2020-05-05 18:42:52.901366"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eveniet"], ["description", "Deserunt voluptatum magni nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.903128"], ["updated_at", "2020-05-05 18:42:52.903128"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cupiditate"], ["description", "Ut nostrum hic similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.904778"], ["updated_at", "2020-05-05 18:42:52.904778"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "occaecati"], ["description", "Officiis quae rerum porro."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.906415"], ["updated_at", "2020-05-05 18:42:52.906415"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Pariatur nesciunt sunt ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.907751"], ["updated_at", "2020-05-05 18:42:52.907751"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nostrum"], ["description", "Quos et ipsam cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.909540"], ["updated_at", "2020-05-05 18:42:52.909540"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "culpa"], ["description", "Voluptatibus est eos eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.911293"], ["updated_at", "2020-05-05 18:42:52.911293"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Thurman Schmidt"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$l9sP5jY3olOs6OM2by6EBugbSEyFen0/K01wgXYZ9NK9pcB0nL6J."], ["created_at", "2020-05-05 18:42:52.915183"], ["updated_at", "2020-05-05 18:42:52.915183"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:52 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.78ms) +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 15:42:52 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (2.78ms) +Completed 200 OK in 5ms (Views: 3.2ms | ActiveRecord: 0.3ms | Allocations: 1239) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "pariatur"], ["description", "Repudiandae qui et temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.943004"], ["updated_at", "2020-05-05 18:42:52.943004"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Architecto et aperiam ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.947168"], ["updated_at", "2020-05-05 18:42:52.947168"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Sed molestiae et voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.948743"], ["updated_at", "2020-05-05 18:42:52.948743"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Et beatae ut error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.950250"], ["updated_at", "2020-05-05 18:42:52.950250"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Velit quia nam laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.951764"], ["updated_at", "2020-05-05 18:42:52.951764"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illo"], ["description", "Consectetur veritatis laudantium quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.954216"], ["updated_at", "2020-05-05 18:42:52.954216"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "soluta"], ["description", "Quod voluptas sit praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.956910"], ["updated_at", "2020-05-05 18:42:52.956910"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "esse"], ["description", "Dolorem ea eveniet autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.958427"], ["updated_at", "2020-05-05 18:42:52.958427"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Quae rerum ex autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.960260"], ["updated_at", "2020-05-05 18:42:52.960260"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Maiores aut blanditiis fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.962134"], ["updated_at", "2020-05-05 18:42:52.962134"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jerrod Yundt"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mCH/VLt..DI6RYTCzG6O.Ogze1BHQQCO/E8ewVc.qQXW3gGc2z6O2"], ["created_at", "2020-05-05 18:42:52.964766"], ["updated_at", "2020-05-05 18:42:52.964766"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:52 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.76ms) +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 15:42:52 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 512) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Voluptatem minima repellat ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.986286"], ["updated_at", "2020-05-05 18:42:52.986286"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quaerat"], ["description", "Vero voluptatem est et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.989234"], ["updated_at", "2020-05-05 18:42:52.989234"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eaque"], ["description", "Laboriosam quod quis ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.990701"], ["updated_at", "2020-05-05 18:42:52.990701"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Eveniet cumque et quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.993225"], ["updated_at", "2020-05-05 18:42:52.993225"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Aspernatur quae numquam est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.997335"], ["updated_at", "2020-05-05 18:42:52.997335"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deleniti"], ["description", "Molestiae nisi eveniet dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:52.999145"], ["updated_at", "2020-05-05 18:42:52.999145"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Id incidunt accusamus est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.000462"], ["updated_at", "2020-05-05 18:42:53.000462"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "architecto"], ["description", "Magni non alias voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.001777"], ["updated_at", "2020-05-05 18:42:53.001777"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repudiandae"], ["description", "Aut et ipsum sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.003192"], ["updated_at", "2020-05-05 18:42:53.003192"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "numquam"], ["description", "Accusantium magnam a et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.020260"], ["updated_at", "2020-05-05 18:42:53.020260"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Phillip Hettinger"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$epVoZ6HbTDFZ3RDfG0h2DOEEGkVtzgVYjuIMMfvsDO1246ZQGl7oy"], ["created_at", "2020-05-05 18:42:53.022990"], ["updated_at", "2020-05-05 18:42:53.022990"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | Allocations: 2843) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.3ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (4.9ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officiis"], ["description", "Optio dolores laudantium aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.045154"], ["updated_at", "2020-05-05 18:42:53.045154"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Quam officia a praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.052196"], ["updated_at", "2020-05-05 18:42:53.052196"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "libero"], ["description", "In modi deleniti repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.054572"], ["updated_at", "2020-05-05 18:42:53.054572"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nobis"], ["description", "Eaque laboriosam delectus illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.056871"], ["updated_at", "2020-05-05 18:42:53.056871"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "suscipit"], ["description", "Deserunt eos placeat magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.058513"], ["updated_at", "2020-05-05 18:42:53.058513"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Aut sed maxime nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.059947"], ["updated_at", "2020-05-05 18:42:53.059947"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minima"], ["description", "Sit doloremque quia ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.062110"], ["updated_at", "2020-05-05 18:42:53.062110"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequuntur"], ["description", "Doloremque id facere necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.063954"], ["updated_at", "2020-05-05 18:42:53.063954"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatibus"], ["description", "Unde veritatis ut tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.065622"], ["updated_at", "2020-05-05 18:42:53.065622"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Quisquam iste sit necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.067105"], ["updated_at", "2020-05-05 18:42:53.067105"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Queenie Marquardt"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$j6HcC9klXttpM8sfhvWLqudCDDDU38gatY5.Zg212iwEcIantdoJ."], ["created_at", "2020-05-05 18:42:53.069805"], ["updated_at", "2020-05-05 18:42:53.069805"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.39ms) +Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2845) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:42:53 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:42:53.095452"], ["updated_at", "2020-05-05 18:42:53.095452"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.79ms) +Completed 201 Created in 23ms (Views: 1.2ms | ActiveRecord: 1.2ms | Allocations: 6207) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Ut labore quidem nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.114000"], ["updated_at", "2020-05-05 18:42:53.114000"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "alias"], ["description", "In porro reiciendis dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.117037"], ["updated_at", "2020-05-05 18:42:53.117037"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquam"], ["description", "Exercitationem perspiciatis ut rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.118611"], ["updated_at", "2020-05-05 18:42:53.118611"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Voluptas similique aspernatur veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.120020"], ["updated_at", "2020-05-05 18:42:53.120020"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "culpa"], ["description", "Ipsa veritatis sit unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.121686"], ["updated_at", "2020-05-05 18:42:53.121686"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Vero quam consequatur cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.123052"], ["updated_at", "2020-05-05 18:42:53.123052"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Doloribus est dolores dicta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.124498"], ["updated_at", "2020-05-05 18:42:53.124498"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nisi"], ["description", "Vero aut vitae dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.126547"], ["updated_at", "2020-05-05 18:42:53.126547"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Voluptatem vel possimus molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.127950"], ["updated_at", "2020-05-05 18:42:53.127950"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "optio"], ["description", "Eos veniam in repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.129312"], ["updated_at", "2020-05-05 18:42:53.129312"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jonathon Feil II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WDGfNss73e7H2ZwaiCWTluanH3dwpxMAi7AfkV/ENDW5m4/Rrquka"], ["created_at", "2020-05-05 18:42:53.131945"], ["updated_at", "2020-05-05 18:42:53.131945"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.35ms) +Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:42:53 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:42:53.145038"], ["updated_at", "2020-05-05 18:42:53.145038"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.49ms) +Completed 201 Created in 5ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 2217) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Sit optio et facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.159454"], ["updated_at", "2020-05-05 18:42:53.159454"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fuga"], ["description", "Rerum est nobis sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.163040"], ["updated_at", "2020-05-05 18:42:53.163040"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Nihil est perferendis fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.164647"], ["updated_at", "2020-05-05 18:42:53.164647"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Voluptatum nemo dolor sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.165954"], ["updated_at", "2020-05-05 18:42:53.165954"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Ut quia libero voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.167281"], ["updated_at", "2020-05-05 18:42:53.167281"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Inventore incidunt aut vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.168583"], ["updated_at", "2020-05-05 18:42:53.168583"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Id aspernatur placeat minus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.169844"], ["updated_at", "2020-05-05 18:42:53.169844"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "suscipit"], ["description", "Quaerat optio odit incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.171102"], ["updated_at", "2020-05-05 18:42:53.171102"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Qui sed nisi ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.172494"], ["updated_at", "2020-05-05 18:42:53.172494"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "commodi"], ["description", "Ut hic cumque nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.174861"], ["updated_at", "2020-05-05 18:42:53.174861"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Chas Kerluke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$EMNYaAdcVkG/o2QtEJIRw.9v8knqj8JBk.t89HetOcfhqbnc06LPW"], ["created_at", "2020-05-05 18:42:53.179214"], ["updated_at", "2020-05-05 18:42:53.179214"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2842) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 422 Unprocessable Entity in 6ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 4006) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eligendi"], ["description", "Magnam molestiae excepturi deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.203849"], ["updated_at", "2020-05-05 18:42:53.203849"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Sed nihil mollitia aperiam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.207265"], ["updated_at", "2020-05-05 18:42:53.207265"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Praesentium cumque qui ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.209127"], ["updated_at", "2020-05-05 18:42:53.209127"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Aliquid nihil eveniet in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.211208"], ["updated_at", "2020-05-05 18:42:53.211208"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quibusdam"], ["description", "Dolorem cum minima consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.212776"], ["updated_at", "2020-05-05 18:42:53.212776"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quos"], ["description", "Omnis in delectus est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.215318"], ["updated_at", "2020-05-05 18:42:53.215318"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iure"], ["description", "Facilis sit dolorem eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.217358"], ["updated_at", "2020-05-05 18:42:53.217358"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deleniti"], ["description", "Illo et maiores non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.218734"], ["updated_at", "2020-05-05 18:42:53.218734"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maiores"], ["description", "Veniam qui rerum minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.220023"], ["updated_at", "2020-05-05 18:42:53.220023"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Aut et consequatur qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.221269"], ["updated_at", "2020-05-05 18:42:53.221269"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gwen Reichel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XMoo1BXf4QIl2sK5MaG5yuQQ/u76S2K/NJNwl31B8dkXrhwWM8oBu"], ["created_at", "2020-05-05 18:42:53.223854"], ["updated_at", "2020-05-05 18:42:53.223854"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | Allocations: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nam"], ["description", "Quam et quae molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.248198"], ["updated_at", "2020-05-05 18:42:53.248198"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Voluptatibus id eligendi dignissimos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.251782"], ["updated_at", "2020-05-05 18:42:53.251782"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eaque"], ["description", "Ea dolores voluptates temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.253463"], ["updated_at", "2020-05-05 18:42:53.253463"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "harum"], ["description", "Aut id quam ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.256198"], ["updated_at", "2020-05-05 18:42:53.256198"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Ratione quae ut est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.257699"], ["updated_at", "2020-05-05 18:42:53.257699"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dignissimos"], ["description", "Consequatur quae velit corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.259628"], ["updated_at", "2020-05-05 18:42:53.259628"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "at"], ["description", "Esse consequuntur voluptate adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.262204"], ["updated_at", "2020-05-05 18:42:53.262204"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maiores"], ["description", "Eveniet repellat iste adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.263582"], ["updated_at", "2020-05-05 18:42:53.263582"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facilis"], ["description", "Ut consectetur rerum molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.264901"], ["updated_at", "2020-05-05 18:42:53.264901"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Voluptatem doloremque vitae quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.266229"], ["updated_at", "2020-05-05 18:42:53.266229"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Leigh Carroll"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TM0VEWSdthhJDAlpM.UneOqffJCZlnjBBPp.mPXut1mrgS4UT45sm"], ["created_at", "2020-05-05 18:42:53.268817"], ["updated_at", "2020-05-05 18:42:53.268817"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.91ms) +Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms | Allocations: 2843) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:42:53.280336"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1043) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "in"], ["description", "Magnam explicabo voluptatum quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.290300"], ["updated_at", "2020-05-05 18:42:53.290300"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Quia dolorem minus saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.294274"], ["updated_at", "2020-05-05 18:42:53.294274"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Itaque est ad eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.297001"], ["updated_at", "2020-05-05 18:42:53.297001"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laboriosam"], ["description", "Quisquam id voluptates soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.298432"], ["updated_at", "2020-05-05 18:42:53.298432"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "Reiciendis sed quia veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.299758"], ["updated_at", "2020-05-05 18:42:53.299758"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perferendis"], ["description", "Tempora numquam itaque debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.301095"], ["updated_at", "2020-05-05 18:42:53.301095"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odit"], ["description", "Debitis et qui voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.302370"], ["updated_at", "2020-05-05 18:42:53.302370"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "In eos quia non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.303620"], ["updated_at", "2020-05-05 18:42:53.303620"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deserunt"], ["description", "Rerum ea ut explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.304955"], ["updated_at", "2020-05-05 18:42:53.304955"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Sit nihil aspernatur voluptate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.306255"], ["updated_at", "2020-05-05 18:42:53.306255"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ulysses Mayer I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UA5gxcE9t.oI9d8Q8dSfyOmOeEPGGxyjoTe.zog266TpjADjvd25m"], ["created_at", "2020-05-05 18:42:53.308826"], ["updated_at", "2020-05-05 18:42:53.308826"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.27ms) +Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.1ms | Allocations: 2843) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:42:53.321053"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 999) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Dolorum iste ut quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.331464"], ["updated_at", "2020-05-05 18:42:53.331464"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "necessitatibus"], ["description", "Et accusantium quam quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.335048"], ["updated_at", "2020-05-05 18:42:53.335048"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corrupti"], ["description", "Blanditiis sed nesciunt voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.337123"], ["updated_at", "2020-05-05 18:42:53.337123"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quod"], ["description", "Necessitatibus quis aut quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.339089"], ["updated_at", "2020-05-05 18:42:53.339089"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Harum et rem sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.340500"], ["updated_at", "2020-05-05 18:42:53.340500"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "unde"], ["description", "Quis delectus iusto praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.341831"], ["updated_at", "2020-05-05 18:42:53.341831"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "debitis"], ["description", "Sit et praesentium voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.343732"], ["updated_at", "2020-05-05 18:42:53.343732"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Illum aliquam quia quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.345081"], ["updated_at", "2020-05-05 18:42:53.345081"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eveniet"], ["description", "Inventore adipisci voluptatem aliquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.346380"], ["updated_at", "2020-05-05 18:42:53.346380"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsam"], ["description", "Suscipit consequatur accusamus nostrum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:42:53.347674"], ["updated_at", "2020-05-05 18:42:53.347674"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alida Schinner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Zn65Sv.2TSzoIlG3znynG.C3IvJM/gnH1fLZMPMqUUF/t1ZqbnRQ2"], ["created_at", "2020-05-05 18:42:53.350260"], ["updated_at", "2020-05-05 18:42:53.350260"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.24ms) +Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1205) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (2.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rashida Legros"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$E7GgK5S9H/8NsWtwZdAq2ONL8bIBAydROT0h.zHE8V1l144hYsQFu"], ["created_at", "2020-05-05 18:42:53.373963"], ["updated_at", "2020-05-05 18:42:53.373963"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Georgette Williamson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QrM/DGJyNOvuHBtIQk/7v.gGwEHM2RBVTF39wNEK5iusCTeoFMNX6"], ["created_at", "2020-05-05 18:42:53.380092"], ["updated_at", "2020-05-05 18:42:53.380092"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tiffiny Stanton"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$n.IJ46nSlS5XY8mNu4n68uPTEVA.IKPcw8DyRnfH16ydPD7TE2b7O"], ["created_at", "2020-05-05 18:42:53.382746"], ["updated_at", "2020-05-05 18:42:53.382746"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Benjamin Stehr"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.OgkP1O0dKEgVRi51K4RLOFgdVrVo4T04XJ8Iol5Qiu9Y1tHBAbbG"], ["created_at", "2020-05-05 18:42:53.385185"], ["updated_at", "2020-05-05 18:42:53.385185"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Desmond D'Amore DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mdCBH6g5lvi.Esm1zybbPuQhvx6ZA9teYSGw/ijhadz5sdhZgZ.yy"], ["created_at", "2020-05-05 18:42:53.387704"], ["updated_at", "2020-05-05 18:42:53.387704"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Cliff O'Hara"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6gSs4zoh/2lEM1ipNwAM4Oex5vN4claLEpwXP4pUlPELtzk5/llPS"], ["created_at", "2020-05-05 18:42:53.390161"], ["updated_at", "2020-05-05 18:42:53.390161"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sid Lockman III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1M/cLCpCjbCTnirmysHUV.nhGtfhyGZSLm2MQWGjH7e.u.EptZia."], ["created_at", "2020-05-05 18:42:53.392872"], ["updated_at", "2020-05-05 18:42:53.392872"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Omar Upton"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ikpah0Gm8Wh3X/0Lw1paM.wP4fX4eLOCVPiav8ACxc8MKFXTeQliW"], ["created_at", "2020-05-05 18:42:53.396507"], ["updated_at", "2020-05-05 18:42:53.396507"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Viva Zieme I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$N1Q1WwD29obz9yKCv1l4yO6U7WMSvTl5IFmI.bf.rDm.xKswzEDde"], ["created_at", "2020-05-05 18:42:53.400167"], ["updated_at", "2020-05-05 18:42:53.400167"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ronda Okuneva"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$p3gNJ7gxhH4xw61XyrdinOA13aAGo/N5mAeXv39WiqggF5PQcckWm"], ["created_at", "2020-05-05 18:42:53.402954"], ["updated_at", "2020-05-05 18:42:53.402954"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.22ms) +Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.2ms | Allocations: 2345) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Clarine Collier MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fn54lhWNMoHi9PEkADKUj.g/ndVn0GXJPQEPxIuG2ANPVDWhb5xCy"], ["created_at", "2020-05-05 18:42:53.426909"], ["updated_at", "2020-05-05 18:42:53.426909"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Amal Hamill"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$axRjs4t9gjG822KkP22zyuj6ml0KzPbF9PYPyBts8TNFtwdEMJ.oa"], ["created_at", "2020-05-05 18:42:53.430967"], ["updated_at", "2020-05-05 18:42:53.430967"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nathanael Bernhard"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6F41SA3.DLnzhVGQV31SdeRCIB3EaKubqHA6GyoC4mij/.RqRKPZC"], ["created_at", "2020-05-05 18:42:53.433525"], ["updated_at", "2020-05-05 18:42:53.433525"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lashay Hahn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$IKi24JxEy.3WnJBbEuTvYuQ6CvzHN0o5U.6DSkkEI39lTv8ldDyOi"], ["created_at", "2020-05-05 18:42:53.436837"], ["updated_at", "2020-05-05 18:42:53.436837"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Micheal Hayes I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$25fiFOhsxxVozGtpLhqEHe/RW99tJWCrk5kpjTbmyxBINTWO1Jgtq"], ["created_at", "2020-05-05 18:42:53.440363"], ["updated_at", "2020-05-05 18:42:53.440363"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Annett Stamm"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YtNRWBANyA4tGvqxpLYkjOLoraA0Slm1hxiF1NbGH8lkT22QbVuNi"], ["created_at", "2020-05-05 18:42:53.443187"], ["updated_at", "2020-05-05 18:42:53.443187"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Elaine Kling"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$yejO1l8J08H/js2r3KRhiOOOH2owHzXNZFXxiZhQ0aSn6A58NuQm2"], ["created_at", "2020-05-05 18:42:53.446070"], ["updated_at", "2020-05-05 18:42:53.446070"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Louvenia Turner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3BSI5DzJQtG0o894o0GjIezsgBJUBViWZKP.w7OK3M7zKTAHzCTQu"], ["created_at", "2020-05-05 18:42:53.448432"], ["updated_at", "2020-05-05 18:42:53.448432"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rosalyn O'Keefe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fQF1JKFY41CvTgv182D1qeAr/XrPj56vCbsHRRBB1naYJXrQc.9mG"], ["created_at", "2020-05-05 18:42:53.450790"], ["updated_at", "2020-05-05 18:42:53.450790"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Charley Mertz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$a7/rceCPAvec0.bnDlCnDuHd.AJqDGHkMxE17D8gSbgS2erBV.2Ym"], ["created_at", "2020-05-05 18:42:53.453247"], ["updated_at", "2020-05-05 18:42:53.453247"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.08ms) +Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms | Allocations: 2203) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Man Rogahn DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HOC0wxNLQEtPz4.HLj0C4OF3CJgs16EzdhAnSItlgQJX0HI6P6glq"], ["created_at", "2020-05-05 18:42:53.471073"], ["updated_at", "2020-05-05 18:42:53.471073"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Francine Kessler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$cIqIs03/7RL89LhZvX3ZA.t23z5rgQzmLxz/zJBLULH4lDElkm7T6"], ["created_at", "2020-05-05 18:42:53.475806"], ["updated_at", "2020-05-05 18:42:53.475806"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Roosevelt Lehner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$yNa9KMejlczS2KyW1P3eFuwCwhMO04erp98tk0DpeAXUyIK3Es5WK"], ["created_at", "2020-05-05 18:42:53.480484"], ["updated_at", "2020-05-05 18:42:53.480484"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Minh Bosco"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FyUjG0ZderngxLd9YEg93..tK.4I/vGfz7vMa4vDGxuAMKvXv.G5m"], ["created_at", "2020-05-05 18:42:53.483266"], ["updated_at", "2020-05-05 18:42:53.483266"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Coletta Conroy III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BT9yYd.lGj9Ta.YkI9FnIuxxLAQG.8cK05WYfafpSATvRNHgoCm66"], ["created_at", "2020-05-05 18:42:53.485837"], ["updated_at", "2020-05-05 18:42:53.485837"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bryan Moore"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$w6yRPkh2XVgajzagtdAHL.6jz.0wsL0a8xepcHDJKmkb8Uow0OGeG"], ["created_at", "2020-05-05 18:42:53.488424"], ["updated_at", "2020-05-05 18:42:53.488424"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jamee Veum"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ONOFTlZog5/TRVisMPyPJeZfmm0NzgX8zR4JrJeUikewg/JqAHyA2"], ["created_at", "2020-05-05 18:42:53.491089"], ["updated_at", "2020-05-05 18:42:53.491089"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lesli Stokes"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nP9nDKPTpJBIR2BvZsW.A.jEO5PVwxvDCDMa/wBMv6IlQR/YNNmsC"], ["created_at", "2020-05-05 18:42:53.493851"], ["updated_at", "2020-05-05 18:42:53.493851"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Willie Littel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rzd/Lu2lZMmfsmm683FH4uxefSDyNyzQx6I.5zHTjTCl2rR8ShNte"], ["created_at", "2020-05-05 18:42:53.497916"], ["updated_at", "2020-05-05 18:42:53.497916"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rickie Roberts V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KgHlZFyC5t/zZNCvXpqmsOyanR0V4VWo7vZJ07ElYkNrjaAfob1Yu"], ["created_at", "2020-05-05 18:42:53.501301"], ["updated_at", "2020-05-05 18:42:53.501301"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.81ms) +Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.4ms) +Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Magdalen Mayer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$EkOVhqS2m5klnkU7lTFg7.8xVrxqiD6zKol6NGDyj0TKUXWGbsj.K"], ["created_at", "2020-05-05 18:42:53.521783"], ["updated_at", "2020-05-05 18:42:53.521783"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Jonah Murphy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$EOK/lFoX4CY6b9DFS54vUesA2X9YM8U35yMA5844tX/3Jjt89jvMq"], ["created_at", "2020-05-05 18:42:53.526790"], ["updated_at", "2020-05-05 18:42:53.526790"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bryan Lehner I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8n6Oj34LvBNKsXunUXGsGu.wDGtLS6cShNu0KqflAPKU99/CBL4Jq"], ["created_at", "2020-05-05 18:42:53.529842"], ["updated_at", "2020-05-05 18:42:53.529842"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shakia Hand"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8IAF5Ssw.9XC84VZYIrWDupaULEjQBlWRVr.1s3V0Nac30ntCfEXS"], ["created_at", "2020-05-05 18:42:53.532366"], ["updated_at", "2020-05-05 18:42:53.532366"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Normand Parker"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WRYLf5zKKC/invkAZrzqh.GVXffQGuWFHaz8cYkS/yGqrCIv2.vDq"], ["created_at", "2020-05-05 18:42:53.534967"], ["updated_at", "2020-05-05 18:42:53.534967"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Taylor Towne"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fbkc8T99ZZDJSNqpIg0Gsea.S/y7kUd8S6Y9RS2YmB6zgNSQe6PaK"], ["created_at", "2020-05-05 18:42:53.538713"], ["updated_at", "2020-05-05 18:42:53.538713"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tina Ziemann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GpTOFwpvLCC.gqm0Kpzkl.n8keMmp6pldPz7XmBe2a60qLeZvY4iO"], ["created_at", "2020-05-05 18:42:53.542032"], ["updated_at", "2020-05-05 18:42:53.542032"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Frederica Schaden"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dx747/1ByOLQFaP2MIQ/J.XXbCJgtCmyDlg5VHjumIYkp6BA4ndx2"], ["created_at", "2020-05-05 18:42:53.545233"], ["updated_at", "2020-05-05 18:42:53.545233"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leonor Mitchell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ocJyh1.s/Ay/pGEaCtrS.uI6Dep7PVW/wDpS4aO0UFtBDmaNzmXiS"], ["created_at", "2020-05-05 18:42:53.547683"], ["updated_at", "2020-05-05 18:42:53.547683"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Franklyn Collins V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$M/zqfMjKaAigF8PiAs5XledMeofnYJ.1Jg/50FnSKZMArsFgDUSqW"], ["created_at", "2020-05-05 18:42:53.550097"], ["updated_at", "2020-05-05 18:42:53.550097"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.54ms) +Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.59ms) +Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (4.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Letha Batz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2M7EOj7sWutdFycMNyeew.3T/bQi10gy48OwSlqudwDbQZVV6nfZm"], ["created_at", "2020-05-05 18:42:53.570878"], ["updated_at", "2020-05-05 18:42:53.570878"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nakesha Gorczany"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QOE3acmK4IUv2rTer7xY3uM0H.MsUtsi9zZ7tnvocpfwfmCsL1Zey"], ["created_at", "2020-05-05 18:42:53.575260"], ["updated_at", "2020-05-05 18:42:53.575260"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jonathan Mosciski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Y2GtEbgv8Gs/aW1CeTBjYO1PbDzpTsWhZripMZhzjByhq3TBucHbK"], ["created_at", "2020-05-05 18:42:53.581200"], ["updated_at", "2020-05-05 18:42:53.581200"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Demarcus Hoeger"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$h2TNktX2vgP2T5xAk6V/vu/jcriST0myNsEtnBFO1234B8Wp07thm"], ["created_at", "2020-05-05 18:42:53.584043"], ["updated_at", "2020-05-05 18:42:53.584043"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jules Stehr"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KAjKZQpSdotYYFPix4MDFO/HYiMHk4I.Iv380mIKraiyC7HpTybly"], ["created_at", "2020-05-05 18:42:53.586850"], ["updated_at", "2020-05-05 18:42:53.586850"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Brittanie Volkman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aLAoJIrjyVKe8akkyZJUI.H6g0sIFs6dhxIMGoDL0a22BPLs8k6jK"], ["created_at", "2020-05-05 18:42:53.589340"], ["updated_at", "2020-05-05 18:42:53.589340"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Bertram Schinner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ELD9d3Ec1jDyPP5Msw/YXuLridZKWjf/AL1KcZMBLwWcYMzRcu5yK"], ["created_at", "2020-05-05 18:42:53.591828"], ["updated_at", "2020-05-05 18:42:53.591828"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Terra Mueller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hUoYbVkW5tM0/0LjIuaqoOBXtN3.Ny4KNi.nLMWeq1NH46170lt2O"], ["created_at", "2020-05-05 18:42:53.595046"], ["updated_at", "2020-05-05 18:42:53.595046"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rachele Huels Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZhRZgbVhiJtA3YKSfPdFNOVjnpNXtNs.61dxmUYq8D0iNI8NH9e0a"], ["created_at", "2020-05-05 18:42:53.598688"], ["updated_at", "2020-05-05 18:42:53.598688"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Norris Mayert III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$lKEJCghFGDRpGJh1Ohrh8O0xi4zrFuDW9vnhv5snbABfMdDz/73BW"], ["created_at", "2020-05-05 18:42:53.602029"], ["updated_at", "2020-05-05 18:42:53.602029"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.88ms) +Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cecelia Spencer DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3sMqCeucawmLDglKvuBOgOoHq1E9ZQzPOn0TfKQbA3pjZEvOdm82a"], ["created_at", "2020-05-05 18:42:53.622992"], ["updated_at", "2020-05-05 18:42:53.622992"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Kelly Cummerata"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KU6osiFAq/W9HMPf642hL.HyXPYar9jrRYOX67fnWBwOne1deW7kq"], ["created_at", "2020-05-05 18:42:53.627487"], ["updated_at", "2020-05-05 18:42:53.627487"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alex Terry"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1mRsYwS0wF/G.kVnjOEgZOUfUI0nc6kBgYAt2hL8fw6Vf52fB4rUm"], ["created_at", "2020-05-05 18:42:53.630423"], ["updated_at", "2020-05-05 18:42:53.630423"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ellsworth Purdy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$j6gy5Jv6niw8g9f3fhdjMOoqP9fNfQ7gC6SIaICJhRDkcXsQPZK2C"], ["created_at", "2020-05-05 18:42:53.632904"], ["updated_at", "2020-05-05 18:42:53.632904"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Telma Schimmel DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jYZmELOzb4j7QmR1uF2FNOTgXCYvWaLJHuAg77TmuBQxc2HKPVvI."], ["created_at", "2020-05-05 18:42:53.635584"], ["updated_at", "2020-05-05 18:42:53.635584"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Denver Halvorson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$yewOB9cwEw6X9YObivcIIOYw.vUPOpl8TiAfZ92sElPwqwNzxd1ZK"], ["created_at", "2020-05-05 18:42:53.639153"], ["updated_at", "2020-05-05 18:42:53.639153"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Douglass Champlin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$h1DzJMttpp3NHgxRDt0XLeUM./97MAik9VVPCNkezx3lNKFsyZ/8a"], ["created_at", "2020-05-05 18:42:53.642739"], ["updated_at", "2020-05-05 18:42:53.642739"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Colton Johns"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3TzJCoprMzMbSul72ZiHYOvmZqENYTnHzGeUqJdUGANGqT2JIYcDO"], ["created_at", "2020-05-05 18:42:53.645605"], ["updated_at", "2020-05-05 18:42:53.645605"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Paul Kilback"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hw/Lb1r1CNSEkImOfNuZn.Hgi2Sd3ijkttCSq5T60fBXs5uww1Xfu"], ["created_at", "2020-05-05 18:42:53.648079"], ["updated_at", "2020-05-05 18:42:53.648079"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Aracelis Langosh"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$iBcuphGcTM6DhW9/H9lnLeePQ5Kpd/LCKDKqzwTv5Xe7um4Gg41.G"], ["created_at", "2020-05-05 18:42:53.650613"], ["updated_at", "2020-05-05 18:42:53.650613"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.14ms) +Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rex Bernier"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$c6LAcyu/5eX8h/s14MQOv.OpLddCWsFJmvzr4CBfRXBSAaAY7mJGa"], ["created_at", "2020-05-05 18:42:53.671298"], ["updated_at", "2020-05-05 18:42:53.671298"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Tuan Altenwerth"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SvJL081gI.a0w8mHMQDHKOdSRWYzzBsgqUuS.fDKKpwm1ESZVC2kC"], ["created_at", "2020-05-05 18:42:53.675480"], ["updated_at", "2020-05-05 18:42:53.675480"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cristopher Kunde"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rVPUgtbpnCEuj5bpHS5HsO5gtmHWW07z1PvRgC2Kl2xmIGEoxE9kW"], ["created_at", "2020-05-05 18:42:53.680073"], ["updated_at", "2020-05-05 18:42:53.680073"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Terica Howell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gnG79J6kTwTqxTzXMK/cZe9twYok476z.qjflHFVEgf2hpycvaOjS"], ["created_at", "2020-05-05 18:42:53.683436"], ["updated_at", "2020-05-05 18:42:53.683436"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Allyn Ferry"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YUtIpW27tDDe1Nz30gGBQuawjP024ohrv9KUdnlhUJp8X04JwU.Om"], ["created_at", "2020-05-05 18:42:53.686088"], ["updated_at", "2020-05-05 18:42:53.686088"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Delana Predovic"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tEM5CNFV2/mOH3YVNWfMsOYCFUWhVny0NDAU272g7TeMUfZ3Fi6gC"], ["created_at", "2020-05-05 18:42:53.688551"], ["updated_at", "2020-05-05 18:42:53.688551"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Stacee Reinger"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.MiOuSJDw5R1a4hLJlLu7uRHJdcXGsiENArvOYe.Qq66W7aW5UVgO"], ["created_at", "2020-05-05 18:42:53.690946"], ["updated_at", "2020-05-05 18:42:53.690946"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Oralia Howell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$eIh2oKB5qdCednmq9XSw.eQK67RenHsXLRkhkjZoPSYLDDl0YjnKC"], ["created_at", "2020-05-05 18:42:53.707564"], ["updated_at", "2020-05-05 18:42:53.707564"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Justin Langworth"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qDck7ZeNk7YBNfLfLi9JDeKxHbYqzgrcza6t4OsiZr1eWxhALLT.W"], ["created_at", "2020-05-05 18:42:53.711275"], ["updated_at", "2020-05-05 18:42:53.711275"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lacresha Beatty IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$eD9dI.nreqfWsEvXRCf5m.Q0jq4NxYc/LGWquk1XWirtSym1Eq1U."], ["created_at", "2020-05-05 18:42:53.714098"], ["updated_at", "2020-05-05 18:42:53.714098"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.72ms) +Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Sheyla", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "email"=>"shey@mail.com"} +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sheyla"], ["email", "shey@mail.com"], ["password_digest", "$2a$04$7QZTjv1e4AK3kV6Llt4ewOgECeLI3OUk2UTKiNHk1VUl8Cb2lFCni"], ["created_at", "2020-05-05 18:42:53.724679"], ["updated_at", "2020-05-05 18:42:53.724679"], ["picture", "https://joeschmoe.io/api/v1/jean"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.64ms) +Completed 201 Created in 10ms (Views: 1.1ms | ActiveRecord: 0.5ms | Allocations: 1715) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ophelia Towne"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Es0kDwBICG7etSPSAp4aQuWJ9iV47tE9nEPtHFoYyH66D0zatmb7S"], ["created_at", "2020-05-05 18:42:53.744445"], ["updated_at", "2020-05-05 18:42:53.744445"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Liane Armstrong"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$277TNCQQBvNz5VG7No82BO2y7BcaW5Ik8heJxxSam3/8K9rmdrWfq"], ["created_at", "2020-05-05 18:42:53.748592"], ["updated_at", "2020-05-05 18:42:53.748592"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Yaeko MacGyver"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2mtZmYEctbZsaLf06eXqzu3HsmrDgcOhGFxaWvMlDQotFz3h4YVh2"], ["created_at", "2020-05-05 18:42:53.751444"], ["updated_at", "2020-05-05 18:42:53.751444"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Contessa Crooks"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8//IKo6gFt.BTtoDFcFELu0kKcr3FKD3ytCvEMotr94qR3crQUeEe"], ["created_at", "2020-05-05 18:42:53.753975"], ["updated_at", "2020-05-05 18:42:53.753975"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Joleen Dietrich Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XsoSP3IiTIkb43nUq4WBlellYKc2enAg.g7kOD9.8cEr4H9tIkKAi"], ["created_at", "2020-05-05 18:42:53.756888"], ["updated_at", "2020-05-05 18:42:53.756888"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lenny Shields"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jVOTb1zXYsSWm.lo44x9JOHWL8rXYWQ.0TgrCishSObuYEyZtSlee"], ["created_at", "2020-05-05 18:42:53.760701"], ["updated_at", "2020-05-05 18:42:53.760701"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Jennine Cassin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DF8eL6YNdnOMdp2.tqTCEelBydpdS5js11Wlk5uBmGrSky7raTfJq"], ["created_at", "2020-05-05 18:42:53.763772"], ["updated_at", "2020-05-05 18:42:53.763772"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kerry McGlynn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RpDx0YzH51VNi17SFACFT.I.wwHB32iOhYtJDdImUh0.Pbw9QG21O"], ["created_at", "2020-05-05 18:42:53.766218"], ["updated_at", "2020-05-05 18:42:53.766218"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Abraham Braun Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GoeV6HX.t77PMabae/cFuueQ4hfKN2R0pI3L2ok3QYDfSPMCK3eyO"], ["created_at", "2020-05-05 18:42:53.768669"], ["updated_at", "2020-05-05 18:42:53.768669"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Stephany Kulas"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RGDkFnZHIpIFEQlf7zxdyeezxUXNFC.iAGQwLDHkLpqNGDJU83E76"], ["created_at", "2020-05-05 18:42:53.771142"], ["updated_at", "2020-05-05 18:42:53.771142"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.84ms) +Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Sheyla", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "email"=>"shey@mail.com"} +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sheyla"], ["email", "shey@mail.com"], ["password_digest", "$2a$04$ewAVFf8KqQ4hQvKmiwV/funL2sAX3EEh3cllfd8lrMwmiRmyihfvC"], ["created_at", "2020-05-05 18:42:53.781955"], ["updated_at", "2020-05-05 18:42:53.781955"], ["picture", "https://joeschmoe.io/api/v1/jaqueline"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.38ms) +Completed 201 Created in 6ms (Views: 0.7ms | ActiveRecord: 0.3ms | Allocations: 1326) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (23.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tyler Aufderhar"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qbGt6rdw/ND0WmzWgvZtVedlrdTp9.nufYWrKnFkchZMjFA7DngEO"], ["created_at", "2020-05-05 18:42:53.814412"], ["updated_at", "2020-05-05 18:42:53.814412"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jannette Lang"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vcpEp3Gd6.vNzQQ1q.s8K.TmUoh2qCGxCi5Jep4rFT3CTQraeuNqC"], ["created_at", "2020-05-05 18:42:53.818890"], ["updated_at", "2020-05-05 18:42:53.818890"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Man Sipes"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4ucEuCc32.PwIFs6oTytSOA.1H.4rnBEOEOgLnG/MJ10uS7Ug9aXK"], ["created_at", "2020-05-05 18:42:53.822463"], ["updated_at", "2020-05-05 18:42:53.822463"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Peter Nikolaus"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Xil49JLl6hvgieehZt7rke06h6bnx41Sj9jIt0h3A4NGrU/SklBou"], ["created_at", "2020-05-05 18:42:53.825085"], ["updated_at", "2020-05-05 18:42:53.825085"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Breanne Wehner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$h4Hr3fLZz2IjaS2rUz4t1OpkEzTKXLCa4ORMDzKHqPZkA/3rxLT36"], ["created_at", "2020-05-05 18:42:53.828211"], ["updated_at", "2020-05-05 18:42:53.828211"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rob Simonis"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LALqx/SD5MxKHO0uwj1JUOYWhbzOGSuyKvmzO2iWAW3vLl7yot676"], ["created_at", "2020-05-05 18:42:53.830758"], ["updated_at", "2020-05-05 18:42:53.830758"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miguel Fisher"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pe2/dvQmfUlJgiG351YaAuxW1p9WbO3DMmhfebq7.8.wtJY/rMpZ."], ["created_at", "2020-05-05 18:42:53.833274"], ["updated_at", "2020-05-05 18:42:53.833274"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Codi Orn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LhRp9vLGSzF4luH8C7Lzhuf6oiD92876KUifhGlm0G/4LElqIUPdO"], ["created_at", "2020-05-05 18:42:53.835791"], ["updated_at", "2020-05-05 18:42:53.835791"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Cedric Dietrich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Ata5BJ9ryAZ8ZhIQhCww/O67vmkR38QmokfyGmGWE2TX6Th9.U1qq"], ["created_at", "2020-05-05 18:42:53.838843"], ["updated_at", "2020-05-05 18:42:53.838843"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Brant Fadel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$izDqFwMwJjzJVGyJ8UhT2ujhXlFPzUrZPwLQl5kZWvpo/tbMlkvxe"], ["created_at", "2020-05-05 18:42:53.842196"], ["updated_at", "2020-05-05 18:42:53.842196"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.58ms) +Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Foobar"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms) +Completed 401 Unauthorized in 3ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 1817) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (20.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alphonso Auer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tsv7EIAZ4uK89UsRsCWuc.ItkE6j5gfMAeS6iU/Mb4SkUpjd7L40a"], ["created_at", "2020-05-05 18:42:53.878814"], ["updated_at", "2020-05-05 18:42:53.878814"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kathie Koss"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4evDL2LwhAfljthPGKcY8.eBS5/aYhktGYUntDejmVj6ZFWtf6UGa"], ["created_at", "2020-05-05 18:42:53.883682"], ["updated_at", "2020-05-05 18:42:53.883682"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Eusebio Hansen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dZj5sgtGW73kk9M8AN.cce5V5cERr2b41537X9aDDbCV6NfCZ4zVa"], ["created_at", "2020-05-05 18:42:53.886624"], ["updated_at", "2020-05-05 18:42:53.886624"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rosemarie Schroeder Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$PZiaqZ63Eb2EGVusltIy2eWIGx6/o3sp3IcXeNXx6WOmNI.Wa/KhO"], ["created_at", "2020-05-05 18:42:53.889227"], ["updated_at", "2020-05-05 18:42:53.889227"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Edra Cruickshank"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/arKIT6yPzxc8QFGIORYF.j5bqQt2GkZ5dFGWfOQPQyGSHsDUvCoK"], ["created_at", "2020-05-05 18:42:53.891808"], ["updated_at", "2020-05-05 18:42:53.891808"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gladis Yost"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$MhtdqFaxfXGoYxiAA6VfKOq8cOnMS3rCxe4LiKIk19.d4z6xPuPgy"], ["created_at", "2020-05-05 18:42:53.894967"], ["updated_at", "2020-05-05 18:42:53.894967"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Deadra Powlowski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kZclSjxF9HAZkUDHg9clo.S3vZQ.JptC54ZGG/sNCdmcoGMB/jtU6"], ["created_at", "2020-05-05 18:42:53.898283"], ["updated_at", "2020-05-05 18:42:53.898283"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shane Crona"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JcgjmQ1b6aaoeKc2N0iW0.DMmyXpkLFU90lq2h3VMwf7fKwKz/d5y"], ["created_at", "2020-05-05 18:42:53.901637"], ["updated_at", "2020-05-05 18:42:53.901637"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Silva Beier MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$eBMCuKpLet7V9GpCVVw2z.iUW4/hZh3l39rHGdwXOKpRTHv5b4YgK"], ["created_at", "2020-05-05 18:42:53.904742"], ["updated_at", "2020-05-05 18:42:53.904742"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Reagan Schumm"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$bvoTiTtczRMcnxQCV8HLHu2zGs5CklfsZW3A7KzMIZQ37g2I82a5q"], ["created_at", "2020-05-05 18:42:53.907896"], ["updated_at", "2020-05-05 18:42:53.907896"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.08ms) +Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:42:53 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 401 Unauthorized in 3ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 1597) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (4.9ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys +  (0.1ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (115.7ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (108.6ms) DELETE FROM "user_meets"; +  (1.2ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (110.8ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (96.7ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (130.7ms) DELETE FROM "conversations"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (79.6ms) DELETE FROM "messagems"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (74.0ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.2ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ardella Lockman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3smncK.MXGveUQ9do5WazOdL3gRlOh0v8JDCB45v9m7WucyyrJWc."], ["created_at", "2020-05-05 18:44:10.928750"], ["updated_at", "2020-05-05 18:44:10.928750"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Quo qui dignissimos pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:10.947389"], ["updated_at", "2020-05-05 18:44:10.947389"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus facilis quas ut?"], ["description", "Eveniet qui et ut."], ["date", "2020-05-06 18:44:10.971689"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:10.999754"], ["updated_at", "2020-05-05 18:44:10.999754"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos voluptates accusamus consequatur?"], ["description", "Nisi ullam aut quibusdam."], ["date", "2020-05-06 18:44:11.002020"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.003022"], ["updated_at", "2020-05-05 18:44:11.003022"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut deserunt ut impedit?"], ["description", "Delectus iure eligendi ipsa."], ["date", "2020-05-06 18:44:11.004598"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.005460"], ["updated_at", "2020-05-05 18:44:11.005460"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et repellendus enim aliquam?"], ["description", "Consequuntur qui ea eos."], ["date", "2020-05-06 18:44:11.006587"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.007334"], ["updated_at", "2020-05-05 18:44:11.007334"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad tempora velit fugiat?"], ["description", "Libero illo aut perspiciatis."], ["date", "2020-05-06 18:44:11.008405"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.009655"], ["updated_at", "2020-05-05 18:44:11.009655"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo eos eligendi accusantium?"], ["description", "Et rem quam praesentium."], ["date", "2020-05-06 18:44:11.011092"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.011912"], ["updated_at", "2020-05-05 18:44:11.011912"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Adipisci eum neque aliquam?"], ["description", "Et eum consequuntur est."], ["date", "2020-05-06 18:44:11.013349"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.014196"], ["updated_at", "2020-05-05 18:44:11.014196"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est omnis laboriosam eius?"], ["description", "Quasi nihil dicta omnis."], ["date", "2020-05-06 18:44:11.015879"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.017193"], ["updated_at", "2020-05-05 18:44:11.017193"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit id qui repellendus?"], ["description", "Qui non eveniet omnis."], ["date", "2020-05-06 18:44:11.019004"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.019890"], ["updated_at", "2020-05-05 18:44:11.019890"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia fugiat et voluptas?"], ["description", "Laboriosam et eius deserunt."], ["date", "2020-05-06 18:44:11.021969"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.022979"], ["updated_at", "2020-05-05 18:44:11.022979"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil quidem commodi expedita?"], ["description", "Voluptatem dicta a hic."], ["date", "2020-05-06 18:44:11.024934"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.026516"], ["updated_at", "2020-05-05 18:44:11.026516"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam suscipit debitis autem?"], ["description", "Similique temporibus sed et."], ["date", "2020-05-06 18:44:11.028099"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.028886"], ["updated_at", "2020-05-05 18:44:11.028886"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero reprehenderit voluptate eos?"], ["description", "Vel ipsam beatae accusantium."], ["date", "2020-05-06 18:44:11.029970"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.030675"], ["updated_at", "2020-05-05 18:44:11.030675"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur mollitia fuga impedit?"], ["description", "Rerum ullam atque nam."], ["date", "2020-05-06 18:44:11.031768"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.032461"], ["updated_at", "2020-05-05 18:44:11.032461"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam amet veritatis soluta?"], ["description", "Nihil aut sunt rerum."], ["date", "2020-05-06 18:44:11.033676"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.034483"], ["updated_at", "2020-05-05 18:44:11.034483"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore tempore harum possimus?"], ["description", "Et et eius repellendus."], ["date", "2020-05-06 18:44:11.035971"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.037418"], ["updated_at", "2020-05-05 18:44:11.037418"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora tenetur veritatis maxime?"], ["description", "Et fugit quibusdam qui."], ["date", "2020-05-06 18:44:11.039002"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.039847"], ["updated_at", "2020-05-05 18:44:11.039847"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim labore assumenda est?"], ["description", "Vitae et aliquam necessitatibus."], ["date", "2020-05-06 18:44:11.041118"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.042385"], ["updated_at", "2020-05-05 18:44:11.042385"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem dolorum sed et?"], ["description", "Harum qui sunt libero."], ["date", "2020-05-06 18:44:11.044077"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.044996"], ["updated_at", "2020-05-05 18:44:11.044996"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident inventore qui rerum?"], ["description", "Velit odio eos numquam."], ["date", "2020-05-06 18:44:11.046228"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.046910"], ["updated_at", "2020-05-05 18:44:11.046910"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:44:11 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (7.69ms) +Completed 200 OK in 37ms (Views: 15.9ms | ActiveRecord: 0.5ms | Allocations: 8641) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Alex Mitchell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Vwl5vGMVLGQhlZPDq4L9yOtW.w2BTjPcrsjK3GaABK..M1uBUuzsy"], ["created_at", "2020-05-05 18:44:11.135691"], ["updated_at", "2020-05-05 18:44:11.135691"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dignissimos"], ["description", "Et aspernatur ut quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:11.140402"], ["updated_at", "2020-05-05 18:44:11.140402"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos dolores repellat odio?"], ["description", "Sequi omnis omnis laboriosam."], ["date", "2020-05-06 18:44:11.143128"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.144376"], ["updated_at", "2020-05-05 18:44:11.144376"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui nihil nesciunt id?"], ["description", "Velit quia earum et."], ["date", "2020-05-06 18:44:11.146523"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.147724"], ["updated_at", "2020-05-05 18:44:11.147724"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit dicta dolor ullam?"], ["description", "Asperiores voluptate voluptatem sed."], ["date", "2020-05-06 18:44:11.149214"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.149940"], ["updated_at", "2020-05-05 18:44:11.149940"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium a aut sit?"], ["description", "Tempore quam ea numquam."], ["date", "2020-05-06 18:44:11.151120"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.151845"], ["updated_at", "2020-05-05 18:44:11.151845"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat consequatur delectus sit?"], ["description", "Veritatis qui consequuntur inventore."], ["date", "2020-05-06 18:44:11.153201"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.154016"], ["updated_at", "2020-05-05 18:44:11.154016"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non ut eum voluptate?"], ["description", "Molestiae provident qui et."], ["date", "2020-05-06 18:44:11.155275"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.156432"], ["updated_at", "2020-05-05 18:44:11.156432"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur voluptas accusantium voluptatem?"], ["description", "Et ad ipsam et."], ["date", "2020-05-06 18:44:11.158853"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.160522"], ["updated_at", "2020-05-05 18:44:11.160522"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda ducimus quod ut?"], ["description", "Quia laborum at dolores."], ["date", "2020-05-06 18:44:11.161983"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.162793"], ["updated_at", "2020-05-05 18:44:11.162793"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam sed voluptatem soluta?"], ["description", "Vitae nemo voluptate qui."], ["date", "2020-05-06 18:44:11.164346"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.165189"], ["updated_at", "2020-05-05 18:44:11.165189"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et pariatur sint iure?"], ["description", "Ut odio aut vero."], ["date", "2020-05-06 18:44:11.167218"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.168046"], ["updated_at", "2020-05-05 18:44:11.168046"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum voluptas et quidem?"], ["description", "Ut nemo magni placeat."], ["date", "2020-05-06 18:44:11.169341"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.170179"], ["updated_at", "2020-05-05 18:44:11.170179"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est odit et voluptates?"], ["description", "Sapiente fugiat rerum labore."], ["date", "2020-05-06 18:44:11.171321"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.172012"], ["updated_at", "2020-05-05 18:44:11.172012"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet est explicabo id?"], ["description", "Rerum accusamus rem eaque."], ["date", "2020-05-06 18:44:11.173135"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.173889"], ["updated_at", "2020-05-05 18:44:11.173889"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur non tempora iusto?"], ["description", "Nobis nihil soluta hic."], ["date", "2020-05-06 18:44:11.175147"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.176816"], ["updated_at", "2020-05-05 18:44:11.176816"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione hic sit exercitationem?"], ["description", "Nesciunt eligendi quidem unde."], ["date", "2020-05-06 18:44:11.179082"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.180130"], ["updated_at", "2020-05-05 18:44:11.180130"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut corrupti fugit accusamus?"], ["description", "Corrupti quis sint consectetur."], ["date", "2020-05-06 18:44:11.181354"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.182089"], ["updated_at", "2020-05-05 18:44:11.182089"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum sed velit tempora?"], ["description", "At dolorem omnis recusandae."], ["date", "2020-05-06 18:44:11.183372"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.184297"], ["updated_at", "2020-05-05 18:44:11.184297"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus aut quis sint?"], ["description", "Earum harum rerum adipisci."], ["date", "2020-05-06 18:44:11.185638"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.186504"], ["updated_at", "2020-05-05 18:44:11.186504"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius et perferendis veniam?"], ["description", "Placeat consectetur voluptatum quia."], ["date", "2020-05-06 18:44:11.187886"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.188637"], ["updated_at", "2020-05-05 18:44:11.188637"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo consequuntur quae adipisci?"], ["description", "Animi aut qui nam."], ["date", "2020-05-06 18:44:11.189755"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.190527"], ["updated_at", "2020-05-05 18:44:11.190527"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:44:11 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.1ms) +Completed 200 OK in 12ms (Views: 9.9ms | ActiveRecord: 0.3ms | Allocations: 5514) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gregory Flatley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$psDFqs2EJ5vX3G4MexVxROJAGMGhd7JTcSqz7TihK2PLqSvrlq4/S"], ["created_at", "2020-05-05 18:44:11.220459"], ["updated_at", "2020-05-05 18:44:11.220459"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nemo"], ["description", "Est quos occaecati quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:11.224202"], ["updated_at", "2020-05-05 18:44:11.224202"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut itaque vitae voluptatem?"], ["description", "Molestias distinctio ipsa ut."], ["date", "2020-05-06 18:44:11.226653"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.227810"], ["updated_at", "2020-05-05 18:44:11.227810"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab eum iste nulla?"], ["description", "Dolorem rerum et cum."], ["date", "2020-05-06 18:44:11.229556"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.230369"], ["updated_at", "2020-05-05 18:44:11.230369"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus quaerat tempore enim?"], ["description", "Fugit ut ut qui."], ["date", "2020-05-06 18:44:11.231538"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.232258"], ["updated_at", "2020-05-05 18:44:11.232258"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis in quis est?"], ["description", "Animi dolorem nam illum."], ["date", "2020-05-06 18:44:11.233398"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.234277"], ["updated_at", "2020-05-05 18:44:11.234277"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint culpa fuga earum?"], ["description", "Corporis qui aliquid repudiandae."], ["date", "2020-05-06 18:44:11.235613"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.237033"], ["updated_at", "2020-05-05 18:44:11.237033"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam facilis quia at?"], ["description", "Sequi repellendus dolorum omnis."], ["date", "2020-05-06 18:44:11.239415"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.241054"], ["updated_at", "2020-05-05 18:44:11.241054"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Unde sit ea qui?"], ["description", "Voluptatibus id sed vero."], ["date", "2020-05-06 18:44:11.242964"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.244407"], ["updated_at", "2020-05-05 18:44:11.244407"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt nulla nobis illum?"], ["description", "Iste corporis alias accusamus."], ["date", "2020-05-06 18:44:11.245803"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.246618"], ["updated_at", "2020-05-05 18:44:11.246618"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed est a voluptatem?"], ["description", "Ea ea deserunt itaque."], ["date", "2020-05-06 18:44:11.247770"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.267061"], ["updated_at", "2020-05-05 18:44:11.267061"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est a hic est?"], ["description", "Tempora ea facilis dolorum."], ["date", "2020-05-06 18:44:11.269317"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.270260"], ["updated_at", "2020-05-05 18:44:11.270260"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel excepturi quam cumque?"], ["description", "Aliquam aut dolore nam."], ["date", "2020-05-06 18:44:11.271689"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.272464"], ["updated_at", "2020-05-05 18:44:11.272464"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur suscipit eaque tempora?"], ["description", "Vel recusandae sunt quia."], ["date", "2020-05-06 18:44:11.273658"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.274393"], ["updated_at", "2020-05-05 18:44:11.274393"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est at est reiciendis?"], ["description", "A perferendis velit quibusdam."], ["date", "2020-05-06 18:44:11.275966"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.277468"], ["updated_at", "2020-05-05 18:44:11.277468"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui sed et a?"], ["description", "Dolores quidem sint quaerat."], ["date", "2020-05-06 18:44:11.279342"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.280282"], ["updated_at", "2020-05-05 18:44:11.280282"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea exercitationem et neque?"], ["description", "Numquam in beatae debitis."], ["date", "2020-05-06 18:44:11.281541"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.282294"], ["updated_at", "2020-05-05 18:44:11.282294"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga qui incidunt odio?"], ["description", "Ipsa fugit nam inventore."], ["date", "2020-05-06 18:44:11.283468"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.284260"], ["updated_at", "2020-05-05 18:44:11.284260"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit in dolorem explicabo?"], ["description", "Rerum vel omnis molestiae."], ["date", "2020-05-06 18:44:11.285544"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.286382"], ["updated_at", "2020-05-05 18:44:11.286382"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Delectus laboriosam neque officia?"], ["description", "Totam ratione suscipit tempora."], ["date", "2020-05-06 18:44:11.287721"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.288452"], ["updated_at", "2020-05-05 18:44:11.288452"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla voluptatum et voluptatem?"], ["description", "Vel minima eos officiis."], ["date", "2020-05-06 18:44:11.289600"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.290303"], ["updated_at", "2020-05-05 18:44:11.290303"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas dolorem perspiciatis debitis?"], ["description", "Illo culpa hic harum."], ["date", "2020-05-06 18:44:11.291435"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.292175"], ["updated_at", "2020-05-05 18:44:11.292175"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:44:11 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 404 Not Found in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms | Allocations: 866) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sterling Wolf"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$D6NK29A9LpLXrUja6D9i7eYTY47ztoHn4zYf6zVH17WGKrY07qwtO"], ["created_at", "2020-05-05 18:44:11.312325"], ["updated_at", "2020-05-05 18:44:11.312325"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "similique"], ["description", "Quia sed mollitia sequi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:11.316409"], ["updated_at", "2020-05-05 18:44:11.316409"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim quo aut cupiditate?"], ["description", "Iure illum cumque hic."], ["date", "2020-05-06 18:44:11.318669"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.319855"], ["updated_at", "2020-05-05 18:44:11.319855"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum et quisquam et?"], ["description", "Distinctio rem voluptates esse."], ["date", "2020-05-06 18:44:11.321640"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.322747"], ["updated_at", "2020-05-05 18:44:11.322747"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta veritatis optio beatae?"], ["description", "Fugiat nihil dolorem quidem."], ["date", "2020-05-06 18:44:11.324769"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.325935"], ["updated_at", "2020-05-05 18:44:11.325935"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui qui aut ipsum?"], ["description", "Sunt qui natus quia."], ["date", "2020-05-06 18:44:11.327606"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.328478"], ["updated_at", "2020-05-05 18:44:11.328478"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis magnam possimus aspernatur?"], ["description", "Unde est quos odio."], ["date", "2020-05-06 18:44:11.329614"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.330381"], ["updated_at", "2020-05-05 18:44:11.330381"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel autem officia blanditiis?"], ["description", "Nesciunt temporibus totam quidem."], ["date", "2020-05-06 18:44:11.331426"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.332162"], ["updated_at", "2020-05-05 18:44:11.332162"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut nihil ut deleniti?"], ["description", "Praesentium beatae nemo nihil."], ["date", "2020-05-06 18:44:11.333253"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.334049"], ["updated_at", "2020-05-05 18:44:11.334049"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni aut fugit aut?"], ["description", "Minus possimus magni libero."], ["date", "2020-05-06 18:44:11.335273"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.335979"], ["updated_at", "2020-05-05 18:44:11.335979"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur eum neque veritatis?"], ["description", "Consequatur beatae soluta sint."], ["date", "2020-05-06 18:44:11.337244"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.338481"], ["updated_at", "2020-05-05 18:44:11.338481"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero et quod dolores?"], ["description", "Sed placeat velit hic."], ["date", "2020-05-06 18:44:11.340543"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.341441"], ["updated_at", "2020-05-05 18:44:11.341441"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non harum eligendi nemo?"], ["description", "Qui dolorem inventore occaecati."], ["date", "2020-05-06 18:44:11.342988"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.344271"], ["updated_at", "2020-05-05 18:44:11.344271"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam qui repellat eveniet?"], ["description", "Sunt dolor maiores commodi."], ["date", "2020-05-06 18:44:11.345707"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.346487"], ["updated_at", "2020-05-05 18:44:11.346487"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui delectus libero sed?"], ["description", "Neque ut dolore iure."], ["date", "2020-05-06 18:44:11.347658"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.348372"], ["updated_at", "2020-05-05 18:44:11.348372"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum esse dolorem et?"], ["description", "Enim quam maxime soluta."], ["date", "2020-05-06 18:44:11.349512"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.350179"], ["updated_at", "2020-05-05 18:44:11.350179"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias harum earum deserunt?"], ["description", "Similique nihil ut aut."], ["date", "2020-05-06 18:44:11.351285"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.351991"], ["updated_at", "2020-05-05 18:44:11.351991"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Hic ipsam quia voluptas?"], ["description", "Repellendus culpa eos libero."], ["date", "2020-05-06 18:44:11.353238"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.354017"], ["updated_at", "2020-05-05 18:44:11.354017"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus modi et nesciunt?"], ["description", "Optio quas sed et."], ["date", "2020-05-06 18:44:11.355325"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.356046"], ["updated_at", "2020-05-05 18:44:11.356046"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur suscipit blanditiis sed?"], ["description", "Reprehenderit corporis molestiae aut."], ["date", "2020-05-06 18:44:11.357346"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.359195"], ["updated_at", "2020-05-05 18:44:11.359195"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat ut et tempora?"], ["description", "Fugit aliquam accusantium dignissimos."], ["date", "2020-05-06 18:44:11.361059"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.361968"], ["updated_at", "2020-05-05 18:44:11.361968"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem et quis a?"], ["description", "Voluptas qui quia rerum."], ["date", "2020-05-06 18:44:11.363235"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.363994"], ["updated_at", "2020-05-05 18:44:11.363994"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:44:11 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (45.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Violet Mann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3Snqc1dMqrpxLn2hSiaGcetpWtBW233iGHHnfYkMJSUpG6GlOT8nK"], ["created_at", "2020-05-05 18:44:11.422012"], ["updated_at", "2020-05-05 18:44:11.422012"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sequi"], ["description", "Nobis omnis quia ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:11.426079"], ["updated_at", "2020-05-05 18:44:11.426079"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea veritatis pariatur repudiandae?"], ["description", "Ut sapiente culpa dolores."], ["date", "2020-05-06 18:44:11.428476"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.429538"], ["updated_at", "2020-05-05 18:44:11.429538"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo repellat veritatis voluptatem?"], ["description", "Cupiditate occaecati accusamus nisi."], ["date", "2020-05-06 18:44:11.431106"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.431827"], ["updated_at", "2020-05-05 18:44:11.431827"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam qui omnis asperiores?"], ["description", "Quae hic quaerat sit."], ["date", "2020-05-06 18:44:11.433171"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.433965"], ["updated_at", "2020-05-05 18:44:11.433965"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt ut illo vel?"], ["description", "Qui officiis autem hic."], ["date", "2020-05-06 18:44:11.435393"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.436125"], ["updated_at", "2020-05-05 18:44:11.436125"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore nobis ullam sed?"], ["description", "Rerum quis laborum dolorum."], ["date", "2020-05-06 18:44:11.437448"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.438614"], ["updated_at", "2020-05-05 18:44:11.438614"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum occaecati nisi est?"], ["description", "Molestias vel blanditiis labore."], ["date", "2020-05-06 18:44:11.440679"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.442269"], ["updated_at", "2020-05-05 18:44:11.442269"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab iste labore voluptates?"], ["description", "Maxime perferendis veniam nihil."], ["date", "2020-05-06 18:44:11.444248"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.445187"], ["updated_at", "2020-05-05 18:44:11.445187"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur dignissimos soluta rerum?"], ["description", "Dolorum sequi repellat sunt."], ["date", "2020-05-06 18:44:11.446409"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.447106"], ["updated_at", "2020-05-05 18:44:11.447106"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos voluptatem occaecati inventore?"], ["description", "Sit perferendis doloremque suscipit."], ["date", "2020-05-06 18:44:11.448245"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.448931"], ["updated_at", "2020-05-05 18:44:11.448931"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus quo non molestiae?"], ["description", "Excepturi fuga quibusdam deleniti."], ["date", "2020-05-06 18:44:11.450991"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.451796"], ["updated_at", "2020-05-05 18:44:11.451796"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur velit rerum debitis?"], ["description", "Ut quo aliquid voluptates."], ["date", "2020-05-06 18:44:11.453174"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.453902"], ["updated_at", "2020-05-05 18:44:11.453902"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum fugit officiis consequatur?"], ["description", "Ea vero minima assumenda."], ["date", "2020-05-06 18:44:11.455235"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.455953"], ["updated_at", "2020-05-05 18:44:11.455953"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis ut eos debitis?"], ["description", "Quibusdam et suscipit facere."], ["date", "2020-05-06 18:44:11.457487"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.459462"], ["updated_at", "2020-05-05 18:44:11.459462"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia vel facilis eos?"], ["description", "Voluptas vel maiores magnam."], ["date", "2020-05-06 18:44:11.461366"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.462288"], ["updated_at", "2020-05-05 18:44:11.462288"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos totam hic voluptatem?"], ["description", "Beatae fuga dolore quasi."], ["date", "2020-05-06 18:44:11.463546"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.464475"], ["updated_at", "2020-05-05 18:44:11.464475"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro nisi soluta aut?"], ["description", "Sunt omnis eos non."], ["date", "2020-05-06 18:44:11.465718"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.466434"], ["updated_at", "2020-05-05 18:44:11.466434"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Adipisci aut sint qui?"], ["description", "Dolorem quod quam nisi."], ["date", "2020-05-06 18:44:11.467649"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.468466"], ["updated_at", "2020-05-05 18:44:11.468466"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequuntur tempore sed dignissimos?"], ["description", "Occaecati vero voluptatem omnis."], ["date", "2020-05-06 18:44:11.469778"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.470528"], ["updated_at", "2020-05-05 18:44:11.470528"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus ad exercitationem eveniet?"], ["description", "Deserunt cum occaecati voluptas."], ["date", "2020-05-06 18:44:11.471718"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.472457"], ["updated_at", "2020-05-05 18:44:11.472457"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut tenetur cupiditate illum?"], ["description", "Enim veritatis optio commodi."], ["date", "2020-05-06 18:44:11.473655"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.474571"], ["updated_at", "2020-05-05 18:44:11.474571"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:44:11 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.86ms) +Completed 200 OK in 4ms (Views: 1.3ms | ActiveRecord: 0.4ms | Allocations: 1086) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Trent Predovic Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jLPY9Xt80Yb7oNqNhaqHlONxxtNH.iImkR1DbzMGW2ILrE00y8LFS"], ["created_at", "2020-05-05 18:44:11.493344"], ["updated_at", "2020-05-05 18:44:11.493344"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Voluptate nihil eum nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:11.496415"], ["updated_at", "2020-05-05 18:44:11.496415"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque autem aspernatur soluta?"], ["description", "Aut quo sit ea."], ["date", "2020-05-06 18:44:11.498103"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.500206"], ["updated_at", "2020-05-05 18:44:11.500206"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui itaque quam nemo?"], ["description", "Ut voluptas voluptas eos."], ["date", "2020-05-06 18:44:11.502393"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.503360"], ["updated_at", "2020-05-05 18:44:11.503360"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi accusantium sunt aspernatur?"], ["description", "Molestiae et vel praesentium."], ["date", "2020-05-06 18:44:11.504782"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.505616"], ["updated_at", "2020-05-05 18:44:11.505616"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil rerum distinctio in?"], ["description", "Magnam vel et provident."], ["date", "2020-05-06 18:44:11.506842"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.507678"], ["updated_at", "2020-05-05 18:44:11.507678"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi est sapiente sint?"], ["description", "Minima magnam recusandae eius."], ["date", "2020-05-06 18:44:11.509501"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.510434"], ["updated_at", "2020-05-05 18:44:11.510434"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ducimus eos ipsa corporis?"], ["description", "Et assumenda nostrum corrupti."], ["date", "2020-05-06 18:44:11.511659"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.512369"], ["updated_at", "2020-05-05 18:44:11.512369"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et aut qui hic?"], ["description", "Animi maxime est exercitationem."], ["date", "2020-05-06 18:44:11.513520"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.514236"], ["updated_at", "2020-05-05 18:44:11.514236"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut eum et sed?"], ["description", "Consequatur rerum sunt veritatis."], ["date", "2020-05-06 18:44:11.515376"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.516070"], ["updated_at", "2020-05-05 18:44:11.516070"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint vel quaerat nam?"], ["description", "Fugiat ex qui sed."], ["date", "2020-05-06 18:44:11.517176"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.518016"], ["updated_at", "2020-05-05 18:44:11.518016"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias aperiam quae et?"], ["description", "Dolores aspernatur placeat modi."], ["date", "2020-05-06 18:44:11.521347"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.522546"], ["updated_at", "2020-05-05 18:44:11.522546"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga et est assumenda?"], ["description", "Quibusdam consequuntur distinctio inventore."], ["date", "2020-05-06 18:44:11.524040"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.525139"], ["updated_at", "2020-05-05 18:44:11.525139"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus voluptate dignissimos corporis?"], ["description", "Explicabo tempora occaecati pariatur."], ["date", "2020-05-06 18:44:11.526850"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.527729"], ["updated_at", "2020-05-05 18:44:11.527729"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum omnis pariatur deserunt?"], ["description", "Qui maiores minus blanditiis."], ["date", "2020-05-06 18:44:11.528908"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.529632"], ["updated_at", "2020-05-05 18:44:11.529632"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis aut ut commodi?"], ["description", "Consequatur in et reprehenderit."], ["date", "2020-05-06 18:44:11.530945"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.531676"], ["updated_at", "2020-05-05 18:44:11.531676"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis aperiam corporis perspiciatis?"], ["description", "Quia dolorem aut sed."], ["date", "2020-05-06 18:44:11.532855"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.533560"], ["updated_at", "2020-05-05 18:44:11.533560"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et laboriosam vero neque?"], ["description", "Non ut et impedit."], ["date", "2020-05-06 18:44:11.534891"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.535628"], ["updated_at", "2020-05-05 18:44:11.535628"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quibusdam omnis libero alias?"], ["description", "Aut aut et soluta."], ["date", "2020-05-06 18:44:11.536813"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.537634"], ["updated_at", "2020-05-05 18:44:11.537634"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit aspernatur magni deserunt?"], ["description", "Minus neque cumque optio."], ["date", "2020-05-06 18:44:11.539509"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.540747"], ["updated_at", "2020-05-05 18:44:11.540747"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia qui nostrum aut?"], ["description", "Perferendis sequi error aliquid."], ["date", "2020-05-06 18:44:11.542234"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.543644"], ["updated_at", "2020-05-05 18:44:11.543644"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur laudantium itaque sunt?"], ["description", "Consequatur eius sit corporis."], ["date", "2020-05-06 18:44:11.545211"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.546057"], ["updated_at", "2020-05-05 18:44:11.546057"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:44:11 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.64ms) +Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.2ms | Allocations: 1057) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Nguyet King"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RkuGaSs.5b.jT9bZzjYarOoLZtBweTGSIrU0xWPsIc4fuAJLX0gU6"], ["created_at", "2020-05-05 18:44:11.563666"], ["updated_at", "2020-05-05 18:44:11.563666"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "excepturi"], ["description", "Alias est in corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:11.566681"], ["updated_at", "2020-05-05 18:44:11.566681"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident similique est ab?"], ["description", "Nobis qui fuga odit."], ["date", "2020-05-06 18:44:11.568271"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.569199"], ["updated_at", "2020-05-05 18:44:11.569199"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem fugit temporibus est?"], ["description", "Ut totam quia vel."], ["date", "2020-05-06 18:44:11.570620"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.571438"], ["updated_at", "2020-05-05 18:44:11.571438"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos ab atque sapiente?"], ["description", "Qui est reiciendis amet."], ["date", "2020-05-06 18:44:11.572644"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.573369"], ["updated_at", "2020-05-05 18:44:11.573369"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat consectetur provident exercitationem?"], ["description", "Deserunt perferendis voluptatem occaecati."], ["date", "2020-05-06 18:44:11.574541"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.575302"], ["updated_at", "2020-05-05 18:44:11.575302"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus fuga quibusdam repellendus?"], ["description", "At corrupti autem aut."], ["date", "2020-05-06 18:44:11.576998"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.577935"], ["updated_at", "2020-05-05 18:44:11.577935"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut ea quia et?"], ["description", "Magnam ullam rerum voluptatum."], ["date", "2020-05-06 18:44:11.580412"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.581595"], ["updated_at", "2020-05-05 18:44:11.581595"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas voluptas ut dolores?"], ["description", "Est accusamus consequatur animi."], ["date", "2020-05-06 18:44:11.583618"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.584567"], ["updated_at", "2020-05-05 18:44:11.584567"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem non nemo tempora?"], ["description", "Eos aliquid cumque dicta."], ["date", "2020-05-06 18:44:11.585821"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.586543"], ["updated_at", "2020-05-05 18:44:11.586543"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit esse dolores ab?"], ["description", "Perferendis ratione dolores nihil."], ["date", "2020-05-06 18:44:11.587727"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.588455"], ["updated_at", "2020-05-05 18:44:11.588455"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque omnis architecto dolore?"], ["description", "Tempore saepe eum mollitia."], ["date", "2020-05-06 18:44:11.590348"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.591123"], ["updated_at", "2020-05-05 18:44:11.591123"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates architecto nostrum similique?"], ["description", "Voluptatum corporis minus eos."], ["date", "2020-05-06 18:44:11.592469"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.593868"], ["updated_at", "2020-05-05 18:44:11.593868"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae impedit natus laborum?"], ["description", "Id voluptatum est ab."], ["date", "2020-05-06 18:44:11.595318"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.596103"], ["updated_at", "2020-05-05 18:44:11.596103"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi et recusandae adipisci?"], ["description", "Illum modi soluta cupiditate."], ["date", "2020-05-06 18:44:11.597254"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.597972"], ["updated_at", "2020-05-05 18:44:11.597972"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus fugiat et est?"], ["description", "Est rem quibusdam error."], ["date", "2020-05-06 18:44:11.599589"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.600907"], ["updated_at", "2020-05-05 18:44:11.600907"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium aperiam rem cum?"], ["description", "Ut minima quo ea."], ["date", "2020-05-06 18:44:11.602435"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.603194"], ["updated_at", "2020-05-05 18:44:11.603194"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus quod nulla voluptatum?"], ["description", "Et consequatur cum sapiente."], ["date", "2020-05-06 18:44:11.604651"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.605482"], ["updated_at", "2020-05-05 18:44:11.605482"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat in fugit rem?"], ["description", "Non a consequatur ratione."], ["date", "2020-05-06 18:44:11.606684"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.607425"], ["updated_at", "2020-05-05 18:44:11.607425"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Delectus soluta aut et?"], ["description", "Laborum voluptas libero cumque."], ["date", "2020-05-06 18:44:11.609212"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.610123"], ["updated_at", "2020-05-05 18:44:11.610123"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam et dolores aperiam?"], ["description", "Veritatis magni aspernatur eius."], ["date", "2020-05-06 18:44:11.611346"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.612054"], ["updated_at", "2020-05-05 18:44:11.612054"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio et laboriosam velit?"], ["description", "Et vel nihil maiores."], ["date", "2020-05-06 18:44:11.613206"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.613900"], ["updated_at", "2020-05-05 18:44:11.613900"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:44:11 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 404 Not Found in 2ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 884) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Daron Purdy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5LqzG0Fagf796BmKpXFMJujEROVvaJKZ/iKnu/b3vynQkRnx4A8.6"], ["created_at", "2020-05-05 18:44:11.630796"], ["updated_at", "2020-05-05 18:44:11.630796"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Culpa neque ratione qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:11.633675"], ["updated_at", "2020-05-05 18:44:11.633675"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam tempore consectetur corporis?"], ["description", "Officia laborum est suscipit."], ["date", "2020-05-06 18:44:11.635192"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.636122"], ["updated_at", "2020-05-05 18:44:11.636122"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti at est ut?"], ["description", "Cupiditate ex aut veritatis."], ["date", "2020-05-06 18:44:11.637697"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.638548"], ["updated_at", "2020-05-05 18:44:11.638548"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil natus vel incidunt?"], ["description", "Ullam quas sapiente eum."], ["date", "2020-05-06 18:44:11.640879"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.643044"], ["updated_at", "2020-05-05 18:44:11.643044"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia perferendis sed magnam?"], ["description", "Et rerum ab et."], ["date", "2020-05-06 18:44:11.645091"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.646006"], ["updated_at", "2020-05-05 18:44:11.646006"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio dicta magni et?"], ["description", "Ut alias debitis ipsam."], ["date", "2020-05-06 18:44:11.647157"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.647899"], ["updated_at", "2020-05-05 18:44:11.647899"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam quasi eum sapiente?"], ["description", "At alias sint quae."], ["date", "2020-05-06 18:44:11.649169"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.649840"], ["updated_at", "2020-05-05 18:44:11.649840"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et aut est excepturi?"], ["description", "Reiciendis quia aspernatur temporibus."], ["date", "2020-05-06 18:44:11.650977"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.651685"], ["updated_at", "2020-05-05 18:44:11.651685"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit quibusdam sint qui?"], ["description", "Nihil corrupti molestiae sed."], ["date", "2020-05-06 18:44:11.652814"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.653537"], ["updated_at", "2020-05-05 18:44:11.653537"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga qui quisquam non?"], ["description", "Id et eos accusamus."], ["date", "2020-05-06 18:44:11.654812"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.655546"], ["updated_at", "2020-05-05 18:44:11.655546"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam nam ipsa non?"], ["description", "In voluptatem delectus magni."], ["date", "2020-05-06 18:44:11.657321"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.658428"], ["updated_at", "2020-05-05 18:44:11.658428"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt unde enim nesciunt?"], ["description", "Explicabo dolorum dignissimos repellat."], ["date", "2020-05-06 18:44:11.661687"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.663094"], ["updated_at", "2020-05-05 18:44:11.663094"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Hic minima dolorem impedit?"], ["description", "Voluptas non voluptatem rerum."], ["date", "2020-05-06 18:44:11.664868"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.665743"], ["updated_at", "2020-05-05 18:44:11.665743"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi in voluptate molestiae?"], ["description", "Laboriosam tenetur neque sunt."], ["date", "2020-05-06 18:44:11.667117"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.667871"], ["updated_at", "2020-05-05 18:44:11.667871"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio laudantium porro consectetur?"], ["description", "Asperiores repellat alias officiis."], ["date", "2020-05-06 18:44:11.669033"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.669756"], ["updated_at", "2020-05-05 18:44:11.669756"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non voluptas consequatur dignissimos?"], ["description", "Id doloribus et ut."], ["date", "2020-05-06 18:44:11.670944"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.671648"], ["updated_at", "2020-05-05 18:44:11.671648"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias ullam eos cumque?"], ["description", "Dolor blanditiis sequi assumenda."], ["date", "2020-05-06 18:44:11.672778"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.673505"], ["updated_at", "2020-05-05 18:44:11.673505"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae ratione eligendi voluptas?"], ["description", "Maiores quis et fugiat."], ["date", "2020-05-06 18:44:11.674792"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.675595"], ["updated_at", "2020-05-05 18:44:11.675595"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam assumenda repudiandae sit?"], ["description", "Aut quia quia temporibus."], ["date", "2020-05-06 18:44:11.677574"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.678695"], ["updated_at", "2020-05-05 18:44:11.678695"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur et at minus?"], ["description", "Et et sint quidem."], ["date", "2020-05-06 18:44:11.680668"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.681766"], ["updated_at", "2020-05-05 18:44:11.681766"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas animi praesentium ut?"], ["description", "Est eum ratione ut."], ["date", "2020-05-06 18:44:11.683292"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.684132"], ["updated_at", "2020-05-05 18:44:11.684132"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:44:11 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 867) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ardelle Schamberger"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$wtX/Ixf/FNUQsREzTtjQze6UczeRVwIpmARlFc1wmt16HrKfe392a"], ["created_at", "2020-05-05 18:44:11.700813"], ["updated_at", "2020-05-05 18:44:11.700813"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "Dolorum quae dolore ipsum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:11.704126"], ["updated_at", "2020-05-05 18:44:11.704126"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam et alias hic?"], ["description", "Provident et neque fugiat."], ["date", "2020-05-06 18:44:11.705856"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.706823"], ["updated_at", "2020-05-05 18:44:11.706823"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam ducimus omnis dicta?"], ["description", "Odio velit occaecati eos."], ["date", "2020-05-06 18:44:11.708461"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.709751"], ["updated_at", "2020-05-05 18:44:11.709751"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed illum reiciendis fugit?"], ["description", "Repudiandae quas tenetur unde."], ["date", "2020-05-06 18:44:11.711165"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.711894"], ["updated_at", "2020-05-05 18:44:11.711894"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur eos quod velit?"], ["description", "Similique qui omnis dolore."], ["date", "2020-05-06 18:44:11.713045"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.713810"], ["updated_at", "2020-05-05 18:44:11.713810"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum harum ab dolorum?"], ["description", "Et quia reiciendis ea."], ["date", "2020-05-06 18:44:11.715072"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.715834"], ["updated_at", "2020-05-05 18:44:11.715834"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae cumque numquam quia?"], ["description", "Ea placeat veritatis omnis."], ["date", "2020-05-06 18:44:11.716971"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.717773"], ["updated_at", "2020-05-05 18:44:11.717773"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe corporis cum occaecati?"], ["description", "Porro enim autem adipisci."], ["date", "2020-05-06 18:44:11.719027"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.720133"], ["updated_at", "2020-05-05 18:44:11.720133"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Possimus dolorem qui quas?"], ["description", "Molestiae ullam perspiciatis et."], ["date", "2020-05-06 18:44:11.722125"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.723606"], ["updated_at", "2020-05-05 18:44:11.723606"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem ut aliquam et?"], ["description", "Officia delectus dolor asperiores."], ["date", "2020-05-06 18:44:11.725415"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.726661"], ["updated_at", "2020-05-05 18:44:11.726661"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet et officia dolorem?"], ["description", "Excepturi numquam aut aliquam."], ["date", "2020-05-06 18:44:11.728702"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.729532"], ["updated_at", "2020-05-05 18:44:11.729532"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut officiis tempora dolorum?"], ["description", "Perferendis quaerat nihil explicabo."], ["date", "2020-05-06 18:44:11.731031"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.731800"], ["updated_at", "2020-05-05 18:44:11.731800"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel quia id quidem?"], ["description", "Quo quae velit aspernatur."], ["date", "2020-05-06 18:44:11.733250"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.733988"], ["updated_at", "2020-05-05 18:44:11.733988"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti voluptatem sunt non?"], ["description", "Deleniti molestias doloribus itaque."], ["date", "2020-05-06 18:44:11.735408"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.736182"], ["updated_at", "2020-05-05 18:44:11.736182"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem reprehenderit rem blanditiis?"], ["description", "Officia provident explicabo deserunt."], ["date", "2020-05-06 18:44:11.737566"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.738275"], ["updated_at", "2020-05-05 18:44:11.738275"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit corrupti culpa nulla?"], ["description", "Vitae tempora inventore assumenda."], ["date", "2020-05-06 18:44:11.739960"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.741411"], ["updated_at", "2020-05-05 18:44:11.741411"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Adipisci sint velit eligendi?"], ["description", "Labore qui fuga quam."], ["date", "2020-05-06 18:44:11.743059"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.744653"], ["updated_at", "2020-05-05 18:44:11.744653"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit veniam eligendi suscipit?"], ["description", "Aut asperiores error aut."], ["date", "2020-05-06 18:44:11.746169"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.747064"], ["updated_at", "2020-05-05 18:44:11.747064"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad autem quod dolore?"], ["description", "Odit ullam aspernatur quis."], ["date", "2020-05-06 18:44:11.748304"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.749022"], ["updated_at", "2020-05-05 18:44:11.749022"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et libero consequatur atque?"], ["description", "Omnis fugit enim architecto."], ["date", "2020-05-06 18:44:11.750205"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.750902"], ["updated_at", "2020-05-05 18:44:11.750902"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur laborum hic est?"], ["description", "Error ad et iusto."], ["date", "2020-05-06 18:44:11.752300"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.753062"], ["updated_at", "2020-05-05 18:44:11.753062"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:44:11 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"title"=>"Visit Narnia", "description"=>"false", "date"=>"2020-05-06 15:44:11 -0300", "link"=>"https://zoom.com/fakelink", "meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Visit Narnia"], ["description", "false"], ["date", "2020-05-06 18:44:11"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.773400"], ["updated_at", "2020-05-05 18:44:11.773400"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.8ms) +Completed 201 Created in 6ms (Views: 1.8ms | ActiveRecord: 0.4ms | Allocations: 1698) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Vinita Abbott"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SuJv6KpTWw6sm3pHdwUGoe2.UwKMmy19ztrZtdpWo21KU7xHg.tqK"], ["created_at", "2020-05-05 18:44:11.788384"], ["updated_at", "2020-05-05 18:44:11.788384"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Nihil aspernatur velit est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:11.791765"], ["updated_at", "2020-05-05 18:44:11.791765"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum harum sed esse?"], ["description", "Nam tempora quis sint."], ["date", "2020-05-06 18:44:11.794389"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.795487"], ["updated_at", "2020-05-05 18:44:11.795487"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor fuga corporis unde?"], ["description", "Libero sint culpa suscipit."], ["date", "2020-05-06 18:44:11.796919"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.797644"], ["updated_at", "2020-05-05 18:44:11.797644"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis amet consequatur qui?"], ["description", "Facilis voluptatem quo in."], ["date", "2020-05-06 18:44:11.798804"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.799529"], ["updated_at", "2020-05-05 18:44:11.799529"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit accusantium cum officiis?"], ["description", "Labore rerum et ea."], ["date", "2020-05-06 18:44:11.801638"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.802796"], ["updated_at", "2020-05-05 18:44:11.802796"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veniam sed est dignissimos?"], ["description", "Consectetur excepturi et non."], ["date", "2020-05-06 18:44:11.804730"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.805790"], ["updated_at", "2020-05-05 18:44:11.805790"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit sit ullam aut?"], ["description", "Architecto distinctio pariatur cumque."], ["date", "2020-05-06 18:44:11.807175"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.808141"], ["updated_at", "2020-05-05 18:44:11.808141"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint rerum et ipsam?"], ["description", "Repellat dolores tempora velit."], ["date", "2020-05-06 18:44:11.809820"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.810725"], ["updated_at", "2020-05-05 18:44:11.810725"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis maiores itaque qui?"], ["description", "Molestiae dolorem ab dolores."], ["date", "2020-05-06 18:44:11.811988"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.812715"], ["updated_at", "2020-05-05 18:44:11.812715"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea et minima quaerat?"], ["description", "Adipisci eveniet laboriosam sit."], ["date", "2020-05-06 18:44:11.814067"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.814848"], ["updated_at", "2020-05-05 18:44:11.814848"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos dolorem earum necessitatibus?"], ["description", "Aut ratione maiores consequatur."], ["date", "2020-05-06 18:44:11.816690"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.817499"], ["updated_at", "2020-05-05 18:44:11.817499"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum impedit itaque nemo?"], ["description", "Praesentium ut nesciunt sed."], ["date", "2020-05-06 18:44:11.818717"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.819448"], ["updated_at", "2020-05-05 18:44:11.819448"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae debitis laudantium voluptate?"], ["description", "Labore sapiente beatae dolores."], ["date", "2020-05-06 18:44:11.821132"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.822293"], ["updated_at", "2020-05-05 18:44:11.822293"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est tenetur error quam?"], ["description", "Ducimus tenetur nesciunt sit."], ["date", "2020-05-06 18:44:11.823688"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.824508"], ["updated_at", "2020-05-05 18:44:11.824508"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed corporis vel ut?"], ["description", "Ut autem doloribus aut."], ["date", "2020-05-06 18:44:11.826486"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.827443"], ["updated_at", "2020-05-05 18:44:11.827443"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem alias voluptatem impedit?"], ["description", "Magnam possimus vero quas."], ["date", "2020-05-06 18:44:11.828650"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.829349"], ["updated_at", "2020-05-05 18:44:11.829349"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui magnam praesentium et?"], ["description", "Expedita et facilis sint."], ["date", "2020-05-06 18:44:11.830378"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.831052"], ["updated_at", "2020-05-05 18:44:11.831052"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste autem minima sequi?"], ["description", "Rerum dolore aut sequi."], ["date", "2020-05-06 18:44:11.832084"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.832853"], ["updated_at", "2020-05-05 18:44:11.832853"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt distinctio dolores atque?"], ["description", "Optio rerum officiis at."], ["date", "2020-05-06 18:44:11.834130"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.834869"], ["updated_at", "2020-05-05 18:44:11.834869"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem sunt minima ab?"], ["description", "Quasi quibusdam ea quisquam."], ["date", "2020-05-06 18:44:11.836081"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.836779"], ["updated_at", "2020-05-05 18:44:11.836779"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem totam odit laudantium?"], ["description", "Qui culpa et necessitatibus."], ["date", "2020-05-06 18:44:11.837977"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.838707"], ["updated_at", "2020-05-05 18:44:11.838707"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:44:11 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 422 Unprocessable Entity in 6ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 3010) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Evan Senger"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vGJbjsQQTK8O1fE9qdup/.EgjtexMq983WlCWDX10oleAfaYQbsmC"], ["created_at", "2020-05-05 18:44:11.858238"], ["updated_at", "2020-05-05 18:44:11.858238"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Corporis impedit doloremque laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:11.862653"], ["updated_at", "2020-05-05 18:44:11.862653"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque debitis velit adipisci?"], ["description", "Error harum dolore aut."], ["date", "2020-05-06 18:44:11.865122"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.866216"], ["updated_at", "2020-05-05 18:44:11.866216"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo modi aut et?"], ["description", "Impedit id nobis dolores."], ["date", "2020-05-06 18:44:11.867683"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.868401"], ["updated_at", "2020-05-05 18:44:11.868401"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem nobis aspernatur ut?"], ["description", "Voluptatem quam facere occaecati."], ["date", "2020-05-06 18:44:11.869572"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.870234"], ["updated_at", "2020-05-05 18:44:11.870234"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus exercitationem incidunt consequuntur?"], ["description", "Modi aliquid voluptatem veniam."], ["date", "2020-05-06 18:44:11.871427"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.872153"], ["updated_at", "2020-05-05 18:44:11.872153"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias eveniet et aut?"], ["description", "Earum excepturi et totam."], ["date", "2020-05-06 18:44:11.873371"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.874142"], ["updated_at", "2020-05-05 18:44:11.874142"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et deleniti eius nobis?"], ["description", "Sequi exercitationem aliquam reiciendis."], ["date", "2020-05-06 18:44:11.875324"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.876372"], ["updated_at", "2020-05-05 18:44:11.876372"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo assumenda similique eaque?"], ["description", "Sint sunt pariatur rem."], ["date", "2020-05-06 18:44:11.878017"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.878873"], ["updated_at", "2020-05-05 18:44:11.878873"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea sint nobis reprehenderit?"], ["description", "Ut natus expedita corporis."], ["date", "2020-05-06 18:44:11.879988"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.881046"], ["updated_at", "2020-05-05 18:44:11.881046"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste qui voluptas id?"], ["description", "Non nam beatae dolorem."], ["date", "2020-05-06 18:44:11.883101"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.884730"], ["updated_at", "2020-05-05 18:44:11.884730"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum iusto voluptatem provident?"], ["description", "Deleniti ut dolores aut."], ["date", "2020-05-06 18:44:11.886905"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.887820"], ["updated_at", "2020-05-05 18:44:11.887820"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse qui rerum vitae?"], ["description", "Non vel maxime praesentium."], ["date", "2020-05-06 18:44:11.889201"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.889969"], ["updated_at", "2020-05-05 18:44:11.889969"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias assumenda est voluptates?"], ["description", "Quibusdam modi soluta sint."], ["date", "2020-05-06 18:44:11.891161"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.891982"], ["updated_at", "2020-05-05 18:44:11.891982"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto perspiciatis consequuntur ut?"], ["description", "Nemo quia repudiandae laudantium."], ["date", "2020-05-06 18:44:11.893762"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.894703"], ["updated_at", "2020-05-05 18:44:11.894703"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus unde voluptatem similique?"], ["description", "Voluptatem vel vel officiis."], ["date", "2020-05-06 18:44:11.895905"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.896598"], ["updated_at", "2020-05-05 18:44:11.896598"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia facere quae et?"], ["description", "Sed omnis esse voluptates."], ["date", "2020-05-06 18:44:11.897724"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.913549"], ["updated_at", "2020-05-05 18:44:11.913549"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente quisquam doloribus rerum?"], ["description", "Est labore omnis eos."], ["date", "2020-05-06 18:44:11.915002"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.915856"], ["updated_at", "2020-05-05 18:44:11.915856"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum eveniet voluptas commodi?"], ["description", "Blanditiis et veniam laboriosam."], ["date", "2020-05-06 18:44:11.917053"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.917739"], ["updated_at", "2020-05-05 18:44:11.917739"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In nesciunt voluptatibus voluptatem?"], ["description", "Magnam provident incidunt facilis."], ["date", "2020-05-06 18:44:11.918968"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.919675"], ["updated_at", "2020-05-05 18:44:11.919675"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem consequuntur sed suscipit?"], ["description", "Ipsam libero dignissimos ea."], ["date", "2020-05-06 18:44:11.921452"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.922717"], ["updated_at", "2020-05-05 18:44:11.922717"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam ut quasi aut?"], ["description", "Architecto explicabo est voluptas."], ["date", "2020-05-06 18:44:11.924234"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.925103"], ["updated_at", "2020-05-05 18:44:11.925103"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:44:11 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 2705) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (13.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Reyes Torphy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fiJYfVQGxs9lLXQLxsd39ONBL2Sy93HN0uBiN59lC6ZcZau1Nnywi"], ["created_at", "2020-05-05 18:44:11.950819"], ["updated_at", "2020-05-05 18:44:11.950819"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quasi"], ["description", "Debitis eos eius dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:11.954557"], ["updated_at", "2020-05-05 18:44:11.954557"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque aperiam non rerum?"], ["description", "Laudantium ipsam quos quam."], ["date", "2020-05-06 18:44:11.956125"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.957079"], ["updated_at", "2020-05-05 18:44:11.957079"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur alias eos repellat?"], ["description", "Nam eaque iusto ipsum."], ["date", "2020-05-06 18:44:11.958495"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.959857"], ["updated_at", "2020-05-05 18:44:11.959857"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minus quaerat et sapiente?"], ["description", "Autem autem accusantium animi."], ["date", "2020-05-06 18:44:11.961851"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.963527"], ["updated_at", "2020-05-05 18:44:11.963527"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et harum impedit quas?"], ["description", "Perspiciatis quia omnis et."], ["date", "2020-05-06 18:44:11.965550"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.966487"], ["updated_at", "2020-05-05 18:44:11.966487"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus tempora aut est?"], ["description", "Minima earum tenetur vel."], ["date", "2020-05-06 18:44:11.967611"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.968302"], ["updated_at", "2020-05-05 18:44:11.968302"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptate sapiente dolore maxime?"], ["description", "Et natus fugit tenetur."], ["date", "2020-05-06 18:44:11.969387"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.970062"], ["updated_at", "2020-05-05 18:44:11.970062"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem at minus quia?"], ["description", "Qui ut sed nam."], ["date", "2020-05-06 18:44:11.971251"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.971951"], ["updated_at", "2020-05-05 18:44:11.971951"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et recusandae sed et?"], ["description", "Consequatur enim ut rerum."], ["date", "2020-05-06 18:44:11.973257"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.974047"], ["updated_at", "2020-05-05 18:44:11.974047"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut numquam blanditiis rerum?"], ["description", "Quo sapiente mollitia voluptatibus."], ["date", "2020-05-06 18:44:11.975616"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.976759"], ["updated_at", "2020-05-05 18:44:11.976759"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem aut non vel?"], ["description", "Dignissimos alias inventore animi."], ["date", "2020-05-06 18:44:11.978690"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.979468"], ["updated_at", "2020-05-05 18:44:11.979468"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia mollitia praesentium distinctio?"], ["description", "Ea sint quae excepturi."], ["date", "2020-05-06 18:44:11.980860"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.982105"], ["updated_at", "2020-05-05 18:44:11.982105"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil nemo culpa neque?"], ["description", "Est et et at."], ["date", "2020-05-06 18:44:11.983754"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.984718"], ["updated_at", "2020-05-05 18:44:11.984718"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima deleniti ut nam?"], ["description", "Adipisci officia et error."], ["date", "2020-05-06 18:44:11.985932"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.986703"], ["updated_at", "2020-05-05 18:44:11.986703"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium sint quae maxime?"], ["description", "A placeat aliquid ut."], ["date", "2020-05-06 18:44:11.987922"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.988628"], ["updated_at", "2020-05-05 18:44:11.988628"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur ut velit ad?"], ["description", "Nisi hic magni nesciunt."], ["date", "2020-05-06 18:44:11.989777"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.990481"], ["updated_at", "2020-05-05 18:44:11.990481"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut sequi et laborum?"], ["description", "Occaecati tempore fugiat libero."], ["date", "2020-05-06 18:44:11.991594"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.992293"], ["updated_at", "2020-05-05 18:44:11.992293"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim voluptate molestiae quia?"], ["description", "Tempora fuga beatae perspiciatis."], ["date", "2020-05-06 18:44:11.994208"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.995157"], ["updated_at", "2020-05-05 18:44:11.995157"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae repellendus accusantium magni?"], ["description", "Harum repudiandae sint nihil."], ["date", "2020-05-06 18:44:11.996465"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.997162"], ["updated_at", "2020-05-05 18:44:11.997162"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem voluptatem cupiditate quisquam?"], ["description", "Blanditiis dolor iusto et."], ["date", "2020-05-06 18:44:11.998413"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:11.999124"], ["updated_at", "2020-05-05 18:44:11.999124"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem qui soluta architecto?"], ["description", "Qui expedita ut nihil."], ["date", "2020-05-06 18:44:12.000328"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.001326"], ["updated_at", "2020-05-05 18:44:12.001326"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.1ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:44:12.006502"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1397) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Jody Morar"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2ikOpJeZdvyCI26VS/sZYO2.YiCdbwZEiBDLW/xQ60UGL35nV3b.G"], ["created_at", "2020-05-05 18:44:12.019177"], ["updated_at", "2020-05-05 18:44:12.019177"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Et voluptatum libero et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.023028"], ["updated_at", "2020-05-05 18:44:12.023028"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur vel iste et?"], ["description", "Ea sunt id quo."], ["date", "2020-05-06 18:44:12.026490"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.027769"], ["updated_at", "2020-05-05 18:44:12.027769"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum soluta ea repellendus?"], ["description", "Pariatur quidem assumenda dolor."], ["date", "2020-05-06 18:44:12.029312"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.030153"], ["updated_at", "2020-05-05 18:44:12.030153"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis culpa impedit inventore?"], ["description", "Et qui fugiat molestias."], ["date", "2020-05-06 18:44:12.031405"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.032102"], ["updated_at", "2020-05-05 18:44:12.032102"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis qui veniam earum?"], ["description", "Deleniti neque eum enim."], ["date", "2020-05-06 18:44:12.033263"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.034019"], ["updated_at", "2020-05-05 18:44:12.034019"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut temporibus esse illum?"], ["description", "Dicta modi est eum."], ["date", "2020-05-06 18:44:12.035150"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.035894"], ["updated_at", "2020-05-05 18:44:12.035894"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis voluptate excepturi natus?"], ["description", "Dignissimos sint rerum quia."], ["date", "2020-05-06 18:44:12.037169"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.037905"], ["updated_at", "2020-05-05 18:44:12.037905"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia non aut impedit?"], ["description", "Modi voluptatibus tempore quos."], ["date", "2020-05-06 18:44:12.039062"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.039796"], ["updated_at", "2020-05-05 18:44:12.039796"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.5ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et adipisci repellat nam?"], ["description", "Velit vero accusantium eum."], ["date", "2020-05-06 18:44:12.040962"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.043853"], ["updated_at", "2020-05-05 18:44:12.043853"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum ullam fuga magnam?"], ["description", "Qui laboriosam consequatur et."], ["date", "2020-05-06 18:44:12.045689"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.047193"], ["updated_at", "2020-05-05 18:44:12.047193"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem vel incidunt et?"], ["description", "Illum et officiis excepturi."], ["date", "2020-05-06 18:44:12.049275"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.050126"], ["updated_at", "2020-05-05 18:44:12.050126"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laboriosam cum consequuntur soluta?"], ["description", "Omnis dolorem nesciunt dignissimos."], ["date", "2020-05-06 18:44:12.051385"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.052083"], ["updated_at", "2020-05-05 18:44:12.052083"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt magnam beatae rerum?"], ["description", "Omnis illum in repellat."], ["date", "2020-05-06 18:44:12.053259"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.054037"], ["updated_at", "2020-05-05 18:44:12.054037"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident deleniti soluta non?"], ["description", "Molestiae itaque et qui."], ["date", "2020-05-06 18:44:12.055263"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.055974"], ["updated_at", "2020-05-05 18:44:12.055974"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni nisi eaque odio?"], ["description", "Dolor accusamus vel distinctio."], ["date", "2020-05-06 18:44:12.057186"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.057880"], ["updated_at", "2020-05-05 18:44:12.057880"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente velit quaerat eum?"], ["description", "Et et aperiam dolor."], ["date", "2020-05-06 18:44:12.059743"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.060959"], ["updated_at", "2020-05-05 18:44:12.060959"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem numquam alias sed?"], ["description", "Hic quis labore excepturi."], ["date", "2020-05-06 18:44:12.062995"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.064053"], ["updated_at", "2020-05-05 18:44:12.064053"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas enim qui dignissimos?"], ["description", "Aut sunt sed et."], ["date", "2020-05-06 18:44:12.065489"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.066267"], ["updated_at", "2020-05-05 18:44:12.066267"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus alias natus voluptas?"], ["description", "Aut vero et et."], ["date", "2020-05-06 18:44:12.067519"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.068240"], ["updated_at", "2020-05-05 18:44:12.068240"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est tenetur quaerat id?"], ["description", "Culpa quia rerum aliquam."], ["date", "2020-05-06 18:44:12.069425"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.070146"], ["updated_at", "2020-05-05 18:44:12.070146"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum iure labore ea?"], ["description", "Ad libero id repellendus."], ["date", "2020-05-06 18:44:12.071288"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.071994"], ["updated_at", "2020-05-05 18:44:12.071994"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.1ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:44:12.076908"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 4ms (ActiveRecord: 0.5ms | Allocations: 1319) + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kayla Greenholt"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WyZOQ05Ua8dIQsmZKxUwROydXL5oFmnjV16kwg9JVi2L.NMuH63Tm"], ["created_at", "2020-05-05 18:44:12.090158"], ["updated_at", "2020-05-05 18:44:12.090158"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Voluptatum ipsum esse deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.093612"], ["updated_at", "2020-05-05 18:44:12.093612"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi eius corrupti atque?"], ["description", "Ipsum excepturi possimus odit."], ["date", "2020-05-06 18:44:12.095253"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.096223"], ["updated_at", "2020-05-05 18:44:12.096223"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat et quasi autem?"], ["description", "Vero nam rem est."], ["date", "2020-05-06 18:44:12.097809"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.098709"], ["updated_at", "2020-05-05 18:44:12.098709"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus id quis qui?"], ["description", "Velit voluptas laborum dolores."], ["date", "2020-05-06 18:44:12.099994"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.100825"], ["updated_at", "2020-05-05 18:44:12.100825"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui sunt nihil qui?"], ["description", "Dignissimos est laborum nobis."], ["date", "2020-05-06 18:44:12.102686"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.104034"], ["updated_at", "2020-05-05 18:44:12.104034"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta deleniti sunt quo?"], ["description", "Similique voluptas nemo expedita."], ["date", "2020-05-06 18:44:12.106151"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.107119"], ["updated_at", "2020-05-05 18:44:12.107119"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores iste alias qui?"], ["description", "Ut quisquam voluptatum vitae."], ["date", "2020-05-06 18:44:12.109004"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.110014"], ["updated_at", "2020-05-05 18:44:12.110014"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos autem ea natus?"], ["description", "Fugiat animi reprehenderit dignissimos."], ["date", "2020-05-06 18:44:12.111302"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.112006"], ["updated_at", "2020-05-05 18:44:12.112006"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id velit adipisci sit?"], ["description", "Totam amet debitis mollitia."], ["date", "2020-05-06 18:44:12.113154"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.113881"], ["updated_at", "2020-05-05 18:44:12.113881"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero consequatur porro ipsa?"], ["description", "Qui accusamus placeat accusantium."], ["date", "2020-05-06 18:44:12.115161"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.115894"], ["updated_at", "2020-05-05 18:44:12.115894"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus voluptas a labore?"], ["description", "Amet voluptate veritatis ipsam."], ["date", "2020-05-06 18:44:12.117711"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.118464"], ["updated_at", "2020-05-05 18:44:12.118464"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et aliquam ipsum voluptatem?"], ["description", "Consequuntur sed ipsam sit."], ["date", "2020-05-06 18:44:12.119742"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.120430"], ["updated_at", "2020-05-05 18:44:12.120430"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugiat qui ut et?"], ["description", "Sit inventore et dignissimos."], ["date", "2020-05-06 18:44:12.121780"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.122981"], ["updated_at", "2020-05-05 18:44:12.122981"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non voluptas quia quis?"], ["description", "Temporibus odio et voluptatem."], ["date", "2020-05-06 18:44:12.124896"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.126246"], ["updated_at", "2020-05-05 18:44:12.126246"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et magnam voluptatem dolorum?"], ["description", "Est velit facere qui."], ["date", "2020-05-06 18:44:12.127671"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.128424"], ["updated_at", "2020-05-05 18:44:12.128424"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias architecto et illo?"], ["description", "Doloribus debitis blanditiis deserunt."], ["date", "2020-05-06 18:44:12.129585"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.130302"], ["updated_at", "2020-05-05 18:44:12.130302"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi enim suscipit rerum?"], ["description", "Maiores et voluptatem optio."], ["date", "2020-05-06 18:44:12.131500"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.132568"], ["updated_at", "2020-05-05 18:44:12.132568"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse illum deleniti pariatur?"], ["description", "Quas voluptatibus aut pariatur."], ["date", "2020-05-06 18:44:12.134158"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.135217"], ["updated_at", "2020-05-05 18:44:12.135217"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi sed iure voluptatem?"], ["description", "Occaecati vero consequuntur nam."], ["date", "2020-05-06 18:44:12.136599"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.137326"], ["updated_at", "2020-05-05 18:44:12.137326"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore odit deserunt earum?"], ["description", "Nam non rem in."], ["date", "2020-05-06 18:44:12.138550"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.139243"], ["updated_at", "2020-05-05 18:44:12.139243"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati perspiciatis nulla aut?"], ["description", "Odio facilis ad ut."], ["date", "2020-05-06 18:44:12.140535"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.141428"], ["updated_at", "2020-05-05 18:44:12.141428"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Andre Flatley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Od95JxFHwhiZ4MrvnXw6NuNr68BsYe/qjENzXFC0iMmBeDdPOqbzC"], ["created_at", "2020-05-05 18:44:12.157175"], ["updated_at", "2020-05-05 18:44:12.157175"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloribus"], ["description", "Eos quod qui nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.160949"], ["updated_at", "2020-05-05 18:44:12.160949"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere iste numquam ipsa?"], ["description", "Tempore iusto hic laboriosam."], ["date", "2020-05-06 18:44:12.163025"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.164704"], ["updated_at", "2020-05-05 18:44:12.164704"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Unde quam et cupiditate?"], ["description", "Aut velit nam voluptas."], ["date", "2020-05-06 18:44:12.166942"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.167940"], ["updated_at", "2020-05-05 18:44:12.167940"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam ad consequatur rerum?"], ["description", "Voluptatem sed perferendis pariatur."], ["date", "2020-05-06 18:44:12.169220"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.169909"], ["updated_at", "2020-05-05 18:44:12.169909"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis vitae enim et?"], ["description", "Facere et quam distinctio."], ["date", "2020-05-06 18:44:12.170998"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.171715"], ["updated_at", "2020-05-05 18:44:12.171715"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia modi autem reiciendis?"], ["description", "Molestiae non odit culpa."], ["date", "2020-05-06 18:44:12.172763"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.173445"], ["updated_at", "2020-05-05 18:44:12.173445"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore sint exercitationem est?"], ["description", "Veritatis qui consectetur tempora."], ["date", "2020-05-06 18:44:12.174998"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.176312"], ["updated_at", "2020-05-05 18:44:12.176312"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste eveniet deserunt in?"], ["description", "Autem voluptatem ut velit."], ["date", "2020-05-06 18:44:12.177771"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.178503"], ["updated_at", "2020-05-05 18:44:12.178503"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non harum enim odit?"], ["description", "Quas magni quia et."], ["date", "2020-05-06 18:44:12.179627"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.180344"], ["updated_at", "2020-05-05 18:44:12.180344"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minus eius magnam asperiores?"], ["description", "Nihil vel ab minus."], ["date", "2020-05-06 18:44:12.181534"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.182591"], ["updated_at", "2020-05-05 18:44:12.182591"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo aliquid illo voluptates?"], ["description", "Sit officiis asperiores nam."], ["date", "2020-05-06 18:44:12.185611"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.187357"], ["updated_at", "2020-05-05 18:44:12.187357"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea optio ut debitis?"], ["description", "Quia vero pariatur et."], ["date", "2020-05-06 18:44:12.188951"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.189758"], ["updated_at", "2020-05-05 18:44:12.189758"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis maiores culpa laborum?"], ["description", "Odit debitis fugiat soluta."], ["date", "2020-05-06 18:44:12.191167"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.191981"], ["updated_at", "2020-05-05 18:44:12.191981"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem voluptatibus vitae nihil?"], ["description", "Quas ullam ut doloribus."], ["date", "2020-05-06 18:44:12.193733"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.194755"], ["updated_at", "2020-05-05 18:44:12.194755"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla illum dolores possimus?"], ["description", "Voluptas praesentium commodi sunt."], ["date", "2020-05-06 18:44:12.196231"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.196976"], ["updated_at", "2020-05-05 18:44:12.196976"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores ut aperiam tenetur?"], ["description", "Qui voluptate unde ipsum."], ["date", "2020-05-06 18:44:12.198224"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.198921"], ["updated_at", "2020-05-05 18:44:12.198921"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident delectus necessitatibus occaecati?"], ["description", "Debitis autem tempora aspernatur."], ["date", "2020-05-06 18:44:12.200155"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.200822"], ["updated_at", "2020-05-05 18:44:12.200822"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur molestiae est dolores?"], ["description", "Ipsa rerum omnis ad."], ["date", "2020-05-06 18:44:12.202125"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.203230"], ["updated_at", "2020-05-05 18:44:12.203230"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab doloribus ut deleniti?"], ["description", "Magni ipsam ut ea."], ["date", "2020-05-06 18:44:12.204962"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.205880"], ["updated_at", "2020-05-05 18:44:12.205880"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas asperiores eveniet ratione?"], ["description", "Voluptatem eum voluptatibus voluptas."], ["date", "2020-05-06 18:44:12.207139"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.207895"], ["updated_at", "2020-05-05 18:44:12.207895"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit qui dolore enim?"], ["description", "Corporis molestiae at accusamus."], ["date", "2020-05-06 18:44:12.209508"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.210555"], ["updated_at", "2020-05-05 18:44:12.210555"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Trinidad Konopelski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2LH7ixVcjIKlPW9uqEVTg.ASsUcnKqSOucOaE9Z6e8rirnw0o3Qg6"], ["created_at", "2020-05-05 18:44:12.227074"], ["updated_at", "2020-05-05 18:44:12.227074"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Magni quos est natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.230113"], ["updated_at", "2020-05-05 18:44:12.230113"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel incidunt sit facere?"], ["description", "Repudiandae earum est consequatur."], ["date", "2020-05-06 18:44:12.231578"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.232578"], ["updated_at", "2020-05-05 18:44:12.232578"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel voluptas laudantium vel?"], ["description", "Laudantium id dolorum eius."], ["date", "2020-05-06 18:44:12.235599"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.236519"], ["updated_at", "2020-05-05 18:44:12.236519"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil laboriosam nesciunt est?"], ["description", "Officia eum alias asperiores."], ["date", "2020-05-06 18:44:12.237655"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.238358"], ["updated_at", "2020-05-05 18:44:12.238358"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam inventore nam sint?"], ["description", "Ut ducimus corporis eius."], ["date", "2020-05-06 18:44:12.239465"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.240199"], ["updated_at", "2020-05-05 18:44:12.240199"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure vitae quo velit?"], ["description", "Consequuntur magni sunt amet."], ["date", "2020-05-06 18:44:12.241455"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.242252"], ["updated_at", "2020-05-05 18:44:12.242252"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et nemo est numquam?"], ["description", "Nisi distinctio est velit."], ["date", "2020-05-06 18:44:12.245574"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.246808"], ["updated_at", "2020-05-05 18:44:12.246808"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Hic odit voluptas fugiat?"], ["description", "Voluptas veritatis sed quia."], ["date", "2020-05-06 18:44:12.248721"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.249618"], ["updated_at", "2020-05-05 18:44:12.249618"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque magnam sit non?"], ["description", "Ipsum necessitatibus officiis minus."], ["date", "2020-05-06 18:44:12.250785"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.251480"], ["updated_at", "2020-05-05 18:44:12.251480"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (40.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit sit assumenda aliquam?"], ["description", "Omnis tempore sequi iusto."], ["date", "2020-05-06 18:44:12.252627"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.253328"], ["updated_at", "2020-05-05 18:44:12.253328"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim qui nihil incidunt?"], ["description", "Magnam modi impedit voluptatibus."], ["date", "2020-05-06 18:44:12.296769"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.299121"], ["updated_at", "2020-05-05 18:44:12.299121"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quam quisquam debitis?"], ["description", "Aliquid sed quia quam."], ["date", "2020-05-06 18:44:12.302993"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.305891"], ["updated_at", "2020-05-05 18:44:12.305891"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi natus alias iste?"], ["description", "Error rerum itaque vel."], ["date", "2020-05-06 18:44:12.310434"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.313268"], ["updated_at", "2020-05-05 18:44:12.313268"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus eos autem facere?"], ["description", "Iste quasi sint qui."], ["date", "2020-05-06 18:44:12.317477"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.319761"], ["updated_at", "2020-05-05 18:44:12.319761"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse eum aspernatur omnis?"], ["description", "Et expedita placeat id."], ["date", "2020-05-06 18:44:12.322360"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.323633"], ["updated_at", "2020-05-05 18:44:12.323633"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis illum repellat enim?"], ["description", "Non autem consequatur consectetur."], ["date", "2020-05-06 18:44:12.326329"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.328137"], ["updated_at", "2020-05-05 18:44:12.328137"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error et veritatis reiciendis?"], ["description", "Non quasi veritatis molestiae."], ["date", "2020-05-06 18:44:12.330324"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.331476"], ["updated_at", "2020-05-05 18:44:12.331476"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui cum ut quasi?"], ["description", "Ad recusandae qui vel."], ["date", "2020-05-06 18:44:12.333376"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.334438"], ["updated_at", "2020-05-05 18:44:12.334438"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni nisi necessitatibus quo?"], ["description", "Aliquid veritatis consequuntur enim."], ["date", "2020-05-06 18:44:12.336381"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.337436"], ["updated_at", "2020-05-05 18:44:12.337436"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta tempore quas sit?"], ["description", "Sunt ipsa corporis sit."], ["date", "2020-05-06 18:44:12.339219"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.340239"], ["updated_at", "2020-05-05 18:44:12.340239"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio voluptas quas ut?"], ["description", "Ratione iusto officiis suscipit."], ["date", "2020-05-06 18:44:12.341858"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:44:12.343581"], ["updated_at", "2020-05-05 18:44:12.343581"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetingsController#destroy as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + UserMeeting Load (0.1ms) SELECT "user_meetings".* FROM "user_meetings" WHERE "user_meetings"."meeting_id" = ? [["meeting_id", 1]] + Meeting Destroy (0.1ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 7ms (ActiveRecord: 0.8ms | Allocations: 2317) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "suscipit"], ["description", "Dolore qui reprehenderit quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.366056"], ["updated_at", "2020-05-05 18:44:12.366056"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Dolores ut ducimus esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.369691"], ["updated_at", "2020-05-05 18:44:12.369691"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Sit dicta magni voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.371612"], ["updated_at", "2020-05-05 18:44:12.371612"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Est dolorem illum nisi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.373288"], ["updated_at", "2020-05-05 18:44:12.373288"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempora"], ["description", "Illum rerum accusamus ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.374651"], ["updated_at", "2020-05-05 18:44:12.374651"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Aut totam qui dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.376473"], ["updated_at", "2020-05-05 18:44:12.376473"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Consequuntur assumenda porro officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.378203"], ["updated_at", "2020-05-05 18:44:12.378203"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "at"], ["description", "Nesciunt eveniet aspernatur qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.379450"], ["updated_at", "2020-05-05 18:44:12.379450"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cupiditate"], ["description", "Animi nihil eum aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.380870"], ["updated_at", "2020-05-05 18:44:12.380870"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "exercitationem"], ["description", "Omnis iusto veniam et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.382185"], ["updated_at", "2020-05-05 18:44:12.382185"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Samantha Hammes"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/Cs10x0HJu.LyLjmJRG2bOqH7ydztH0A5/iG20iSTJb9INR/.tW1q"], ["created_at", "2020-05-05 18:44:12.385364"], ["updated_at", "2020-05-05 18:44:12.385364"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.3ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.13ms) +Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.4ms | Allocations: 2912) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Ut rerum nam totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.406223"], ["updated_at", "2020-05-05 18:44:12.406223"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Non quod autem sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.410376"], ["updated_at", "2020-05-05 18:44:12.410376"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minus"], ["description", "Dolores molestiae quo ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.411994"], ["updated_at", "2020-05-05 18:44:12.411994"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusantium"], ["description", "Molestiae voluptatem est possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.413356"], ["updated_at", "2020-05-05 18:44:12.413356"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dicta"], ["description", "Nihil repudiandae laborum et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.414703"], ["updated_at", "2020-05-05 18:44:12.414703"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Odit consequatur tempore eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.416046"], ["updated_at", "2020-05-05 18:44:12.416046"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eveniet"], ["description", "Suscipit optio dolorem laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.417350"], ["updated_at", "2020-05-05 18:44:12.417350"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sequi"], ["description", "Consequuntur in consequatur voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.418655"], ["updated_at", "2020-05-05 18:44:12.418655"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "delectus"], ["description", "Quibusdam qui dolores ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.419924"], ["updated_at", "2020-05-05 18:44:12.419924"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Dolor quae beatae ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.421193"], ["updated_at", "2020-05-05 18:44:12.421193"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hyman Klocko"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6jpFOm0D.Ch8kVXO/NNHAOnSwH25yUgPmjSdbX0XK72R2HLfxCiJa"], ["created_at", "2020-05-05 18:44:12.424041"], ["updated_at", "2020-05-05 18:44:12.424041"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2843) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quisquam"], ["description", "Necessitatibus natus error sapiente."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.444022"], ["updated_at", "2020-05-05 18:44:12.444022"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "hic"], ["description", "Id numquam dignissimos dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.448420"], ["updated_at", "2020-05-05 18:44:12.448420"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Animi vel ut saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.449958"], ["updated_at", "2020-05-05 18:44:12.449958"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Vero fuga excepturi dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.451444"], ["updated_at", "2020-05-05 18:44:12.451444"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "provident"], ["description", "Sunt quisquam sed et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.452749"], ["updated_at", "2020-05-05 18:44:12.452749"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "adipisci"], ["description", "A atque expedita accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.454314"], ["updated_at", "2020-05-05 18:44:12.454314"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "a"], ["description", "Consequatur optio quibusdam aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.455648"], ["updated_at", "2020-05-05 18:44:12.455648"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloribus"], ["description", "Aspernatur est architecto rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.456971"], ["updated_at", "2020-05-05 18:44:12.456971"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Necessitatibus repellendus rerum incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.458741"], ["updated_at", "2020-05-05 18:44:12.458741"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "at"], ["description", "Et enim voluptate nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.460461"], ["updated_at", "2020-05-05 18:44:12.460461"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alfredo Casper"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$n.iIljQvgMAEdvH6DqO4XeFBOYaFX75u3si1v8zlbRVsW0/0mRrEO"], ["created_at", "2020-05-05 18:44:12.463063"], ["updated_at", "2020-05-05 18:44:12.463063"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.5ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.37ms) +Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.3ms | Allocations: 1242) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Est aut nemo velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.487071"], ["updated_at", "2020-05-05 18:44:12.487071"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Mollitia sit est est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.490770"], ["updated_at", "2020-05-05 18:44:12.490770"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "assumenda"], ["description", "A asperiores autem velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.492933"], ["updated_at", "2020-05-05 18:44:12.492933"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laudantium"], ["description", "Fugit id ut veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.494843"], ["updated_at", "2020-05-05 18:44:12.494843"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Nobis fuga mollitia repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.496201"], ["updated_at", "2020-05-05 18:44:12.496201"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Voluptas quia odit et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.497515"], ["updated_at", "2020-05-05 18:44:12.497515"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Eaque dolorem incidunt ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.498846"], ["updated_at", "2020-05-05 18:44:12.498846"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "itaque"], ["description", "Nisi rerum voluptas qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.500143"], ["updated_at", "2020-05-05 18:44:12.500143"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Omnis aut pariatur nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.501467"], ["updated_at", "2020-05-05 18:44:12.501467"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ducimus"], ["description", "Aut molestiae modi itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.502932"], ["updated_at", "2020-05-05 18:44:12.502932"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Burt O'Reilly"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tX//IkZy8PjP5pM.u2Ov0uZc5zsMnMdeE8caJJIsJxZlpyYZBt7D."], ["created_at", "2020-05-05 18:44:12.506569"], ["updated_at", "2020-05-05 18:44:12.506569"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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 15:44:12 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.1ms) +Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.2ms | Allocations: 1239) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Consequatur explicabo recusandae ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.530695"], ["updated_at", "2020-05-05 18:44:12.530695"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "explicabo"], ["description", "Maxime omnis dolorem consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.534077"], ["updated_at", "2020-05-05 18:44:12.534077"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Repudiandae reprehenderit consequatur rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.536486"], ["updated_at", "2020-05-05 18:44:12.536486"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Culpa omnis accusamus vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.538060"], ["updated_at", "2020-05-05 18:44:12.538060"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dicta"], ["description", "Repellendus saepe non dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.539475"], ["updated_at", "2020-05-05 18:44:12.539475"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Dolorem architecto totam sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.540869"], ["updated_at", "2020-05-05 18:44:12.540869"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Vero tempora nihil praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.542375"], ["updated_at", "2020-05-05 18:44:12.542375"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Veniam et quia aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.544664"], ["updated_at", "2020-05-05 18:44:12.544664"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Omnis eius est neque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.547587"], ["updated_at", "2020-05-05 18:44:12.547587"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ab"], ["description", "Aut quis dolorem magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.549400"], ["updated_at", "2020-05-05 18:44:12.549400"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Coleman McKenzie"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Ld68u42cJBQ2NDCl435L0e.7CDsFRr7qydwwXhv7vfvseAmM093kO"], ["created_at", "2020-05-05 18:44:12.551981"], ["updated_at", "2020-05-05 18:44:12.551981"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.6ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Nemo voluptatum vero culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.572214"], ["updated_at", "2020-05-05 18:44:12.572214"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Maiores qui natus excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.591069"], ["updated_at", "2020-05-05 18:44:12.591069"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cumque"], ["description", "Consequuntur enim autem molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.593236"], ["updated_at", "2020-05-05 18:44:12.593236"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Magnam ut nemo iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.594960"], ["updated_at", "2020-05-05 18:44:12.594960"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Vero itaque tempora ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.596516"], ["updated_at", "2020-05-05 18:44:12.596516"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Optio corrupti minima velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.597954"], ["updated_at", "2020-05-05 18:44:12.597954"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Praesentium velit dolor voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.599359"], ["updated_at", "2020-05-05 18:44:12.599359"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Placeat earum explicabo cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.600740"], ["updated_at", "2020-05-05 18:44:12.600740"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "In enim fugit consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.602161"], ["updated_at", "2020-05-05 18:44:12.602161"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Itaque occaecati at ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.603733"], ["updated_at", "2020-05-05 18:44:12.603733"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leanna Towne"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RZ4z.ZmVEzF9OPi5I.4noODZQDg5C5ZB3iGLTxFV2twxBfAoNDcki"], ["created_at", "2020-05-05 18:44:12.607383"], ["updated_at", "2020-05-05 18:44:12.607383"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2843) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vitae"], ["description", "Aspernatur rerum beatae at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.629707"], ["updated_at", "2020-05-05 18:44:12.629707"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Nam autem ut ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.632533"], ["updated_at", "2020-05-05 18:44:12.632533"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "culpa"], ["description", "Quae porro non id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.634012"], ["updated_at", "2020-05-05 18:44:12.634012"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Rerum voluptas rerum quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.635374"], ["updated_at", "2020-05-05 18:44:12.635374"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dignissimos"], ["description", "Dolor et pariatur voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.636724"], ["updated_at", "2020-05-05 18:44:12.636724"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "praesentium"], ["description", "Doloribus error reprehenderit et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.638025"], ["updated_at", "2020-05-05 18:44:12.638025"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iure"], ["description", "Mollitia quia harum culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.639339"], ["updated_at", "2020-05-05 18:44:12.639339"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perspiciatis"], ["description", "Qui omnis sunt ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.640629"], ["updated_at", "2020-05-05 18:44:12.640629"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Illo sint vitae sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.641993"], ["updated_at", "2020-05-05 18:44:12.641993"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veritatis"], ["description", "Non expedita quam totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.644250"], ["updated_at", "2020-05-05 18:44:12.644250"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lamonica Becker"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$MtHb4IA92H4XzJfiG27Ls.wiS3oJ.BWcjoBa0S3lq9r8ZqUdVrw6u"], ["created_at", "2020-05-05 18:44:12.648285"], ["updated_at", "2020-05-05 18:44:12.648285"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2842) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:44:12 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:44:12.673690"], ["updated_at", "2020-05-05 18:44:12.673690"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.79ms) +Completed 201 Created in 23ms (Views: 1.2ms | ActiveRecord: 1.3ms | Allocations: 6207) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "earum"], ["description", "Quia similique sed numquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.691083"], ["updated_at", "2020-05-05 18:44:12.691083"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Dolor consequuntur iure sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.694737"], ["updated_at", "2020-05-05 18:44:12.694737"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatum"], ["description", "Magnam odio maxime perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.696439"], ["updated_at", "2020-05-05 18:44:12.696439"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Dicta sed ut fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.697810"], ["updated_at", "2020-05-05 18:44:12.697810"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "atque"], ["description", "Eligendi occaecati ut provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.699073"], ["updated_at", "2020-05-05 18:44:12.699073"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "temporibus"], ["description", "Eligendi repellendus ducimus enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.700533"], ["updated_at", "2020-05-05 18:44:12.700533"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Voluptatum ex occaecati mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.701859"], ["updated_at", "2020-05-05 18:44:12.701859"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "atque"], ["description", "Saepe et eius dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.703135"], ["updated_at", "2020-05-05 18:44:12.703135"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Dignissimos maxime tenetur dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.704433"], ["updated_at", "2020-05-05 18:44:12.704433"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ratione"], ["description", "Consequatur aut ducimus natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.706700"], ["updated_at", "2020-05-05 18:44:12.706700"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Buddy Moen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nxswCG6WAAG8yVpsfC47UOZoq9kiAaYkNzbkioy7JyWmphknm0Ykq"], ["created_at", "2020-05-05 18:44:12.710656"], ["updated_at", "2020-05-05 18:44:12.710656"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.14ms) +Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:44:12 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:44:12.721402"], ["updated_at", "2020-05-05 18:44:12.721402"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.59ms) +Completed 201 Created in 6ms (Views: 1.3ms | ActiveRecord: 0.6ms | Allocations: 2251) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "provident"], ["description", "Ut quam sunt iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.736660"], ["updated_at", "2020-05-05 18:44:12.736660"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "a"], ["description", "Soluta voluptatem eveniet qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.740280"], ["updated_at", "2020-05-05 18:44:12.740280"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Esse odio rem et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.742040"], ["updated_at", "2020-05-05 18:44:12.742040"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Amet velit repudiandae ipsa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.744095"], ["updated_at", "2020-05-05 18:44:12.744095"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Maiores sed accusantium quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.746049"], ["updated_at", "2020-05-05 18:44:12.746049"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Rerum ut saepe earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.748226"], ["updated_at", "2020-05-05 18:44:12.748226"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Animi non velit nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.750493"], ["updated_at", "2020-05-05 18:44:12.750493"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "saepe"], ["description", "Veritatis et neque aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.752026"], ["updated_at", "2020-05-05 18:44:12.752026"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Quo eos et modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.753320"], ["updated_at", "2020-05-05 18:44:12.753320"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Quas sequi illo odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.754654"], ["updated_at", "2020-05-05 18:44:12.754654"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Chang Berge"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$L8DZsqOGhMRH/YFQk8II4ucIuJsw8NVSNe4fQzUfdtR6moMCKskv."], ["created_at", "2020-05-05 18:44:12.757192"], ["updated_at", "2020-05-05 18:44:12.757192"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | Allocations: 2839) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 4006) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "expedita"], ["description", "Nisi suscipit corrupti laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.782634"], ["updated_at", "2020-05-05 18:44:12.782634"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "in"], ["description", "Nihil aut quis quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.786463"], ["updated_at", "2020-05-05 18:44:12.786463"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptates"], ["description", "Ut similique enim necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.789313"], ["updated_at", "2020-05-05 18:44:12.789313"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Aliquam accusantium dicta vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.790766"], ["updated_at", "2020-05-05 18:44:12.790766"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Excepturi reprehenderit tenetur amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.792082"], ["updated_at", "2020-05-05 18:44:12.792082"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Est in corporis nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.793870"], ["updated_at", "2020-05-05 18:44:12.793870"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Consequatur quaerat quo repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.795573"], ["updated_at", "2020-05-05 18:44:12.795573"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloribus"], ["description", "Voluptas nobis perspiciatis ipsum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.796924"], ["updated_at", "2020-05-05 18:44:12.796924"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "culpa"], ["description", "Similique veniam hic id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.798214"], ["updated_at", "2020-05-05 18:44:12.798214"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Quia aut molestiae deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.799545"], ["updated_at", "2020-05-05 18:44:12.799545"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Floyd Quitzon"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NNHSZ97pYux7NwgvYLKW..OIx28fL.6WMkUG49luqXp97QsvkyO.O"], ["created_at", "2020-05-05 18:44:12.802149"], ["updated_at", "2020-05-05 18:44:12.802149"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (5.31ms) +Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 3697) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquam"], ["description", "Consequatur et distinctio aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.829064"], ["updated_at", "2020-05-05 18:44:12.829064"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iure"], ["description", "Qui labore quos voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.832649"], ["updated_at", "2020-05-05 18:44:12.832649"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptates"], ["description", "Error molestias hic voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.834678"], ["updated_at", "2020-05-05 18:44:12.834678"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Omnis fuga incidunt in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.836062"], ["updated_at", "2020-05-05 18:44:12.836062"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iusto"], ["description", "Alias ut pariatur reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.837400"], ["updated_at", "2020-05-05 18:44:12.837400"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quae"], ["description", "Sequi eius sed rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.838734"], ["updated_at", "2020-05-05 18:44:12.838734"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Voluptatem natus qui earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.840159"], ["updated_at", "2020-05-05 18:44:12.840159"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatibus"], ["description", "Ipsa magnam quia ipsum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.841484"], ["updated_at", "2020-05-05 18:44:12.841484"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Officia doloribus alias qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.842967"], ["updated_at", "2020-05-05 18:44:12.842967"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illo"], ["description", "Cumque saepe tempore omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.845036"], ["updated_at", "2020-05-05 18:44:12.845036"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Vonnie Rodriguez"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ewBYmwESGIV76HwPHwnIH.vNjY1Jo3pM4TJ7lTkh6irtfYiEttW7S"], ["created_at", "2020-05-05 18:44:12.848277"], ["updated_at", "2020-05-05 18:44:12.848277"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2843) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:44:12.860378"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1044) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nostrum"], ["description", "Accusamus saepe nobis tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.870842"], ["updated_at", "2020-05-05 18:44:12.870842"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Incidunt non fuga repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.874109"], ["updated_at", "2020-05-05 18:44:12.874109"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptates"], ["description", "Quia reprehenderit qui omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.877065"], ["updated_at", "2020-05-05 18:44:12.877065"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minima"], ["description", "Labore ex inventore explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.878567"], ["updated_at", "2020-05-05 18:44:12.878567"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugiat"], ["description", "Nesciunt laborum beatae possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.879943"], ["updated_at", "2020-05-05 18:44:12.879943"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolore"], ["description", "Sint soluta aut accusantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.881268"], ["updated_at", "2020-05-05 18:44:12.881268"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nemo"], ["description", "Rerum soluta accusamus labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.882578"], ["updated_at", "2020-05-05 18:44:12.882578"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "optio"], ["description", "Quam in occaecati exercitationem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.883890"], ["updated_at", "2020-05-05 18:44:12.883890"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellendus"], ["description", "Veniam eligendi ut est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.885219"], ["updated_at", "2020-05-05 18:44:12.885219"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "a"], ["description", "Voluptates et consequatur nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.886791"], ["updated_at", "2020-05-05 18:44:12.886791"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elinore Langworth"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NcwcwjvOU78DKsBNgzd0HevZXku7gdg2Y.ZTAJ3AOfyW.Usrw.gVG"], ["created_at", "2020-05-05 18:44:12.890753"], ["updated_at", "2020-05-05 18:44:12.890753"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | Allocations: 2845) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:44:12.902113"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.3ms | Allocations: 999) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "labore"], ["description", "Soluta deserunt at veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.913068"], ["updated_at", "2020-05-05 18:44:12.913068"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Nulla earum est veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.915963"], ["updated_at", "2020-05-05 18:44:12.915963"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "similique"], ["description", "Aperiam aliquam sit expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.918263"], ["updated_at", "2020-05-05 18:44:12.918263"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "debitis"], ["description", "Vel accusantium sunt eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.919943"], ["updated_at", "2020-05-05 18:44:12.919943"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deserunt"], ["description", "Dolor aliquam magnam rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.921509"], ["updated_at", "2020-05-05 18:44:12.921509"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officiis"], ["description", "Eos placeat quo in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.922884"], ["updated_at", "2020-05-05 18:44:12.922884"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "necessitatibus"], ["description", "Aliquam qui eum autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.924253"], ["updated_at", "2020-05-05 18:44:12.924253"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Et qui veniam vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.926263"], ["updated_at", "2020-05-05 18:44:12.926263"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Sunt hic quae blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.928893"], ["updated_at", "2020-05-05 18:44:12.928893"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Et accusamus voluptate eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:44:12.931162"], ["updated_at", "2020-05-05 18:44:12.931162"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Meaghan Brown"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3kDPqHNqmXmFeqcON/PTYuqd6RtPXfJhzj3kBkxa6Loxk4avPR4.u"], ["created_at", "2020-05-05 18:44:12.933956"], ["updated_at", "2020-05-05 18:44:12.933956"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | Allocations: 2842) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1205) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gerardo Hessel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$R8g8QCpOM5/DWAhwVcZITe9VxwlFdgFKvT1d.tg8igScaf2uoG3kG"], ["created_at", "2020-05-05 18:44:12.957214"], ["updated_at", "2020-05-05 18:44:12.957214"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Xuan Koss"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FPdkmK/gbOHGCPlEcNRlqe3FEv0MeFU6ADgpDaZK.6km5K76ocAoO"], ["created_at", "2020-05-05 18:44:12.963343"], ["updated_at", "2020-05-05 18:44:12.963343"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Cedrick Bednar"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$t2yLxW5JmpqiA1VgvoUnzOJJgkJ3B8mFKMHD1eOQTuIsMRnvzWb0q"], ["created_at", "2020-05-05 18:44:12.966650"], ["updated_at", "2020-05-05 18:44:12.966650"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Keila Lubowitz DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$y7u4OBZehC.68Ej.NafbzuFRBypJGPDo7bcBtZCRBNZ4MkZ30swLS"], ["created_at", "2020-05-05 18:44:12.971131"], ["updated_at", "2020-05-05 18:44:12.971131"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ernest Hauck"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ce.E43QF6pvLF.C7qNZwwOoaD6XWVjuGC8Iy7mCWFmRlqK.aTSW8u"], ["created_at", "2020-05-05 18:44:12.974366"], ["updated_at", "2020-05-05 18:44:12.974366"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dewey Schmidt"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tQUKWwV8ES1BsceXnqP0aufD/IBufSceQdp9KGYjsROW.8kmPMR.S"], ["created_at", "2020-05-05 18:44:12.977091"], ["updated_at", "2020-05-05 18:44:12.977091"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Malisa Hoeger"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6o9DmSX17nqqB7LyDpMpNu6PGU5WQjZpnuh3IBPW.Qc2Dn3/6jh6q"], ["created_at", "2020-05-05 18:44:12.979886"], ["updated_at", "2020-05-05 18:44:12.979886"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Darell Hirthe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$eO.FXbW9x5iXbqeWOcTfuu7O1354OgvTUF9VYQWlN4.K57NkaXPES"], ["created_at", "2020-05-05 18:44:12.982334"], ["updated_at", "2020-05-05 18:44:12.982334"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Eli Kuphal V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$wgpBnrykv458XauwWFhd5ePQH2TMHKYVRKI5rNAbQllDNPeZ2z.XS"], ["created_at", "2020-05-05 18:44:12.984765"], ["updated_at", "2020-05-05 18:44:12.984765"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Clayton Robel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KI6yaqpHo2miDl8sUGriZuu0wQjOkXItdrLT8XEDRUi2HIPmFZdjO"], ["created_at", "2020-05-05 18:44:12.987694"], ["updated_at", "2020-05-05 18:44:12.987694"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:44:12 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.16ms) +Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.2ms | Allocations: 2345) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marquis Hilll"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5AJGmZd/G95nPFdvnlQAbOjXBoHAAot2eWAJQeAL4tjuN4.DOrhqa"], ["created_at", "2020-05-05 18:44:13.009030"], ["updated_at", "2020-05-05 18:44:13.009030"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Wynona Howe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$bF56/y.RWJirbs7NisJZw.q8bYNX3YeP7bsp/NG7et1W8XhqYw.k."], ["created_at", "2020-05-05 18:44:13.013200"], ["updated_at", "2020-05-05 18:44:13.013200"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jani Rippin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$d9VPD8CsNJDLnVWCyv65t.jfqt08nmD3.kDHqI7x6S7SSzU69Hg0a"], ["created_at", "2020-05-05 18:44:13.015844"], ["updated_at", "2020-05-05 18:44:13.015844"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Man Tillman II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Way.QDKttGH3PmUF291Wb.W1XE12k6p6RpYDXfqgfAK1WNozYKZUa"], ["created_at", "2020-05-05 18:44:13.018297"], ["updated_at", "2020-05-05 18:44:13.018297"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Siobhan Raynor"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$r/50Vp6YIgOb1Z60V43My.SDVcXgGtLwb3a8zdOO1.Wj6s7W4tEP2"], ["created_at", "2020-05-05 18:44:13.020689"], ["updated_at", "2020-05-05 18:44:13.020689"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Arie Crona"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6H4rYHkFF5QtVK3LypnXLuGNmp6NmFDDEmZo2UF4TZVUiPpe3ufZG"], ["created_at", "2020-05-05 18:44:13.023092"], ["updated_at", "2020-05-05 18:44:13.023092"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Long Nolan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YRmQKYFbrAaZyx.9Jo5Mp.lpxCFP0olZEaePe82TKvtkh.P/Rr7VG"], ["created_at", "2020-05-05 18:44:13.025898"], ["updated_at", "2020-05-05 18:44:13.025898"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Steve Crooks III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pjZ3n4OraOo2VoS4WwU6WOKhqPBDykhWUbUC588y7uHUSiEE0r15i"], ["created_at", "2020-05-05 18:44:13.030067"], ["updated_at", "2020-05-05 18:44:13.030067"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jorge Metz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$b7f1huoXJbEaaegTndbSIuaMUbcuA3pWMG/12o54r.NEUPFi30hEG"], ["created_at", "2020-05-05 18:44:13.033604"], ["updated_at", "2020-05-05 18:44:13.033604"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Isidro Murazik"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vrGIncKDmuB/h8jct8Htd.ySVxesfVb36oden2.snguCizrhSZ2OS"], ["created_at", "2020-05-05 18:44:13.036253"], ["updated_at", "2020-05-05 18:44:13.036253"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:44:13 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.39ms) +Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms | Allocations: 2203) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Winifred Carroll"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OQX4P5Ryrnul9WwQXAQ0SOki0i9Y0UatZF/nnUAKZ9N0o1zpQytb6"], ["created_at", "2020-05-05 18:44:13.053954"], ["updated_at", "2020-05-05 18:44:13.053954"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lavonne Johns"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ISawD3ARsvnZSFbrSrHpUuqCxBDj971wolJ0aNrSpSMLufSG/SfGu"], ["created_at", "2020-05-05 18:44:13.058975"], ["updated_at", "2020-05-05 18:44:13.058975"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Yolanda McDermott"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$r3mkhJtPSsZGZ9KuAMlPKe..mz6FxV5soibTsPIXlGxr6PtoxEsYS"], ["created_at", "2020-05-05 18:44:13.061888"], ["updated_at", "2020-05-05 18:44:13.061888"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mckinley Rohan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nId8MMb27vZJNfATnQpOZ.Je6M33tAT8/lpboL6s6Mf7bXm34Z/pC"], ["created_at", "2020-05-05 18:44:13.064375"], ["updated_at", "2020-05-05 18:44:13.064375"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Camille Moen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LvCooxMJ/qkjaWVBz2Cspu3dv4yaIBXDVHrco7nCBlZhfL4d4YIqe"], ["created_at", "2020-05-05 18:44:13.066859"], ["updated_at", "2020-05-05 18:44:13.066859"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Emmitt Parisian"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$afzNn7Uxr7Jc8WF6wwbk6ea7p6muBvPp1Uj2GCqQfr8CxbYBOVbP."], ["created_at", "2020-05-05 18:44:13.070111"], ["updated_at", "2020-05-05 18:44:13.070111"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Thad Gutmann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gHYdXRDxvWTvk0260wHM.ueuSAIlWsp2kwnjwB7YIEFqAk421fWHy"], ["created_at", "2020-05-05 18:44:13.073626"], ["updated_at", "2020-05-05 18:44:13.073626"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Valentin Kovacek"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$V0G7c9eLJjIHzoLoj5mhCeWZoYnScsuyfx.XKbndKDFoGqVuR4JYG"], ["created_at", "2020-05-05 18:44:13.076625"], ["updated_at", "2020-05-05 18:44:13.076625"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Danille Towne"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ocIYEhalT/izm8xWqulQS.82r8vb6fF3aK6JlJogySrdSpyOkofYS"], ["created_at", "2020-05-05 18:44:13.079363"], ["updated_at", "2020-05-05 18:44:13.079363"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kraig Howe DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Z0UOEmszakrSdQuN6IOmcOxs3P3/WGwEDWr73QOk9PSmEKZ1CnY7a"], ["created_at", "2020-05-05 18:44:13.081776"], ["updated_at", "2020-05-05 18:44:13.081776"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:44:13 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.23ms) +Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:44:13 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.52ms) +Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Meridith Crooks"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rCIkGqa0iUaHPDaeSsF1i.SMyiAEiT0.7w.Zqkc0BPjmYGBMNyrYW"], ["created_at", "2020-05-05 18:44:13.104022"], ["updated_at", "2020-05-05 18:44:13.104022"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Palmer Roob"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$McLLIpw6d8qQgrMIYzvjr.O7SQfvYlYGiVAg51aHV6OnlLGjTslg."], ["created_at", "2020-05-05 18:44:13.109899"], ["updated_at", "2020-05-05 18:44:13.109899"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Milton Crooks"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3NSKTUszyTMuKiXYHBydKO.ydC2zQcAqUwEiNXjmT8mU8qeD8Sp.a"], ["created_at", "2020-05-05 18:44:13.112990"], ["updated_at", "2020-05-05 18:44:13.112990"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Brendan Heathcote"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$o5wpk5Z7XUX9VYGqdBuOUO49q5eouPGYIo/avy7Dv3cS5oixxsq1O"], ["created_at", "2020-05-05 18:44:13.116388"], ["updated_at", "2020-05-05 18:44:13.116388"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Doretta Ryan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$PDuO2Eyax6osiaoJEr6cbukpqq26VCxWYc9Jep5J5A0D.T4BqV7f2"], ["created_at", "2020-05-05 18:44:13.119068"], ["updated_at", "2020-05-05 18:44:13.119068"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Les Cartwright"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$yhZNoT/xz4hOeNqBXujEEeEh9N3.81kc5XYxQto6Tz.aJqTYgZuW."], ["created_at", "2020-05-05 18:44:13.121446"], ["updated_at", "2020-05-05 18:44:13.121446"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Irving Terry"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VRCN1xYs9arBqo9AX7rGQuDmaxHH4xQG7sbbiNrGTzQ5zC3FTTGGS"], ["created_at", "2020-05-05 18:44:13.123857"], ["updated_at", "2020-05-05 18:44:13.123857"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mikaela Lind"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NhhWz8ylFAe7zZIN6RwjuuBATl3NguJVnjhIdi9toA/y1T4n/98ca"], ["created_at", "2020-05-05 18:44:13.127146"], ["updated_at", "2020-05-05 18:44:13.127146"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Maria Ebert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Nt2iGxtIlbeCG4HGe6epsOtWJleIDvVSEuPv9PM7bV5tWtU.lwvVu"], ["created_at", "2020-05-05 18:44:13.130384"], ["updated_at", "2020-05-05 18:44:13.130384"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Dirk Raynor"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$31XlW.rStWTUhM/DKSnwsOs4lPz5zP6L4f07WbtTE8jyiDdYz.xyO"], ["created_at", "2020-05-05 18:44:13.133334"], ["updated_at", "2020-05-05 18:44:13.133334"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:44:13 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.78ms) +Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:44:13 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.56ms) +Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lavonia Welch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$K59lZ6b1wIBb5GVKlSVdheFBJOn5z5KOrckqPBUEqBcW6Zv5VHMee"], ["created_at", "2020-05-05 18:44:13.153635"], ["updated_at", "2020-05-05 18:44:13.153635"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Ivonne Ritchie"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Y9VI70lHG4LPJzIfHojU5.2Jt0SLAKS3zARhZdhKcn4O98S.3bYDS"], ["created_at", "2020-05-05 18:44:13.157566"], ["updated_at", "2020-05-05 18:44:13.157566"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Eun Frami"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WUtSIymsXV8cKzKVmDX7iO4CxqLUzakO6yfN4TEFCVFKTUrRIWNQa"], ["created_at", "2020-05-05 18:44:13.160801"], ["updated_at", "2020-05-05 18:44:13.160801"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marcelo Yost"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$29k04XkEyU23cttvO3lWMuYMpHd8cuO.ZtzVuk1u.zVpbzW8C0N.K"], ["created_at", "2020-05-05 18:44:13.163409"], ["updated_at", "2020-05-05 18:44:13.163409"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Floria Carter"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UYy5E9vRb5LXwkHYkfw2eeEzBtW6DNbedNO8.33mR8l5H/8CLfsXW"], ["created_at", "2020-05-05 18:44:13.165896"], ["updated_at", "2020-05-05 18:44:13.165896"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Thalia Reichert IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$d6XVTkjSwOqP/91oRjyxe.458Xq2X4vJwV2m.jjePiX2vYmsW49eG"], ["created_at", "2020-05-05 18:44:13.168542"], ["updated_at", "2020-05-05 18:44:13.168542"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kimber Medhurst"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JYMsFeZFb4i90gPWTUaR5eeCr0WKUFyfPNNT0Tp9D.RVUrdjC.Icq"], ["created_at", "2020-05-05 18:44:13.172336"], ["updated_at", "2020-05-05 18:44:13.172336"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Howard Kerluke MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HShhpE3JomptYeNJUVc6HO5ltU0s4lYzdyA6j7DqqjeK4QaL0wqGe"], ["created_at", "2020-05-05 18:44:13.175270"], ["updated_at", "2020-05-05 18:44:13.175270"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marcellus Cormier Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Aia/bgpRriKhZa8a8MfFvuBxUBe5wkdckkbznKg8faRH/SGD4or.q"], ["created_at", "2020-05-05 18:44:13.178452"], ["updated_at", "2020-05-05 18:44:13.178452"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Charolette Donnelly"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$b3W5eVjBH4//XfEj3HACoeuG/V7VwwSm3yNip2V91aKh.7frhkjnu"], ["created_at", "2020-05-05 18:44:13.180982"], ["updated_at", "2020-05-05 18:44:13.180982"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:44:13 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.79ms) +Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:44:13 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Porter Zulauf"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$MVhe2AEnoLM.G935DU0HMurC6tL7HtnutNCL38uyQxz4EaPRq4A6C"], ["created_at", "2020-05-05 18:44:13.201369"], ["updated_at", "2020-05-05 18:44:13.201369"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shannan Funk"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$iQjT/18GdhVE51/aruyd.ulvYiRA95jFNUCBP4QIIljNUYfjuSnTG"], ["created_at", "2020-05-05 18:44:13.206074"], ["updated_at", "2020-05-05 18:44:13.206074"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Fausto Brown"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DzcnWhm7sBqxyvMMuaKmieDvfJBWmLHvDuXkOxDOnwPszi6gP/VLi"], ["created_at", "2020-05-05 18:44:13.210116"], ["updated_at", "2020-05-05 18:44:13.210116"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Deonna Wunsch MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BtjSaTSJ8aob0BBzj4Bd7u7kchh759fY2DVs6nfUXbSTYQ7gIbuWa"], ["created_at", "2020-05-05 18:44:13.213669"], ["updated_at", "2020-05-05 18:44:13.213669"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lael Ziemann MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2ghAFPDgHZ/KfNFyp.Uzye3oL59K8lA41ibGD9i2NaKteGBI2ccBe"], ["created_at", "2020-05-05 18:44:13.216583"], ["updated_at", "2020-05-05 18:44:13.216583"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Joni Weissnat"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KZY2lMnGsoUs.HccsbnMPu6y3vZ7icXN2TY8cqa9aIuqCQsKqqNkS"], ["created_at", "2020-05-05 18:44:13.218953"], ["updated_at", "2020-05-05 18:44:13.218953"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Merle Kuphal"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tqI9M2BBiROHWFgXEvk5zeEv2GLVyj1zxwLJqKOSxyoLzdZ7iFnB6"], ["created_at", "2020-05-05 18:44:13.221423"], ["updated_at", "2020-05-05 18:44:13.221423"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Halley Wilkinson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vdtx28sOYsbZwJbZOLMOIOCqQEyKV0ifKP3SY4MVOg2G1on.Wic1O"], ["created_at", "2020-05-05 18:44:13.223762"], ["updated_at", "2020-05-05 18:44:13.223762"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Myesha Rohan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$d7yUY5OnyqDwEasiEooBReg6/BXFfS8wUcRDZ5fpvVXZDQKdRw0Oq"], ["created_at", "2020-05-05 18:44:13.226660"], ["updated_at", "2020-05-05 18:44:13.226660"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hollie Schneider"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Tzzy/HMjNWXrdGoaVlT1ZOpUdq6CfWDNn1N8JeSdY.ecmhIb6U3NO"], ["created_at", "2020-05-05 18:44:13.229855"], ["updated_at", "2020-05-05 18:44:13.229855"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:44:13 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.9ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:44:13 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (13.46ms) +Completed 404 Not Found in 15ms (Views: 13.9ms | ActiveRecord: 0.1ms | Allocations: 526) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gertrude Homenick"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$./BhjzyFFj0a5oM5kvAyOu.7KHVcJ3Su/2kjVkDEHbdUI8F5J/3na"], ["created_at", "2020-05-05 18:44:13.263699"], ["updated_at", "2020-05-05 18:44:13.263699"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Luigi Crooks"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UY1lhF07hpcPG4tONGJtKeL.pChrw1bNkqMoGPlhSrLSPFTQObYLe"], ["created_at", "2020-05-05 18:44:13.267759"], ["updated_at", "2020-05-05 18:44:13.267759"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Idalia Mitchell MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$cTDcXSWIgOrsrGmAfVP7Vec0ndDpmO5RvxIfkVBpTKKnRYawQOOXi"], ["created_at", "2020-05-05 18:44:13.271070"], ["updated_at", "2020-05-05 18:44:13.271070"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Raymond Legros"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$K6qDGAkdRtUfI2L/HeTwHOxNWWZtAWoJ0mOfGtRARd9OxrzPqZKTC"], ["created_at", "2020-05-05 18:44:13.274547"], ["updated_at", "2020-05-05 18:44:13.274547"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Artie Osinski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$H2/Gqaa.5dYMV0X6XM.2j.C95RLXB0gWTV1giurNxgCiNr6TCUeSW"], ["created_at", "2020-05-05 18:44:13.277904"], ["updated_at", "2020-05-05 18:44:13.277904"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dominic Gleichner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0.61iTWc0R1.ee90J0oXJezkuRaus.wXZHl3WGuhpQEdmLPug5K82"], ["created_at", "2020-05-05 18:44:13.280443"], ["updated_at", "2020-05-05 18:44:13.280443"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Lin Klein"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KdW4MJ8rxn/Q/f.qqJUo0.BdW4RcKq3QZ07eLIzsHJelwtGrzOSpu"], ["created_at", "2020-05-05 18:44:13.282867"], ["updated_at", "2020-05-05 18:44:13.282867"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Lynne Osinski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0Ru9.ClFXAtTRCe7SXDe0uumDtbzJM1kJjQJqcwpaeurX5F.ZNdn."], ["created_at", "2020-05-05 18:44:13.285328"], ["updated_at", "2020-05-05 18:44:13.285328"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gilbert Prohaska"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$MrWSrVrQppAMxpZjeWApNOz6Ul9vEuPe8ph9luKrxk/3tEvCKEhMm"], ["created_at", "2020-05-05 18:44:13.287807"], ["updated_at", "2020-05-05 18:44:13.287807"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tresa Larkin Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TQLZlsdgA6nPpkBFhzoUPe0QJ8bQENmwQc1i7VP9C0uOsGX/YE8QK"], ["created_at", "2020-05-05 18:44:13.291060"], ["updated_at", "2020-05-05 18:44:13.291060"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:44:13 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.82ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:44:13 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Sheyla", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "email"=>"shey@mail.com"} +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sheyla"], ["email", "shey@mail.com"], ["password_digest", "$2a$04$CWzUnKWlloXe19cs8LulSePVmWp7WKUjfu7eMgUnUA7FrF3mqskjK"], ["created_at", "2020-05-05 18:44:13.301938"], ["updated_at", "2020-05-05 18:44:13.301938"], ["picture", "https://joeschmoe.io/api/v1/josh"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.7ms) +Completed 201 Created in 10ms (Views: 1.3ms | ActiveRecord: 0.4ms | Allocations: 1715) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Daina Rolfson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Y2HXoRTrOPXEUE/RAmPMDOYS7AFelgNc7WRwi.V7iagaaZibxNwVq"], ["created_at", "2020-05-05 18:44:13.320771"], ["updated_at", "2020-05-05 18:44:13.320771"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Roger Schmeler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HnoY.fjTSiPTLpbPgxqK1uP/ArkrTnbUAS6JsGlgcQKZv1BLnxJ3y"], ["created_at", "2020-05-05 18:44:13.325422"], ["updated_at", "2020-05-05 18:44:13.325422"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lyndon Kub"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NcX5IFH/EjFSjZtvz/vt..R3uqardgTg0JmGSq3OjSxP1MgkH.5Z."], ["created_at", "2020-05-05 18:44:13.329194"], ["updated_at", "2020-05-05 18:44:13.329194"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Estela Schiller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9e7PD8uTWnBEkqZcZO7UkuDo/t7rzCBPbzM2OVw0X.F1OXC42e7pi"], ["created_at", "2020-05-05 18:44:13.333035"], ["updated_at", "2020-05-05 18:44:13.333035"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Denyse Langworth"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dK3HnUgTaoN0/qSIxVb9YOXHrgFGiYKo4XrVVPu4KeqpohEqjyZu."], ["created_at", "2020-05-05 18:44:13.335949"], ["updated_at", "2020-05-05 18:44:13.335949"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Willian Anderson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$EKUvH2Y9nEffHCp/gHYXLO0x2TobwGlAFmUgcz7hBjWp9dRPdZUHq"], ["created_at", "2020-05-05 18:44:13.338340"], ["updated_at", "2020-05-05 18:44:13.338340"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alayna Hane"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gg/DqTGO7DOP7TuLjPq52up5mPuw8YPRkwVodNF6OjR.2o1dy3rSy"], ["created_at", "2020-05-05 18:44:13.340722"], ["updated_at", "2020-05-05 18:44:13.340722"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Heath Haley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JFa6Aea/hrjOR56Sn.SlTusRhk.xiqjVgaUvaXjIGRRK10i4ZvCyi"], ["created_at", "2020-05-05 18:44:13.343848"], ["updated_at", "2020-05-05 18:44:13.343848"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kraig Lesch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$R0xJSbT1pI2Gam4OG.X85.MAe./hIuA67FstlC7lseaThAprjpYfO"], ["created_at", "2020-05-05 18:44:13.346682"], ["updated_at", "2020-05-05 18:44:13.346682"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Virgina Lubowitz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$uS4tmmktp6FClJeExpM85.mEefFN/9MN5mMLHNo8KKU3dtb.qxn36"], ["created_at", "2020-05-05 18:44:13.349270"], ["updated_at", "2020-05-05 18:44:13.349270"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:44:13 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.8ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:44:13 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Sheyla", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "email"=>"shey@mail.com"} +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sheyla"], ["email", "shey@mail.com"], ["password_digest", "$2a$04$qsAVa7SzSHeE5CsAvjvyp.gVwnCTRwpDg9yeyvg7bKLKmv3yBDMfe"], ["created_at", "2020-05-05 18:44:13.359659"], ["updated_at", "2020-05-05 18:44:13.359659"], ["picture", "https://joeschmoe.io/api/v1/josephine"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.32ms) +Completed 201 Created in 7ms (Views: 0.7ms | ActiveRecord: 0.3ms | Allocations: 1329) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Solange Thompson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.JPOjz7i6iuFDp7PvbwY8.k6nzLzlLiNCeb2HKz3CpSmHNwaOyhDG"], ["created_at", "2020-05-05 18:44:13.375223"], ["updated_at", "2020-05-05 18:44:13.375223"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Freddie Bechtelar"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$q94NpL4JUqP68py11rhRiuA7pcWFvtkrQ8A1nzTd4VwvjFvgC7Gvu"], ["created_at", "2020-05-05 18:44:13.379829"], ["updated_at", "2020-05-05 18:44:13.379829"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Antonia Harris"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.xBB3RfdLGGcQJsuPbVfm./WRxETbkO93iRA1fxcwGLxDsIIjo3BW"], ["created_at", "2020-05-05 18:44:13.382664"], ["updated_at", "2020-05-05 18:44:13.382664"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tami Goodwin Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gmNZfNWv7vxcDJ25VcZQKeOZfB6roACTNzF5RDz7KW/.Vy72pnEGO"], ["created_at", "2020-05-05 18:44:13.385149"], ["updated_at", "2020-05-05 18:44:13.385149"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kesha Shanahan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4BRDeo9/af4NqFMwHwZH9eQlZLM6jG1.yeVqCNvRyXbaJQrN4o6pa"], ["created_at", "2020-05-05 18:44:13.387669"], ["updated_at", "2020-05-05 18:44:13.387669"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Frederic Lehner I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ad3XRR9KA5RbFBVBBg4tVuaVuXWhxaNf4FN5kZtwzuj2Qco7D7Vdm"], ["created_at", "2020-05-05 18:44:13.390597"], ["updated_at", "2020-05-05 18:44:13.390597"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lydia Lockman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$srO3RDa.BGMEq7ykkVheGevJprSnBzq/j5xanWpCyaL07n5Z.ORey"], ["created_at", "2020-05-05 18:44:13.394382"], ["updated_at", "2020-05-05 18:44:13.394382"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Mireya Parisian"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$w.SvjiMIXKZ7t9WaGjqfZOqGdbJaCVJY.6bQh/tw8bKh55zoBmmeu"], ["created_at", "2020-05-05 18:44:13.397392"], ["updated_at", "2020-05-05 18:44:13.397392"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Maragret Reilly"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Iuafx7RcCdE8nQJRvBfaPu.IDWzVMqA8vSKSvBB3Byl0NVl9z38ra"], ["created_at", "2020-05-05 18:44:13.399810"], ["updated_at", "2020-05-05 18:44:13.399810"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tanner Dooley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$wRVuQtLyqqQCiJC2tXB7RuFfL2n1ACHTpjBR1U/ZJXApwgxpyDnMO"], ["created_at", "2020-05-05 18:44:13.402239"], ["updated_at", "2020-05-05 18:44:13.402239"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:44:13 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.03ms) +Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:44:13 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Foobar"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms) +Completed 401 Unauthorized in 3ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 1817) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (1.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Trina O'Hara"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JDrYq5Vj34IOWI.vxRUWN.vn8sFWh0Lv44skRThL4jaFovSiYuzya"], ["created_at", "2020-05-05 18:44:13.425107"], ["updated_at", "2020-05-05 18:44:13.425107"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miriam Wunsch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0tszDBlDXgGgP9k5l7OAP.YL6.1oWO0/UbD8tH5WcPJ9klTNCjVbq"], ["created_at", "2020-05-05 18:44:13.431003"], ["updated_at", "2020-05-05 18:44:13.431003"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Chester Kohler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rIk/Yg9ZY0hAqM78jdkeFuNX1fC1Yvn6WZ9i5pwfxYEcEGQQZl6Ba"], ["created_at", "2020-05-05 18:44:13.434127"], ["updated_at", "2020-05-05 18:44:13.434127"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Noel Hammes"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$241G9q5HAouClFv/511/i.FuNi.F5u6TEvLuy9Ex5u6OV427ObYze"], ["created_at", "2020-05-05 18:44:13.437209"], ["updated_at", "2020-05-05 18:44:13.437209"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Anderson Altenwerth"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$W3ZyHvwJsNO5.Wm/d2E1KezOIVvMKR15PJtQGP1rNHTv0zuRTj84K"], ["created_at", "2020-05-05 18:44:13.440163"], ["updated_at", "2020-05-05 18:44:13.440163"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mattie Anderson IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$i008O14HZqhotg0oVJfF6ev45CTAguhGd/t2gkPasrIqkPX0UNVEm"], ["created_at", "2020-05-05 18:44:13.443303"], ["updated_at", "2020-05-05 18:44:13.443303"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Roberto Corkery"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BxrTLGJmMRptX8x/iAIibOE4cxhuMtalWciRJ00mIkV22536CeW4e"], ["created_at", "2020-05-05 18:44:13.446621"], ["updated_at", "2020-05-05 18:44:13.446621"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Francisca Nikolaus"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1L9zptNlJOss9UVwzaqc2u4Qb9.7xsBjqT7f.8UzRBLDxVRRFVLdm"], ["created_at", "2020-05-05 18:44:13.449464"], ["updated_at", "2020-05-05 18:44:13.449464"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kevin Littel MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HiTGj6AdCO3iCAFxVdyHyea2szmJ7ZbM2EhMJz9SuL6tJRfITuhT6"], ["created_at", "2020-05-05 18:44:13.453459"], ["updated_at", "2020-05-05 18:44:13.453459"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Young Little"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$sz3E7hxe4hadTwPEiyDaf.ET0cfOtWSf7bbuZ4Y6SL.FIhPygTQiy"], ["created_at", "2020-05-05 18:44:13.456239"], ["updated_at", "2020-05-05 18:44:13.456239"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:44:13 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.64ms) +Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:44:13 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms) +Completed 401 Unauthorized in 3ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 1597) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Angel Toy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7qqzRdgkLWUYnPh402i4KOr5Bjydmx4kAH4LL0qiBkMPEWTKIASjO"], ["created_at", "2020-05-05 18:44:13.479582"], ["updated_at", "2020-05-05 18:44:13.479582"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Joanne Howell PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$f9KVdPkGAPSvUaarye2Y8uXpUs4Nj/lN11SuR69cvsgRIz6jHlK52"], ["created_at", "2020-05-05 18:44:13.484292"], ["updated_at", "2020-05-05 18:44:13.484292"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Angela Rowe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8hcA4dNEOFRw557pTfSBAOHbS0S3EDCYNceE8OjUS2S2jREShgw8K"], ["created_at", "2020-05-05 18:44:13.487348"], ["updated_at", "2020-05-05 18:44:13.487348"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jackson Zulauf"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SZKBj1VMiGmcqMGmGpC9R.LPQ5cpvJcmRGslp9suuFaG3EG1zTXW."], ["created_at", "2020-05-05 18:44:13.491808"], ["updated_at", "2020-05-05 18:44:13.491808"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leana Dickens"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CJXY4LH7JC8zg2pYcYQObOsnImKudoDteYLUvcXTm6LGEtdxisJhq"], ["created_at", "2020-05-05 18:44:13.496423"], ["updated_at", "2020-05-05 18:44:13.496423"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gail Aufderhar"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$o5LeuoJsiyK5JZpUWm.wEuolzY1h1/M2To8WpPE/UioZ9eEJHaU/u"], ["created_at", "2020-05-05 18:44:13.499965"], ["updated_at", "2020-05-05 18:44:13.499965"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tracey Kertzmann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UTt4k90PMQflUXYIJd040O52xPKszP3GEt5zF0K5fw6fvg0Z22jSq"], ["created_at", "2020-05-05 18:44:13.503324"], ["updated_at", "2020-05-05 18:44:13.503324"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Al Christiansen PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xaOmbYon32xnbXUVdaCKo.akqjSOlHu/VwoE88PCCv3LWczYhsgAe"], ["created_at", "2020-05-05 18:44:13.506554"], ["updated_at", "2020-05-05 18:44:13.506554"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Travis Gulgowski DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JGC80XJVqsMJNtPlYk6UIuPvH3zK2/ILbU5yuCRqQXHPp803RSPje"], ["created_at", "2020-05-05 18:44:13.511338"], ["updated_at", "2020-05-05 18:44:13.511338"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Adolph Bartoletti"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$A5qYAR32DiA3vGJBC9nN8.ynkbei05GMYtj6NGA5t6JyzAcPOSvWK"], ["created_at", "2020-05-05 18:44:13.515353"], ["updated_at", "2020-05-05 18:44:13.515353"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:44:13 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.21ms) +Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started PUT "/users/1" for 127.0.0.1 at 2020-05-05 15:44:13 -0300 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (39.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (2.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lee Doyle IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VLFeOEYDkNoyfa5vnRzrqOEap.QNgD1aReaveEQl9TGSHCFOpUXWq"], ["created_at", "2020-05-05 18:44:13.575024"], ["updated_at", "2020-05-05 18:44:13.575024"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dick Collins Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pv6Tlj3Dfn7TS36msMLk2u9iM1v3dpAR.xZRGmKCPWdlvjuxjS4uG"], ["created_at", "2020-05-05 18:44:13.582291"], ["updated_at", "2020-05-05 18:44:13.582291"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ora Cassin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VxIZfiph52NTZgQ9LNlnbeVTOzgEviZhykxVtmjFbErOrv1KxxuUK"], ["created_at", "2020-05-05 18:44:13.585829"], ["updated_at", "2020-05-05 18:44:13.585829"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kiera Carroll"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZHO.Qn/TPc6rFmmiVJmGce81cTK.u7pkNaMf2gnbrAaJY3KiZDPWO"], ["created_at", "2020-05-05 18:44:13.588978"], ["updated_at", "2020-05-05 18:44:13.588978"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Michale Greenfelder"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$i43rQpaAVz4puc0LFIysuu10iwCkO73lfrAA7/onp/tFc5DOgXXxm"], ["created_at", "2020-05-05 18:44:13.593044"], ["updated_at", "2020-05-05 18:44:13.593044"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kala O'Keefe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HjMgh094e2FA5T4nz2nkUe6KyVVFoS6J8hLakr3FMpU5OR1hCN6tm"], ["created_at", "2020-05-05 18:44:13.597604"], ["updated_at", "2020-05-05 18:44:13.597604"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Izetta Mayert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Q1V7gFmDVoerYtywY6x2kOGR2MdcaPiPzTL3vsamWX3iDP/kN9ECu"], ["created_at", "2020-05-05 18:44:13.600736"], ["updated_at", "2020-05-05 18:44:13.600736"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Corrin Hickle"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$AODCZ9pl9CK2.zxK.1w1POLkIfdj878q6//BjNaz0RheLdwoS0Hcu"], ["created_at", "2020-05-05 18:44:13.603802"], ["updated_at", "2020-05-05 18:44:13.603802"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Milton Dibbert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1cgm.j3TvfQOqcrrHEqAAuTM2eE8rUkC9i36U5zfV2ixuyFcmKBFi"], ["created_at", "2020-05-05 18:44:13.607000"], ["updated_at", "2020-05-05 18:44:13.607000"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cassey Waters"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1e1OW7BYyjHW/AFjkL4u1O2Xzvx1kSAIQ0MJJjW.Sd2nqJPZKN93m"], ["created_at", "2020-05-05 18:44:13.611858"], ["updated_at", "2020-05-05 18:44:13.611858"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:44:13 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.25ms) +Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started PUT "/users/1" for 127.0.0.1 at 2020-05-05 15:44:13 -0300 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (4.7ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (98.0ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (114.1ms) DELETE FROM "user_meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (175.3ms) DELETE FROM "user_meetings"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (1.2ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (101.7ms) DELETE FROM "meets"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (103.4ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (90.1ms) DELETE FROM "messagems"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (71.4ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.0ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Laverna Welch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$d8Q0mLK7r9kvlTU9oZzSHeWqak080KlYwFEYsu2.k0pAmwfhQsSnK"], ["created_at", "2020-05-05 18:45:52.634170"], ["updated_at", "2020-05-05 18:45:52.634170"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Ullam sunt non alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:52.653049"], ["updated_at", "2020-05-05 18:45:52.653049"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est autem aut qui?"], ["description", "Voluptates quia minima amet."], ["date", "2020-05-06 18:45:52.676589"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.703384"], ["updated_at", "2020-05-05 18:45:52.703384"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam ut fugit et?"], ["description", "Quia totam vitae quo."], ["date", "2020-05-06 18:45:52.705042"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.705903"], ["updated_at", "2020-05-05 18:45:52.705903"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est et provident illum?"], ["description", "Eius eligendi et quo."], ["date", "2020-05-06 18:45:52.707090"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.707843"], ["updated_at", "2020-05-05 18:45:52.707843"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor et at deserunt?"], ["description", "Dolore id doloremque omnis."], ["date", "2020-05-06 18:45:52.709665"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.710716"], ["updated_at", "2020-05-05 18:45:52.710716"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore repudiandae corrupti dignissimos?"], ["description", "Similique beatae quis aut."], ["date", "2020-05-06 18:45:52.712043"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.712798"], ["updated_at", "2020-05-05 18:45:52.712798"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam debitis aperiam laboriosam?"], ["description", "Dolorum eos deserunt nulla."], ["date", "2020-05-06 18:45:52.714073"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.715005"], ["updated_at", "2020-05-05 18:45:52.715005"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id tenetur aliquid ut?"], ["description", "Iusto atque modi animi."], ["date", "2020-05-06 18:45:52.716304"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.717052"], ["updated_at", "2020-05-05 18:45:52.717052"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum ad accusamus nam?"], ["description", "Necessitatibus odit vel molestiae."], ["date", "2020-05-06 18:45:52.718234"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.719093"], ["updated_at", "2020-05-05 18:45:52.719093"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum quisquam esse delectus?"], ["description", "Impedit similique possimus facere."], ["date", "2020-05-06 18:45:52.721019"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.722093"], ["updated_at", "2020-05-05 18:45:52.722093"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente reprehenderit recusandae quisquam?"], ["description", "In et enim impedit."], ["date", "2020-05-06 18:45:52.723974"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.724956"], ["updated_at", "2020-05-05 18:45:52.724956"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti cumque ad id?"], ["description", "Maxime magnam iure debitis."], ["date", "2020-05-06 18:45:52.727231"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.728203"], ["updated_at", "2020-05-05 18:45:52.728203"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis ea sed ut?"], ["description", "Quis sit provident perspiciatis."], ["date", "2020-05-06 18:45:52.729616"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.730437"], ["updated_at", "2020-05-05 18:45:52.730437"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis tempora esse doloremque?"], ["description", "Ratione doloremque accusantium vel."], ["date", "2020-05-06 18:45:52.731653"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.732371"], ["updated_at", "2020-05-05 18:45:52.732371"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit dolorem cupiditate et?"], ["description", "Est quaerat ex veritatis."], ["date", "2020-05-06 18:45:52.733602"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.734387"], ["updated_at", "2020-05-05 18:45:52.734387"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente non expedita facilis?"], ["description", "Non earum nesciunt quia."], ["date", "2020-05-06 18:45:52.735673"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.736417"], ["updated_at", "2020-05-05 18:45:52.736417"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus quia odit quidem?"], ["description", "Eveniet magni ex itaque."], ["date", "2020-05-06 18:45:52.737630"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.738354"], ["updated_at", "2020-05-05 18:45:52.738354"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae culpa perspiciatis vero?"], ["description", "Voluptates explicabo accusantium consequuntur."], ["date", "2020-05-06 18:45:52.740366"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.742539"], ["updated_at", "2020-05-05 18:45:52.742539"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque sit ullam quibusdam?"], ["description", "Quia aliquid tempore amet."], ["date", "2020-05-06 18:45:52.744445"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.745354"], ["updated_at", "2020-05-05 18:45:52.745354"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo veniam et recusandae?"], ["description", "Itaque quam molestiae necessitatibus."], ["date", "2020-05-06 18:45:52.746638"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.747393"], ["updated_at", "2020-05-05 18:45:52.747393"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut facere ullam nam?"], ["description", "Magnam voluptatem ut nostrum."], ["date", "2020-05-06 18:45:52.748620"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.749353"], ["updated_at", "2020-05-05 18:45:52.749353"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:45:52 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (7.9ms) +Completed 200 OK in 34ms (Views: 15.6ms | ActiveRecord: 0.5ms | Allocations: 8637) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Keith Oberbrunner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JxsMQOog6eOSH3uxgqjQpeLlhUW.lgWpPQ60nbsCmo72eYBG1QlRa"], ["created_at", "2020-05-05 18:45:52.836384"], ["updated_at", "2020-05-05 18:45:52.836384"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.4ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "modi"], ["description", "Sed ea accusamus at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:52.840568"], ["updated_at", "2020-05-05 18:45:52.840568"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam velit earum dolore?"], ["description", "Harum amet minima veniam."], ["date", "2020-05-06 18:45:52.844354"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.845492"], ["updated_at", "2020-05-05 18:45:52.845492"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum magnam repudiandae et?"], ["description", "Corporis perspiciatis quidem ut."], ["date", "2020-05-06 18:45:52.846996"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.847812"], ["updated_at", "2020-05-05 18:45:52.847812"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos ratione at aut?"], ["description", "Id maxime animi et."], ["date", "2020-05-06 18:45:52.849047"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.849849"], ["updated_at", "2020-05-05 18:45:52.849849"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam molestiae aliquid rerum?"], ["description", "Qui et sit voluptatem."], ["date", "2020-05-06 18:45:52.851120"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.851877"], ["updated_at", "2020-05-05 18:45:52.851877"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et tempore rerum ipsum?"], ["description", "Nihil voluptas id laborum."], ["date", "2020-05-06 18:45:52.853043"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.853835"], ["updated_at", "2020-05-05 18:45:52.853835"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit molestias eveniet quae?"], ["description", "Voluptates aut sed doloremque."], ["date", "2020-05-06 18:45:52.855131"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.856043"], ["updated_at", "2020-05-05 18:45:52.856043"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem eum vero aliquid?"], ["description", "Possimus quo quasi sunt."], ["date", "2020-05-06 18:45:52.857640"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.858992"], ["updated_at", "2020-05-05 18:45:52.858992"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum iusto magni deleniti?"], ["description", "Aut accusantium laborum et."], ["date", "2020-05-06 18:45:52.861565"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.864543"], ["updated_at", "2020-05-05 18:45:52.864543"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut est eius vero?"], ["description", "Eveniet omnis mollitia beatae."], ["date", "2020-05-06 18:45:52.866497"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.867417"], ["updated_at", "2020-05-05 18:45:52.867417"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis omnis sint delectus?"], ["description", "Quam nemo perspiciatis magni."], ["date", "2020-05-06 18:45:52.869286"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.870216"], ["updated_at", "2020-05-05 18:45:52.870216"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos nostrum totam omnis?"], ["description", "Quia veniam esse aut."], ["date", "2020-05-06 18:45:52.871648"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.872439"], ["updated_at", "2020-05-05 18:45:52.872439"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora nostrum sint non?"], ["description", "Corporis similique aut voluptatibus."], ["date", "2020-05-06 18:45:52.873750"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.874658"], ["updated_at", "2020-05-05 18:45:52.874658"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore ipsum tempora nulla?"], ["description", "Neque optio consequatur quis."], ["date", "2020-05-06 18:45:52.876444"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.877422"], ["updated_at", "2020-05-05 18:45:52.877422"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium aspernatur eaque incidunt?"], ["description", "Maiores ratione quam harum."], ["date", "2020-05-06 18:45:52.879007"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.879974"], ["updated_at", "2020-05-05 18:45:52.879974"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae voluptatem quae quos?"], ["description", "Nulla earum suscipit voluptas."], ["date", "2020-05-06 18:45:52.882313"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.883788"], ["updated_at", "2020-05-05 18:45:52.883788"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus est nulla earum?"], ["description", "Magni odio perspiciatis ipsum."], ["date", "2020-05-06 18:45:52.885380"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.886225"], ["updated_at", "2020-05-05 18:45:52.886225"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia atque harum eligendi?"], ["description", "Quidem non accusamus cupiditate."], ["date", "2020-05-06 18:45:52.887581"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.888594"], ["updated_at", "2020-05-05 18:45:52.888594"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi quisquam tempora et?"], ["description", "Ea eum quas error."], ["date", "2020-05-06 18:45:52.890245"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.891618"], ["updated_at", "2020-05-05 18:45:52.891618"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum accusamus atque doloribus?"], ["description", "Doloribus et delectus est."], ["date", "2020-05-06 18:45:52.893954"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.895159"], ["updated_at", "2020-05-05 18:45:52.895159"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias voluptatibus aut libero?"], ["description", "Accusamus et qui mollitia."], ["date", "2020-05-06 18:45:52.896579"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.897490"], ["updated_at", "2020-05-05 18:45:52.897490"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:45:52 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.7ms) +Completed 200 OK in 13ms (Views: 10.7ms | ActiveRecord: 0.4ms | Allocations: 5518) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Linnie Batz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.NDEl5fVmlvru8GHFGaMY.XwJKRVM8.oSOnrU3QcgISguJgBoEnxq"], ["created_at", "2020-05-05 18:45:52.929658"], ["updated_at", "2020-05-05 18:45:52.929658"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eligendi"], ["description", "Tenetur explicabo suscipit in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:52.933359"], ["updated_at", "2020-05-05 18:45:52.933359"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates nihil rem recusandae?"], ["description", "Voluptatem reprehenderit cupiditate eos."], ["date", "2020-05-06 18:45:52.935149"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.936306"], ["updated_at", "2020-05-05 18:45:52.936306"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum iure accusantium ea?"], ["description", "Ratione ut ullam sint."], ["date", "2020-05-06 18:45:52.937679"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.938463"], ["updated_at", "2020-05-05 18:45:52.938463"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui sed consequatur voluptatibus?"], ["description", "Et ab explicabo autem."], ["date", "2020-05-06 18:45:52.939613"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.940501"], ["updated_at", "2020-05-05 18:45:52.940501"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur tenetur est officiis?"], ["description", "Odio repudiandae commodi in."], ["date", "2020-05-06 18:45:52.944065"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.945420"], ["updated_at", "2020-05-05 18:45:52.945420"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et nobis in voluptate?"], ["description", "Quia non saepe nostrum."], ["date", "2020-05-06 18:45:52.947192"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.948232"], ["updated_at", "2020-05-05 18:45:52.948232"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio quam repudiandae itaque?"], ["description", "Autem consequatur dolorem consequatur."], ["date", "2020-05-06 18:45:52.949557"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.950372"], ["updated_at", "2020-05-05 18:45:52.950372"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum numquam accusamus consequatur?"], ["description", "Doloremque omnis voluptatibus voluptatum."], ["date", "2020-05-06 18:45:52.951557"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.952291"], ["updated_at", "2020-05-05 18:45:52.952291"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit placeat animi ut?"], ["description", "Adipisci asperiores impedit ut."], ["date", "2020-05-06 18:45:52.953513"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.954413"], ["updated_at", "2020-05-05 18:45:52.954413"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui sit dolorem ad?"], ["description", "Eaque fuga repudiandae porro."], ["date", "2020-05-06 18:45:52.955629"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.977750"], ["updated_at", "2020-05-05 18:45:52.977750"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio nihil reprehenderit aut?"], ["description", "Non dignissimos voluptatem voluptatibus."], ["date", "2020-05-06 18:45:52.979707"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.980818"], ["updated_at", "2020-05-05 18:45:52.980818"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut quidem illum ducimus?"], ["description", "Qui beatae et voluptatum."], ["date", "2020-05-06 18:45:52.982978"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.984014"], ["updated_at", "2020-05-05 18:45:52.984014"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam porro quis quia?"], ["description", "Molestias qui dolor tempore."], ["date", "2020-05-06 18:45:52.985514"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.986460"], ["updated_at", "2020-05-05 18:45:52.986460"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur consequuntur id nihil?"], ["description", "Doloremque quisquam animi labore."], ["date", "2020-05-06 18:45:52.987946"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.988814"], ["updated_at", "2020-05-05 18:45:52.988814"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad est quas omnis?"], ["description", "Praesentium voluptatibus exercitationem qui."], ["date", "2020-05-06 18:45:52.990950"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.992174"], ["updated_at", "2020-05-05 18:45:52.992174"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et dolore voluptate incidunt?"], ["description", "Similique rem enim voluptatem."], ["date", "2020-05-06 18:45:52.993608"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.994570"], ["updated_at", "2020-05-05 18:45:52.994570"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum eum ipsam voluptatem?"], ["description", "Laboriosam omnis odit voluptatem."], ["date", "2020-05-06 18:45:52.995991"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.997382"], ["updated_at", "2020-05-05 18:45:52.997382"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam corporis fuga voluptatem?"], ["description", "Optio voluptas qui veniam."], ["date", "2020-05-06 18:45:52.998793"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:52.999676"], ["updated_at", "2020-05-05 18:45:52.999676"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit quod consequatur quos?"], ["description", "Optio magnam qui iusto."], ["date", "2020-05-06 18:45:53.001162"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.002697"], ["updated_at", "2020-05-05 18:45:53.002697"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis ea corporis aspernatur?"], ["description", "Voluptatum animi quos est."], ["date", "2020-05-06 18:45:53.004141"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.005076"], ["updated_at", "2020-05-05 18:45:53.005076"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas voluptas dolorem sed?"], ["description", "Aut facilis inventore hic."], ["date", "2020-05-06 18:45:53.006276"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.007026"], ["updated_at", "2020-05-05 18:45:53.007026"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:45:53 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 404 Not Found in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms | Allocations: 866) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (34.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mara Reinger MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xiAaOM/18iNZIInwLHiyq.vZtFOEBwKrGKh5MbydXBGRNo1jutdcC"], ["created_at", "2020-05-05 18:45:53.029516"], ["updated_at", "2020-05-05 18:45:53.029516"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cumque"], ["description", "Et dolore incidunt eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:53.066378"], ["updated_at", "2020-05-05 18:45:53.066378"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab dolores expedita perferendis?"], ["description", "Non officiis quo aspernatur."], ["date", "2020-05-06 18:45:53.067961"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.068871"], ["updated_at", "2020-05-05 18:45:53.068871"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam et dolores in?"], ["description", "Eos voluptatem distinctio mollitia."], ["date", "2020-05-06 18:45:53.070140"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.070961"], ["updated_at", "2020-05-05 18:45:53.070961"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur natus saepe et?"], ["description", "Explicabo possimus voluptatum earum."], ["date", "2020-05-06 18:45:53.072283"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.073090"], ["updated_at", "2020-05-05 18:45:53.073090"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores sint et quibusdam?"], ["description", "Enim qui fugit rem."], ["date", "2020-05-06 18:45:53.074820"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.075927"], ["updated_at", "2020-05-05 18:45:53.075927"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas inventore sapiente ut?"], ["description", "Magnam unde cumque libero."], ["date", "2020-05-06 18:45:53.077441"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.078339"], ["updated_at", "2020-05-05 18:45:53.078339"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores sed explicabo debitis?"], ["description", "Vitae et dolorem est."], ["date", "2020-05-06 18:45:53.079724"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.080516"], ["updated_at", "2020-05-05 18:45:53.080516"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus commodi qui voluptatem?"], ["description", "Non fugiat adipisci voluptatem."], ["date", "2020-05-06 18:45:53.082475"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.083739"], ["updated_at", "2020-05-05 18:45:53.083739"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum mollitia aperiam ipsa?"], ["description", "Aut quia deserunt blanditiis."], ["date", "2020-05-06 18:45:53.085264"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.086032"], ["updated_at", "2020-05-05 18:45:53.086032"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim voluptatem illo voluptatem?"], ["description", "Commodi qui sint ea."], ["date", "2020-05-06 18:45:53.087350"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.088088"], ["updated_at", "2020-05-05 18:45:53.088088"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui dolore ex ipsam?"], ["description", "Qui ab atque nihil."], ["date", "2020-05-06 18:45:53.090151"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.091558"], ["updated_at", "2020-05-05 18:45:53.091558"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis suscipit quidem nostrum?"], ["description", "Consequatur maiores porro esse."], ["date", "2020-05-06 18:45:53.093114"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.093987"], ["updated_at", "2020-05-05 18:45:53.093987"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non animi assumenda fugiat?"], ["description", "Alias error quos quaerat."], ["date", "2020-05-06 18:45:53.095421"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.096283"], ["updated_at", "2020-05-05 18:45:53.096283"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio praesentium magni exercitationem?"], ["description", "Labore placeat quam pariatur."], ["date", "2020-05-06 18:45:53.097632"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.098386"], ["updated_at", "2020-05-05 18:45:53.098386"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia rem dolorem fuga?"], ["description", "Corporis libero incidunt facere."], ["date", "2020-05-06 18:45:53.099698"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.100475"], ["updated_at", "2020-05-05 18:45:53.100475"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem nisi minima culpa?"], ["description", "Eius dolorem labore et."], ["date", "2020-05-06 18:45:53.102696"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.104523"], ["updated_at", "2020-05-05 18:45:53.104523"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et a officia unde?"], ["description", "Eligendi dignissimos fuga at."], ["date", "2020-05-06 18:45:53.106243"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.107071"], ["updated_at", "2020-05-05 18:45:53.107071"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum delectus at quae?"], ["description", "Reprehenderit tempora incidunt ratione."], ["date", "2020-05-06 18:45:53.109076"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.110183"], ["updated_at", "2020-05-05 18:45:53.110183"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur quaerat ea similique?"], ["description", "Ut qui inventore sapiente."], ["date", "2020-05-06 18:45:53.111649"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.112404"], ["updated_at", "2020-05-05 18:45:53.112404"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum nihil reiciendis aperiam?"], ["description", "Quia iste a rerum."], ["date", "2020-05-06 18:45:53.113641"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.114451"], ["updated_at", "2020-05-05 18:45:53.114451"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid officia et rerum?"], ["description", "Distinctio sequi nostrum dolor."], ["date", "2020-05-06 18:45:53.115697"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.116455"], ["updated_at", "2020-05-05 18:45:53.116455"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:45:53 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Venessa Schmitt"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pREmyfLZYOuzr9LLueXa7O6qLleY.8sC5TsSLFcCt6kC3NQ7MEE.a"], ["created_at", "2020-05-05 18:45:53.136033"], ["updated_at", "2020-05-05 18:45:53.136033"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "totam"], ["description", "Veritatis quia aut consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:53.139830"], ["updated_at", "2020-05-05 18:45:53.139830"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad odit assumenda sit?"], ["description", "Est est eum ut."], ["date", "2020-05-06 18:45:53.142661"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.144827"], ["updated_at", "2020-05-05 18:45:53.144827"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad iure aliquid et?"], ["description", "Cum doloribus aperiam eum."], ["date", "2020-05-06 18:45:53.146724"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.148236"], ["updated_at", "2020-05-05 18:45:53.148236"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos est et in?"], ["description", "Animi in sed magni."], ["date", "2020-05-06 18:45:53.149672"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.150515"], ["updated_at", "2020-05-05 18:45:53.150515"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur consequatur suscipit officia?"], ["description", "Aut dolorum nulla earum."], ["date", "2020-05-06 18:45:53.151730"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.152477"], ["updated_at", "2020-05-05 18:45:53.152477"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugiat et delectus aspernatur?"], ["description", "Et autem voluptatem quia."], ["date", "2020-05-06 18:45:53.153732"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.154496"], ["updated_at", "2020-05-05 18:45:53.154496"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga laborum ut mollitia?"], ["description", "Eos qui et non."], ["date", "2020-05-06 18:45:53.155659"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.156362"], ["updated_at", "2020-05-05 18:45:53.156362"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam qui animi odit?"], ["description", "Consequatur ipsa et qui."], ["date", "2020-05-06 18:45:53.157635"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.159111"], ["updated_at", "2020-05-05 18:45:53.159111"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique unde aut tenetur?"], ["description", "Incidunt nemo rem quia."], ["date", "2020-05-06 18:45:53.160573"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.161587"], ["updated_at", "2020-05-05 18:45:53.161587"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia rerum ipsam vitae?"], ["description", "Doloremque ut quisquam fugit."], ["date", "2020-05-06 18:45:53.163831"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.164831"], ["updated_at", "2020-05-05 18:45:53.164831"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo nostrum eius velit?"], ["description", "Id et asperiores animi."], ["date", "2020-05-06 18:45:53.166791"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.167639"], ["updated_at", "2020-05-05 18:45:53.167639"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Culpa qui ab alias?"], ["description", "Ut laboriosam et mollitia."], ["date", "2020-05-06 18:45:53.168944"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.169734"], ["updated_at", "2020-05-05 18:45:53.169734"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit ad in qui?"], ["description", "Quis corporis illo suscipit."], ["date", "2020-05-06 18:45:53.171870"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.172932"], ["updated_at", "2020-05-05 18:45:53.172932"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet reiciendis et error?"], ["description", "Veniam quam provident consectetur."], ["date", "2020-05-06 18:45:53.174211"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.175171"], ["updated_at", "2020-05-05 18:45:53.175171"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem consequatur nihil dolore?"], ["description", "Voluptas autem ullam incidunt."], ["date", "2020-05-06 18:45:53.177008"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.178019"], ["updated_at", "2020-05-05 18:45:53.178019"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At inventore ipsa dolores?"], ["description", "Ex magnam consequatur aliquid."], ["date", "2020-05-06 18:45:53.179307"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.180049"], ["updated_at", "2020-05-05 18:45:53.180049"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid recusandae quis distinctio?"], ["description", "Quidem minus quae nemo."], ["date", "2020-05-06 18:45:53.181379"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.183336"], ["updated_at", "2020-05-05 18:45:53.183336"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla quidem eveniet omnis?"], ["description", "Assumenda sint facere et."], ["date", "2020-05-06 18:45:53.185166"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.186057"], ["updated_at", "2020-05-05 18:45:53.186057"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed beatae et dolores?"], ["description", "Pariatur repellendus possimus earum."], ["date", "2020-05-06 18:45:53.187323"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.188047"], ["updated_at", "2020-05-05 18:45:53.188047"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas et quia qui?"], ["description", "Possimus exercitationem quasi aut."], ["date", "2020-05-06 18:45:53.189298"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.190481"], ["updated_at", "2020-05-05 18:45:53.190481"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea in consequatur consectetur?"], ["description", "Tenetur quod reprehenderit non."], ["date", "2020-05-06 18:45:53.192384"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.193379"], ["updated_at", "2020-05-05 18:45:53.193379"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:45:53 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.66ms) +Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.3ms | Allocations: 1084) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Candice Abshire"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qhZ3.dlZu/lCJN3URlFP4uFbf0TjX0DuHK9l.zqgk2qb2EssIoXj2"], ["created_at", "2020-05-05 18:45:53.210617"], ["updated_at", "2020-05-05 18:45:53.210617"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Omnis quis iusto incidunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:53.214586"], ["updated_at", "2020-05-05 18:45:53.214586"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque occaecati necessitatibus similique?"], ["description", "Sed et at saepe."], ["date", "2020-05-06 18:45:53.216169"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.217157"], ["updated_at", "2020-05-05 18:45:53.217157"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia quam qui odio?"], ["description", "Molestiae sapiente dolores magnam."], ["date", "2020-05-06 18:45:53.218576"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.219497"], ["updated_at", "2020-05-05 18:45:53.219497"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus placeat non nam?"], ["description", "Tenetur aut sunt incidunt."], ["date", "2020-05-06 18:45:53.220897"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.221923"], ["updated_at", "2020-05-05 18:45:53.221923"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil eaque voluptas voluptate?"], ["description", "Nostrum et ex sed."], ["date", "2020-05-06 18:45:53.225170"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.226950"], ["updated_at", "2020-05-05 18:45:53.226950"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga magnam repellat suscipit?"], ["description", "Commodi rem consequatur est."], ["date", "2020-05-06 18:45:53.228923"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.230017"], ["updated_at", "2020-05-05 18:45:53.230017"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et sit dolor voluptas?"], ["description", "Vel ut eos sequi."], ["date", "2020-05-06 18:45:53.231686"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.233017"], ["updated_at", "2020-05-05 18:45:53.233017"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur provident aut modi?"], ["description", "Sit ad ab eum."], ["date", "2020-05-06 18:45:53.234907"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.236337"], ["updated_at", "2020-05-05 18:45:53.236337"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero aut necessitatibus officia?"], ["description", "Temporibus ipsa velit dolores."], ["date", "2020-05-06 18:45:53.238593"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.240765"], ["updated_at", "2020-05-05 18:45:53.240765"]] +  (0.4ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium aut ullam veritatis?"], ["description", "Ipsum cumque doloremque et."], ["date", "2020-05-06 18:45:53.249762"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.251845"], ["updated_at", "2020-05-05 18:45:53.251845"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed similique nostrum quidem?"], ["description", "Aut ipsum quia facere."], ["date", "2020-05-06 18:45:53.254888"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.256284"], ["updated_at", "2020-05-05 18:45:53.256284"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quisquam sunt id voluptas?"], ["description", "Sunt rerum ipsam et."], ["date", "2020-05-06 18:45:53.258962"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.260775"], ["updated_at", "2020-05-05 18:45:53.260775"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia perspiciatis quasi nam?"], ["description", "Deserunt fuga laboriosam suscipit."], ["date", "2020-05-06 18:45:53.263691"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.266588"], ["updated_at", "2020-05-05 18:45:53.266588"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex ipsa ut qui?"], ["description", "Harum omnis optio tenetur."], ["date", "2020-05-06 18:45:53.270255"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.272076"], ["updated_at", "2020-05-05 18:45:53.272076"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt ut consequatur nemo?"], ["description", "Hic aliquid architecto est."], ["date", "2020-05-06 18:45:53.275993"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.277100"], ["updated_at", "2020-05-05 18:45:53.277100"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad sunt quasi officia?"], ["description", "Ullam aliquam iste amet."], ["date", "2020-05-06 18:45:53.279299"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.280791"], ["updated_at", "2020-05-05 18:45:53.280791"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti nihil sit exercitationem?"], ["description", "Aut reprehenderit quos voluptatem."], ["date", "2020-05-06 18:45:53.283710"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.286378"], ["updated_at", "2020-05-05 18:45:53.286378"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo illo quia veritatis?"], ["description", "Placeat minus nobis recusandae."], ["date", "2020-05-06 18:45:53.288576"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.291018"], ["updated_at", "2020-05-05 18:45:53.291018"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas qui a deserunt?"], ["description", "Nihil praesentium voluptatum voluptatem."], ["date", "2020-05-06 18:45:53.295851"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.296962"], ["updated_at", "2020-05-05 18:45:53.296962"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga sint neque nisi?"], ["description", "Accusamus ut sed nulla."], ["date", "2020-05-06 18:45:53.298313"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.299115"], ["updated_at", "2020-05-05 18:45:53.299115"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi voluptatem est adipisci?"], ["description", "Dolorum asperiores similique nobis."], ["date", "2020-05-06 18:45:53.300253"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.300964"], ["updated_at", "2020-05-05 18:45:53.300964"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:45:53 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.91ms) +Completed 200 OK in 5ms (Views: 1.8ms | ActiveRecord: 0.4ms | Allocations: 1057) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Larue Jast"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aeSwiHXI3IwwEOlpL394vuJmoBHnrd0oU0UQ/r/3nsoY7yMNSNHYS"], ["created_at", "2020-05-05 18:45:53.324261"], ["updated_at", "2020-05-05 18:45:53.324261"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Ut molestiae velit quos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:53.330561"], ["updated_at", "2020-05-05 18:45:53.330561"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit et laudantium totam?"], ["description", "Ut ut odio et."], ["date", "2020-05-06 18:45:53.332492"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.333558"], ["updated_at", "2020-05-05 18:45:53.333558"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum enim et consequatur?"], ["description", "Magnam ut numquam eaque."], ["date", "2020-05-06 18:45:53.335082"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.335904"], ["updated_at", "2020-05-05 18:45:53.335904"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus consequatur illo sunt?"], ["description", "Placeat magnam error occaecati."], ["date", "2020-05-06 18:45:53.337110"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.337852"], ["updated_at", "2020-05-05 18:45:53.337852"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur ea harum dolorem?"], ["description", "Ut est optio accusantium."], ["date", "2020-05-06 18:45:53.338986"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.339706"], ["updated_at", "2020-05-05 18:45:53.339706"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet doloremque illum occaecati?"], ["description", "In quod vel fugiat."], ["date", "2020-05-06 18:45:53.341098"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.342951"], ["updated_at", "2020-05-05 18:45:53.342951"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum tempora esse reprehenderit?"], ["description", "Voluptate est reiciendis ut."], ["date", "2020-05-06 18:45:53.345859"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.347920"], ["updated_at", "2020-05-05 18:45:53.347920"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo et facere dignissimos?"], ["description", "Aliquam laudantium quibusdam recusandae."], ["date", "2020-05-06 18:45:53.349970"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.350888"], ["updated_at", "2020-05-05 18:45:53.350888"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas necessitatibus nesciunt est?"], ["description", "Optio saepe nihil pariatur."], ["date", "2020-05-06 18:45:53.352223"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.353101"], ["updated_at", "2020-05-05 18:45:53.353101"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores qui praesentium qui?"], ["description", "Tenetur occaecati odit facilis."], ["date", "2020-05-06 18:45:53.354763"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.355789"], ["updated_at", "2020-05-05 18:45:53.355789"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum nemo cumque expedita?"], ["description", "Consectetur adipisci ullam mollitia."], ["date", "2020-05-06 18:45:53.358496"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.359483"], ["updated_at", "2020-05-05 18:45:53.359483"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit qui dicta provident?"], ["description", "Omnis nisi et eaque."], ["date", "2020-05-06 18:45:53.360900"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.361662"], ["updated_at", "2020-05-05 18:45:53.361662"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error reiciendis perferendis modi?"], ["description", "Architecto deserunt necessitatibus et."], ["date", "2020-05-06 18:45:53.364164"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.365646"], ["updated_at", "2020-05-05 18:45:53.365646"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel at repudiandae repellat?"], ["description", "Voluptatem vitae sed voluptatem."], ["date", "2020-05-06 18:45:53.367230"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.368223"], ["updated_at", "2020-05-05 18:45:53.368223"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis eaque voluptatum tempore?"], ["description", "Iste sapiente dolores enim."], ["date", "2020-05-06 18:45:53.369495"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.370302"], ["updated_at", "2020-05-05 18:45:53.370302"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit libero vitae animi?"], ["description", "Aliquam adipisci suscipit vel."], ["date", "2020-05-06 18:45:53.371569"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.372305"], ["updated_at", "2020-05-05 18:45:53.372305"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab et ducimus est?"], ["description", "Quae vel voluptates sed."], ["date", "2020-05-06 18:45:53.373458"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.374306"], ["updated_at", "2020-05-05 18:45:53.374306"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores quos ipsa aperiam?"], ["description", "Quod error eius nesciunt."], ["date", "2020-05-06 18:45:53.376063"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.377027"], ["updated_at", "2020-05-05 18:45:53.377027"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus veritatis qui eum?"], ["description", "Quo ipsum sunt consequuntur."], ["date", "2020-05-06 18:45:53.378367"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.379308"], ["updated_at", "2020-05-05 18:45:53.379308"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit fugiat suscipit numquam?"], ["description", "Labore magnam quidem autem."], ["date", "2020-05-06 18:45:53.380773"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.381642"], ["updated_at", "2020-05-05 18:45:53.381642"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos minima itaque aliquam?"], ["description", "Praesentium temporibus error amet."], ["date", "2020-05-06 18:45:53.383940"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.385672"], ["updated_at", "2020-05-05 18:45:53.385672"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:45:53 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 404 Not Found in 3ms (Views: 0.7ms | ActiveRecord: 0.2ms | Allocations: 884) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kelley Rippin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rMqnGxnaPsHZIqlt/TdCWOtHhZJShijEw9rymB0nSCUVjMVJ.Rumu"], ["created_at", "2020-05-05 18:45:53.400846"], ["updated_at", "2020-05-05 18:45:53.400846"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "alias"], ["description", "Quae ut impedit possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:53.404641"], ["updated_at", "2020-05-05 18:45:53.404641"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut impedit laborum saepe?"], ["description", "Qui eligendi magnam quia."], ["date", "2020-05-06 18:45:53.407793"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.409474"], ["updated_at", "2020-05-05 18:45:53.409474"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima id cum ipsam?"], ["description", "Odio similique debitis molestiae."], ["date", "2020-05-06 18:45:53.410944"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.411725"], ["updated_at", "2020-05-05 18:45:53.411725"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi nisi est et?"], ["description", "Nihil ea iusto ut."], ["date", "2020-05-06 18:45:53.412829"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.413583"], ["updated_at", "2020-05-05 18:45:53.413583"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro non omnis cumque?"], ["description", "Voluptatem porro consequatur quo."], ["date", "2020-05-06 18:45:53.414676"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.415421"], ["updated_at", "2020-05-05 18:45:53.415421"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et ea et ad?"], ["description", "Voluptatem quis ad enim."], ["date", "2020-05-06 18:45:53.416582"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.417330"], ["updated_at", "2020-05-05 18:45:53.417330"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Hic consectetur excepturi totam?"], ["description", "Quod eum architecto dolores."], ["date", "2020-05-06 18:45:53.418454"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.419267"], ["updated_at", "2020-05-05 18:45:53.419267"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil ullam facilis iste?"], ["description", "Non aut quae repudiandae."], ["date", "2020-05-06 18:45:53.420401"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.421149"], ["updated_at", "2020-05-05 18:45:53.421149"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum ut et beatae?"], ["description", "Non alias odit iusto."], ["date", "2020-05-06 18:45:53.422259"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.423052"], ["updated_at", "2020-05-05 18:45:53.423052"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores nesciunt nulla et?"], ["description", "Excepturi non sint reiciendis."], ["date", "2020-05-06 18:45:53.426835"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.428424"], ["updated_at", "2020-05-05 18:45:53.428424"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae accusamus molestiae commodi?"], ["description", "Velit tenetur sit dolor."], ["date", "2020-05-06 18:45:53.430778"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.431700"], ["updated_at", "2020-05-05 18:45:53.431700"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti alias suscipit rem?"], ["description", "Et et corporis quasi."], ["date", "2020-05-06 18:45:53.433024"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.433873"], ["updated_at", "2020-05-05 18:45:53.433873"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora aut et eius?"], ["description", "Ut veniam rerum voluptatem."], ["date", "2020-05-06 18:45:53.435238"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.436095"], ["updated_at", "2020-05-05 18:45:53.436095"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit a pariatur explicabo?"], ["description", "Fugiat hic quam eum."], ["date", "2020-05-06 18:45:53.437582"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.438485"], ["updated_at", "2020-05-05 18:45:53.438485"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo qui sed est?"], ["description", "Non aut veniam quos."], ["date", "2020-05-06 18:45:53.440088"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.441597"], ["updated_at", "2020-05-05 18:45:53.441597"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil eos ut totam?"], ["description", "Sint reiciendis quia dolores."], ["date", "2020-05-06 18:45:53.443540"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.445374"], ["updated_at", "2020-05-05 18:45:53.445374"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae aliquid pariatur accusantium?"], ["description", "Vel aut molestiae vel."], ["date", "2020-05-06 18:45:53.446973"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.447815"], ["updated_at", "2020-05-05 18:45:53.447815"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel eveniet laudantium alias?"], ["description", "Quia quae esse quod."], ["date", "2020-05-06 18:45:53.448974"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.449694"], ["updated_at", "2020-05-05 18:45:53.449694"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel eius velit esse?"], ["description", "Omnis sit voluptatem eum."], ["date", "2020-05-06 18:45:53.450938"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.451721"], ["updated_at", "2020-05-05 18:45:53.451721"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime consequuntur eveniet voluptatum?"], ["description", "Voluptatem voluptatibus ea ut."], ["date", "2020-05-06 18:45:53.453278"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.454149"], ["updated_at", "2020-05-05 18:45:53.454149"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis consectetur dolores voluptatibus?"], ["description", "Asperiores hic est ut."], ["date", "2020-05-06 18:45:53.455631"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.456751"], ["updated_at", "2020-05-05 18:45:53.456751"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:45:53 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 867) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ciara Weimann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$uFm9uot6pbkvkNglVlWX.O26HhzicpMuEutIrI09Mv4WGZiVT9kXy"], ["created_at", "2020-05-05 18:45:53.473554"], ["updated_at", "2020-05-05 18:45:53.473554"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corporis"], ["description", "Minima unde dolore nesciunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:53.476958"], ["updated_at", "2020-05-05 18:45:53.476958"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium vero at similique?"], ["description", "Dolore esse hic sequi."], ["date", "2020-05-06 18:45:53.478689"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.479688"], ["updated_at", "2020-05-05 18:45:53.479688"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita voluptate voluptas facilis?"], ["description", "Ad aut vel expedita."], ["date", "2020-05-06 18:45:53.481273"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.482197"], ["updated_at", "2020-05-05 18:45:53.482197"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores iusto quo aut?"], ["description", "Ipsa numquam et consequatur."], ["date", "2020-05-06 18:45:53.483558"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.485247"], ["updated_at", "2020-05-05 18:45:53.485247"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Unde eveniet nisi et?"], ["description", "In nihil fuga porro."], ["date", "2020-05-06 18:45:53.487164"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.488655"], ["updated_at", "2020-05-05 18:45:53.488655"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et rerum autem est?"], ["description", "Quis labore voluptas nesciunt."], ["date", "2020-05-06 18:45:53.490594"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.491778"], ["updated_at", "2020-05-05 18:45:53.491778"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae rerum tempora praesentium?"], ["description", "Maxime iure cupiditate aliquam."], ["date", "2020-05-06 18:45:53.493201"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.494191"], ["updated_at", "2020-05-05 18:45:53.494191"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut quisquam hic qui?"], ["description", "Illo quos est animi."], ["date", "2020-05-06 18:45:53.495544"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.496324"], ["updated_at", "2020-05-05 18:45:53.496324"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut deleniti et alias?"], ["description", "Quis omnis doloremque et."], ["date", "2020-05-06 18:45:53.497584"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.498438"], ["updated_at", "2020-05-05 18:45:53.498438"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis qui aut eum?"], ["description", "Quia ut in ea."], ["date", "2020-05-06 18:45:53.499708"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.500490"], ["updated_at", "2020-05-05 18:45:53.500490"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel dolores ipsa saepe?"], ["description", "Alias dolor nihil laboriosam."], ["date", "2020-05-06 18:45:53.502546"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.503661"], ["updated_at", "2020-05-05 18:45:53.503661"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem nisi exercitationem dolorem?"], ["description", "Voluptatum minima mollitia aperiam."], ["date", "2020-05-06 18:45:53.506182"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.507274"], ["updated_at", "2020-05-05 18:45:53.507274"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur minima officia animi?"], ["description", "Aut est in odit."], ["date", "2020-05-06 18:45:53.509215"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.510229"], ["updated_at", "2020-05-05 18:45:53.510229"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores animi voluptas et?"], ["description", "Adipisci officia quod nulla."], ["date", "2020-05-06 18:45:53.511579"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.512330"], ["updated_at", "2020-05-05 18:45:53.512330"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur minus hic eveniet?"], ["description", "Nobis facilis modi sunt."], ["date", "2020-05-06 18:45:53.513682"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.514516"], ["updated_at", "2020-05-05 18:45:53.514516"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora dolorem natus beatae?"], ["description", "Reprehenderit aperiam dicta animi."], ["date", "2020-05-06 18:45:53.515969"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.516881"], ["updated_at", "2020-05-05 18:45:53.516881"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel impedit consequuntur reiciendis?"], ["description", "Cupiditate commodi quia qui."], ["date", "2020-05-06 18:45:53.518115"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.518833"], ["updated_at", "2020-05-05 18:45:53.518833"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo est impedit tempore?"], ["description", "Veniam sit beatae optio."], ["date", "2020-05-06 18:45:53.520148"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.520906"], ["updated_at", "2020-05-05 18:45:53.520906"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit ut possimus sit?"], ["description", "Eum excepturi praesentium fugit."], ["date", "2020-05-06 18:45:53.522311"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.523155"], ["updated_at", "2020-05-05 18:45:53.523155"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam ad nobis maxime?"], ["description", "Dignissimos quia a aperiam."], ["date", "2020-05-06 18:45:53.526710"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.527791"], ["updated_at", "2020-05-05 18:45:53.527791"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut dolor inventore tenetur?"], ["description", "Fugit fugiat ut ipsum."], ["date", "2020-05-06 18:45:53.529174"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.529924"], ["updated_at", "2020-05-05 18:45:53.529924"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:45:53 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"title"=>"Visit Narnia", "description"=>"false", "date"=>"2020-05-06 15:45:53 -0300", "link"=>"https://zoom.com/fakelink", "meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Visit Narnia"], ["description", "false"], ["date", "2020-05-06 18:45:53"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.550101"], ["updated_at", "2020-05-05 18:45:53.550101"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.58ms) +Completed 201 Created in 5ms (Views: 1.2ms | ActiveRecord: 0.4ms | Allocations: 1665) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Glenda Erdman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mgBJebS090vFsIBr2zPU3OgcQjkhSP9oyACm8qHrWxi2At4e6K6j6"], ["created_at", "2020-05-05 18:45:53.564558"], ["updated_at", "2020-05-05 18:45:53.564558"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Omnis nihil eum architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:53.569353"], ["updated_at", "2020-05-05 18:45:53.569353"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque vero delectus voluptates?"], ["description", "Debitis ducimus sunt velit."], ["date", "2020-05-06 18:45:53.571339"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.572380"], ["updated_at", "2020-05-05 18:45:53.572380"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit sunt iure molestias?"], ["description", "Assumenda illum corrupti ut."], ["date", "2020-05-06 18:45:53.574369"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.575528"], ["updated_at", "2020-05-05 18:45:53.575528"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia eos est quia?"], ["description", "Maxime error culpa voluptas."], ["date", "2020-05-06 18:45:53.576970"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.577946"], ["updated_at", "2020-05-05 18:45:53.577946"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed recusandae laborum dolores?"], ["description", "Beatae facere corporis debitis."], ["date", "2020-05-06 18:45:53.579256"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.580047"], ["updated_at", "2020-05-05 18:45:53.580047"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa velit veritatis animi?"], ["description", "Ad animi provident aut."], ["date", "2020-05-06 18:45:53.581211"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.581928"], ["updated_at", "2020-05-05 18:45:53.581928"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores tempora sed aut?"], ["description", "Temporibus qui pariatur ut."], ["date", "2020-05-06 18:45:53.583221"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.584082"], ["updated_at", "2020-05-05 18:45:53.584082"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint unde blanditiis consequatur?"], ["description", "Quia ad repudiandae ea."], ["date", "2020-05-06 18:45:53.586818"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.589031"], ["updated_at", "2020-05-05 18:45:53.589031"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut minima est voluptatibus?"], ["description", "Veritatis sunt nostrum hic."], ["date", "2020-05-06 18:45:53.590831"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.592184"], ["updated_at", "2020-05-05 18:45:53.592184"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt aliquam eos fugit?"], ["description", "Cupiditate modi neque placeat."], ["date", "2020-05-06 18:45:53.593663"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.594531"], ["updated_at", "2020-05-05 18:45:53.594531"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae eos nisi facere?"], ["description", "Esse molestias eligendi assumenda."], ["date", "2020-05-06 18:45:53.596529"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.597411"], ["updated_at", "2020-05-05 18:45:53.597411"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta error esse iusto?"], ["description", "Modi et ut fuga."], ["date", "2020-05-06 18:45:53.598770"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.599495"], ["updated_at", "2020-05-05 18:45:53.599495"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non eaque recusandae voluptatem?"], ["description", "Temporibus repellendus sint eum."], ["date", "2020-05-06 18:45:53.600773"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.601643"], ["updated_at", "2020-05-05 18:45:53.601643"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis ipsam fugit possimus?"], ["description", "Dolor repellendus autem laboriosam."], ["date", "2020-05-06 18:45:53.603031"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.603994"], ["updated_at", "2020-05-05 18:45:53.603994"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa et quo impedit?"], ["description", "Qui molestiae neque delectus."], ["date", "2020-05-06 18:45:53.606313"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.607972"], ["updated_at", "2020-05-05 18:45:53.607972"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque nulla est quisquam?"], ["description", "Ut ducimus ipsa quia."], ["date", "2020-05-06 18:45:53.609654"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.610559"], ["updated_at", "2020-05-05 18:45:53.610559"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat aut sint suscipit?"], ["description", "Illo laborum fugiat totam."], ["date", "2020-05-06 18:45:53.611784"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.612545"], ["updated_at", "2020-05-05 18:45:53.612545"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi accusantium autem dolores?"], ["description", "Sequi laboriosam consequatur accusamus."], ["date", "2020-05-06 18:45:53.614011"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.614893"], ["updated_at", "2020-05-05 18:45:53.614893"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A incidunt necessitatibus et?"], ["description", "Officiis qui est natus."], ["date", "2020-05-06 18:45:53.616195"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.616958"], ["updated_at", "2020-05-05 18:45:53.616958"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit qui commodi incidunt?"], ["description", "Reiciendis consequuntur porro rem."], ["date", "2020-05-06 18:45:53.618251"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.619046"], ["updated_at", "2020-05-05 18:45:53.619046"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut et nulla occaecati?"], ["description", "Repellat commodi vel magnam."], ["date", "2020-05-06 18:45:53.620324"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.621163"], ["updated_at", "2020-05-05 18:45:53.621163"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:45:53 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 422 Unprocessable Entity in 8ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 3010) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (10.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Frederic Russel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$G5dZl5olSNt4mnKaXqxAwedpLSFIMtyAteZomnw7.WuzN5p1QMNi6"], ["created_at", "2020-05-05 18:45:53.646988"], ["updated_at", "2020-05-05 18:45:53.646988"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sequi"], ["description", "Voluptatem dolorem ut accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:53.651243"], ["updated_at", "2020-05-05 18:45:53.651243"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus aliquam possimus explicabo?"], ["description", "Debitis nesciunt minima hic."], ["date", "2020-05-06 18:45:53.670135"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.671820"], ["updated_at", "2020-05-05 18:45:53.671820"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis nobis nihil suscipit?"], ["description", "Ut minima ipsam quod."], ["date", "2020-05-06 18:45:53.674625"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.677817"], ["updated_at", "2020-05-05 18:45:53.677817"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas velit aut libero?"], ["description", "Qui quos molestiae repellat."], ["date", "2020-05-06 18:45:53.679411"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.680529"], ["updated_at", "2020-05-05 18:45:53.680529"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus nostrum qui quas?"], ["description", "Et quo tenetur deserunt."], ["date", "2020-05-06 18:45:53.682063"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.683029"], ["updated_at", "2020-05-05 18:45:53.683029"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis dolorem cupiditate officiis?"], ["description", "Modi labore sunt blanditiis."], ["date", "2020-05-06 18:45:53.684604"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.688588"], ["updated_at", "2020-05-05 18:45:53.688588"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laudantium possimus et voluptatem?"], ["description", "Ut dolor optio quaerat."], ["date", "2020-05-06 18:45:53.691298"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.693521"], ["updated_at", "2020-05-05 18:45:53.693521"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat fuga omnis voluptas?"], ["description", "Sint officiis sed minima."], ["date", "2020-05-06 18:45:53.695367"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.696574"], ["updated_at", "2020-05-05 18:45:53.696574"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor eos rem nobis?"], ["description", "Ad rerum nisi nulla."], ["date", "2020-05-06 18:45:53.698439"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.699484"], ["updated_at", "2020-05-05 18:45:53.699484"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe qui voluptas non?"], ["description", "Vel commodi a aut."], ["date", "2020-05-06 18:45:53.701338"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.703161"], ["updated_at", "2020-05-05 18:45:53.703161"]] +  (0.4ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore eos sed amet?"], ["description", "Voluptatem et et molestiae."], ["date", "2020-05-06 18:45:53.709697"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.712390"], ["updated_at", "2020-05-05 18:45:53.712390"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit similique et voluptatum?"], ["description", "Quia quae suscipit officiis."], ["date", "2020-05-06 18:45:53.716201"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.717298"], ["updated_at", "2020-05-05 18:45:53.717298"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus quasi ipsum enim?"], ["description", "Qui consequuntur officiis et."], ["date", "2020-05-06 18:45:53.719049"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.720828"], ["updated_at", "2020-05-05 18:45:53.720828"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum est fugit optio?"], ["description", "Enim deleniti assumenda temporibus."], ["date", "2020-05-06 18:45:53.723053"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.724095"], ["updated_at", "2020-05-05 18:45:53.724095"]] +  (0.4ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga dolore aspernatur minima?"], ["description", "Ullam voluptatum voluptas praesentium."], ["date", "2020-05-06 18:45:53.727612"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.730894"], ["updated_at", "2020-05-05 18:45:53.730894"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae in fuga rem?"], ["description", "Accusamus eaque consequuntur dolores."], ["date", "2020-05-06 18:45:53.732521"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.752645"], ["updated_at", "2020-05-05 18:45:53.752645"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione doloremque consequatur et?"], ["description", "Harum nemo natus amet."], ["date", "2020-05-06 18:45:53.754380"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.755762"], ["updated_at", "2020-05-05 18:45:53.755762"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut deserunt non veritatis?"], ["description", "Voluptatem consequatur occaecati dolores."], ["date", "2020-05-06 18:45:53.759518"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.761128"], ["updated_at", "2020-05-05 18:45:53.761128"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos ipsam sunt laborum?"], ["description", "Quam accusantium repellat sit."], ["date", "2020-05-06 18:45:53.762719"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.763644"], ["updated_at", "2020-05-05 18:45:53.763644"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et eos expedita quisquam?"], ["description", "Nisi error inventore quia."], ["date", "2020-05-06 18:45:53.765140"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.767463"], ["updated_at", "2020-05-05 18:45:53.767463"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel ea minus nobis?"], ["description", "Et veniam velit enim."], ["date", "2020-05-06 18:45:53.770505"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.771566"], ["updated_at", "2020-05-05 18:45:53.771566"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:45:53 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 422 Unprocessable Entity in 8ms (Views: 0.5ms | ActiveRecord: 0.5ms | Allocations: 2705) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (10.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Donn Gottlieb"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Gof0/NKY/KjAevy6JbbqK.MxDekh4rKg.A9A.QI5jEoppDaQD8Hfu"], ["created_at", "2020-05-05 18:45:53.799585"], ["updated_at", "2020-05-05 18:45:53.799585"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Doloribus est aliquid id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:53.802730"], ["updated_at", "2020-05-05 18:45:53.802730"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et deleniti aut et?"], ["description", "Qui aut ut cupiditate."], ["date", "2020-05-06 18:45:53.804428"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.805609"], ["updated_at", "2020-05-05 18:45:53.805609"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et qui incidunt ducimus?"], ["description", "Perspiciatis et qui magnam."], ["date", "2020-05-06 18:45:53.809112"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.812568"], ["updated_at", "2020-05-05 18:45:53.812568"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi iure error omnis?"], ["description", "Odio fugit ullam unde."], ["date", "2020-05-06 18:45:53.815348"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.817076"], ["updated_at", "2020-05-05 18:45:53.817076"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex magni eos voluptas?"], ["description", "Odit placeat molestiae sit."], ["date", "2020-05-06 18:45:53.818649"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.819544"], ["updated_at", "2020-05-05 18:45:53.819544"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos repudiandae ullam possimus?"], ["description", "Rerum reprehenderit sunt perferendis."], ["date", "2020-05-06 18:45:53.820738"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.821482"], ["updated_at", "2020-05-05 18:45:53.821482"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure officia consequatur omnis?"], ["description", "Repellendus eaque nihil expedita."], ["date", "2020-05-06 18:45:53.822702"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.823575"], ["updated_at", "2020-05-05 18:45:53.823575"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugiat dolor sed qui?"], ["description", "Similique nulla et cumque."], ["date", "2020-05-06 18:45:53.824990"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.827831"], ["updated_at", "2020-05-05 18:45:53.827831"]] +  (0.4ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut et non quia?"], ["description", "Inventore esse doloribus aut."], ["date", "2020-05-06 18:45:53.832097"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.834150"], ["updated_at", "2020-05-05 18:45:53.834150"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum et quae aliquid?"], ["description", "Qui ad officiis itaque."], ["date", "2020-05-06 18:45:53.836778"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.837814"], ["updated_at", "2020-05-05 18:45:53.837814"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore non dolorem sed?"], ["description", "Et ea dolores modi."], ["date", "2020-05-06 18:45:53.839751"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.840962"], ["updated_at", "2020-05-05 18:45:53.840962"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis omnis et est?"], ["description", "Perspiciatis voluptatibus velit adipisci."], ["date", "2020-05-06 18:45:53.842894"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.843845"], ["updated_at", "2020-05-05 18:45:53.843845"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas quas voluptatibus et?"], ["description", "Sed maxime quo et."], ["date", "2020-05-06 18:45:53.845221"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.846813"], ["updated_at", "2020-05-05 18:45:53.846813"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis delectus accusamus molestias?"], ["description", "Est saepe nostrum sunt."], ["date", "2020-05-06 18:45:53.849994"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.851183"], ["updated_at", "2020-05-05 18:45:53.851183"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo consequatur ea rerum?"], ["description", "Esse voluptas nemo corrupti."], ["date", "2020-05-06 18:45:53.852599"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.853478"], ["updated_at", "2020-05-05 18:45:53.853478"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia voluptas qui tempore?"], ["description", "Minus facere beatae qui."], ["date", "2020-05-06 18:45:53.854827"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.855615"], ["updated_at", "2020-05-05 18:45:53.855615"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut perferendis ex labore?"], ["description", "Dolores dolores non aliquid."], ["date", "2020-05-06 18:45:53.856852"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.858106"], ["updated_at", "2020-05-05 18:45:53.858106"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil ipsa perspiciatis ut?"], ["description", "Atque tempora iure quos."], ["date", "2020-05-06 18:45:53.859807"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.860789"], ["updated_at", "2020-05-05 18:45:53.860789"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum quae rem occaecati?"], ["description", "Dolores perferendis delectus occaecati."], ["date", "2020-05-06 18:45:53.862179"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.862989"], ["updated_at", "2020-05-05 18:45:53.862989"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt voluptatem porro molestias?"], ["description", "Quos dolorem occaecati dolor."], ["date", "2020-05-06 18:45:53.864342"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.865119"], ["updated_at", "2020-05-05 18:45:53.865119"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis omnis aspernatur voluptate?"], ["description", "Alias nesciunt aut explicabo."], ["date", "2020-05-06 18:45:53.867255"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.868796"], ["updated_at", "2020-05-05 18:45:53.868796"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:45:53 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.2ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:45:53.875010"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 4ms (ActiveRecord: 0.5ms | Allocations: 1395) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sanford Ryan Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xjyWzYt2b.ImZ2BvGhprs.788SVomqzUewrvwul.wOXwn9ka5wOjS"], ["created_at", "2020-05-05 18:45:53.888287"], ["updated_at", "2020-05-05 18:45:53.888287"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Aut ut aliquam impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:53.892538"], ["updated_at", "2020-05-05 18:45:53.892538"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit autem ut assumenda?"], ["description", "Sint molestiae excepturi qui."], ["date", "2020-05-06 18:45:53.894258"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.895296"], ["updated_at", "2020-05-05 18:45:53.895296"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus deleniti nam aspernatur?"], ["description", "Quis commodi et cumque."], ["date", "2020-05-06 18:45:53.896687"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.897497"], ["updated_at", "2020-05-05 18:45:53.897497"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi tempora magnam rerum?"], ["description", "Non adipisci aliquam delectus."], ["date", "2020-05-06 18:45:53.898929"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.899799"], ["updated_at", "2020-05-05 18:45:53.899799"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus culpa delectus consequatur?"], ["description", "Eveniet accusamus minima eius."], ["date", "2020-05-06 18:45:53.901070"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.901832"], ["updated_at", "2020-05-05 18:45:53.901832"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora veniam quasi cumque?"], ["description", "Minus totam dolore impedit."], ["date", "2020-05-06 18:45:53.903084"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.903882"], ["updated_at", "2020-05-05 18:45:53.903882"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consectetur aliquam tempora laborum?"], ["description", "Necessitatibus repellendus et repellat."], ["date", "2020-05-06 18:45:53.905183"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.906350"], ["updated_at", "2020-05-05 18:45:53.906350"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi porro qui et?"], ["description", "Ipsam libero iste est."], ["date", "2020-05-06 18:45:53.910671"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.912032"], ["updated_at", "2020-05-05 18:45:53.912032"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit voluptates voluptas minus?"], ["description", "Velit recusandae beatae ex."], ["date", "2020-05-06 18:45:53.914748"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.916465"], ["updated_at", "2020-05-05 18:45:53.916465"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos quis iusto eos?"], ["description", "Qui aliquam quia architecto."], ["date", "2020-05-06 18:45:53.918015"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.918902"], ["updated_at", "2020-05-05 18:45:53.918902"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut consequatur neque voluptates?"], ["description", "Molestiae fugit ullam laboriosam."], ["date", "2020-05-06 18:45:53.920649"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.921459"], ["updated_at", "2020-05-05 18:45:53.921459"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In veniam est atque?"], ["description", "Eaque dolorum mollitia voluptatum."], ["date", "2020-05-06 18:45:53.922973"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.924572"], ["updated_at", "2020-05-05 18:45:53.924572"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui quia est facere?"], ["description", "Porro nisi est aliquam."], ["date", "2020-05-06 18:45:53.926404"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.929172"], ["updated_at", "2020-05-05 18:45:53.929172"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusamus fugiat qui sunt?"], ["description", "Incidunt mollitia et inventore."], ["date", "2020-05-06 18:45:53.931009"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.932112"], ["updated_at", "2020-05-05 18:45:53.932112"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum cupiditate quas in?"], ["description", "Libero aperiam vero cupiditate."], ["date", "2020-05-06 18:45:53.933711"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.934727"], ["updated_at", "2020-05-05 18:45:53.934727"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit nisi voluptatum et?"], ["description", "Laborum omnis dolor voluptates."], ["date", "2020-05-06 18:45:53.936230"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.937034"], ["updated_at", "2020-05-05 18:45:53.937034"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt nesciunt id esse?"], ["description", "Non vero ad ea."], ["date", "2020-05-06 18:45:53.938200"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.938961"], ["updated_at", "2020-05-05 18:45:53.938961"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas velit sit quia?"], ["description", "Ratione ea ut aliquam."], ["date", "2020-05-06 18:45:53.940753"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.941828"], ["updated_at", "2020-05-05 18:45:53.941828"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas error fugiat molestiae?"], ["description", "Laborum ut ipsum similique."], ["date", "2020-05-06 18:45:53.943117"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.943907"], ["updated_at", "2020-05-05 18:45:53.943907"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita laudantium voluptas enim?"], ["description", "Omnis ut est illum."], ["date", "2020-05-06 18:45:53.945124"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.946010"], ["updated_at", "2020-05-05 18:45:53.946010"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae sit omnis sit?"], ["description", "Similique et et nihil."], ["date", "2020-05-06 18:45:53.948808"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.950397"], ["updated_at", "2020-05-05 18:45:53.950397"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:45:53 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.2ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:45:53.955376"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 4ms (ActiveRecord: 0.5ms | Allocations: 1321) + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Yelena Weimann Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LTjeSi.eInrbHUHZFmzYHuCAwssOQxHyOVd.22XdKOUF9SzYDaYfC"], ["created_at", "2020-05-05 18:45:53.968708"], ["updated_at", "2020-05-05 18:45:53.968708"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorem"], ["description", "Ab delectus nam rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:53.973860"], ["updated_at", "2020-05-05 18:45:53.973860"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem voluptatum dolor earum?"], ["description", "Unde alias nihil qui."], ["date", "2020-05-06 18:45:53.977944"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.979610"], ["updated_at", "2020-05-05 18:45:53.979610"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia quaerat natus voluptatem?"], ["description", "Aliquid magni est qui."], ["date", "2020-05-06 18:45:53.981378"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.982250"], ["updated_at", "2020-05-05 18:45:53.982250"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio delectus et corrupti?"], ["description", "Magni expedita consequatur eum."], ["date", "2020-05-06 18:45:53.983651"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.984654"], ["updated_at", "2020-05-05 18:45:53.984654"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam est rerum neque?"], ["description", "Voluptates vitae culpa non."], ["date", "2020-05-06 18:45:53.986066"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.987577"], ["updated_at", "2020-05-05 18:45:53.987577"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim repellendus aliquam quod?"], ["description", "Quasi impedit esse qui."], ["date", "2020-05-06 18:45:53.991116"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.993236"], ["updated_at", "2020-05-05 18:45:53.993236"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda officia saepe quibusdam?"], ["description", "Iusto doloribus accusamus officiis."], ["date", "2020-05-06 18:45:53.996550"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.997723"], ["updated_at", "2020-05-05 18:45:53.997723"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et impedit odit et?"], ["description", "Qui magnam quas ad."], ["date", "2020-05-06 18:45:53.999073"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:53.999861"], ["updated_at", "2020-05-05 18:45:53.999861"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut voluptas mollitia nobis?"], ["description", "Mollitia debitis fugiat nulla."], ["date", "2020-05-06 18:45:54.001013"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.001765"], ["updated_at", "2020-05-05 18:45:54.001765"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est dolorem natus sit?"], ["description", "Ut qui optio eius."], ["date", "2020-05-06 18:45:54.002995"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.003885"], ["updated_at", "2020-05-05 18:45:54.003885"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel et et ut?"], ["description", "Maxime sint aut perspiciatis."], ["date", "2020-05-06 18:45:54.005770"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.006723"], ["updated_at", "2020-05-05 18:45:54.006723"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et suscipit occaecati ut?"], ["description", "Voluptatem mollitia voluptate est."], ["date", "2020-05-06 18:45:54.013017"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.014675"], ["updated_at", "2020-05-05 18:45:54.014675"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error facere sapiente provident?"], ["description", "Ea qui enim sed."], ["date", "2020-05-06 18:45:54.016304"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.017140"], ["updated_at", "2020-05-05 18:45:54.017140"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur qui blanditiis ipsam?"], ["description", "Libero sunt sint explicabo."], ["date", "2020-05-06 18:45:54.018264"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.019002"], ["updated_at", "2020-05-05 18:45:54.019002"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae accusantium a minus?"], ["description", "Dignissimos officia et aut."], ["date", "2020-05-06 18:45:54.020318"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.021160"], ["updated_at", "2020-05-05 18:45:54.021160"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis ea rerum voluptatem?"], ["description", "Libero reiciendis doloribus ipsam."], ["date", "2020-05-06 18:45:54.022350"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.023139"], ["updated_at", "2020-05-05 18:45:54.023139"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga ipsam id qui?"], ["description", "Velit quidem nam accusantium."], ["date", "2020-05-06 18:45:54.024509"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.025950"], ["updated_at", "2020-05-05 18:45:54.025950"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad aperiam assumenda unde?"], ["description", "Ut esse temporibus et."], ["date", "2020-05-06 18:45:54.027978"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.029711"], ["updated_at", "2020-05-05 18:45:54.029711"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit veritatis quia culpa?"], ["description", "Est maxime commodi qui."], ["date", "2020-05-06 18:45:54.032369"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.033417"], ["updated_at", "2020-05-05 18:45:54.033417"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda dolore hic velit?"], ["description", "Reiciendis aperiam voluptatem culpa."], ["date", "2020-05-06 18:45:54.034821"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.035686"], ["updated_at", "2020-05-05 18:45:54.035686"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia corrupti ipsa consequuntur?"], ["description", "Dolore nulla sed consequuntur."], ["date", "2020-05-06 18:45:54.037404"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.038593"], ["updated_at", "2020-05-05 18:45:54.038593"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:45:54 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Michael Bosco"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$I9yz8K0am1HR1zIICILqOOvRBQRaJL8l0V0VAmiiIB1GHj.mKwVby"], ["created_at", "2020-05-05 18:45:54.056856"], ["updated_at", "2020-05-05 18:45:54.056856"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "modi"], ["description", "Eos consequatur suscipit et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.060702"], ["updated_at", "2020-05-05 18:45:54.060702"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem et molestiae impedit?"], ["description", "Ipsum sit quasi molestiae."], ["date", "2020-05-06 18:45:54.062251"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.063255"], ["updated_at", "2020-05-05 18:45:54.063255"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem dolorum error est?"], ["description", "Molestiae vel aspernatur numquam."], ["date", "2020-05-06 18:45:54.064594"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.065430"], ["updated_at", "2020-05-05 18:45:54.065430"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae aspernatur praesentium corrupti?"], ["description", "Consequuntur beatae natus adipisci."], ["date", "2020-05-06 18:45:54.066621"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.067645"], ["updated_at", "2020-05-05 18:45:54.067645"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius quas tempore molestias?"], ["description", "Maxime debitis non aut."], ["date", "2020-05-06 18:45:54.070207"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.071849"], ["updated_at", "2020-05-05 18:45:54.071849"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod soluta animi sed?"], ["description", "Ex temporibus modi asperiores."], ["date", "2020-05-06 18:45:54.074550"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.077558"], ["updated_at", "2020-05-05 18:45:54.077558"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia quidem dolorem harum?"], ["description", "Qui hic et sit."], ["date", "2020-05-06 18:45:54.079014"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.079871"], ["updated_at", "2020-05-05 18:45:54.079871"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et hic natus corrupti?"], ["description", "Iste a ut et."], ["date", "2020-05-06 18:45:54.081108"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.082062"], ["updated_at", "2020-05-05 18:45:54.082062"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et neque occaecati velit?"], ["description", "Est ab facilis enim."], ["date", "2020-05-06 18:45:54.083352"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.084201"], ["updated_at", "2020-05-05 18:45:54.084201"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem sed vel ipsum?"], ["description", "Ea inventore et quia."], ["date", "2020-05-06 18:45:54.085348"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.086069"], ["updated_at", "2020-05-05 18:45:54.086069"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est et consectetur sequi?"], ["description", "Asperiores et sunt distinctio."], ["date", "2020-05-06 18:45:54.089159"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.092000"], ["updated_at", "2020-05-05 18:45:54.092000"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque amet architecto corporis?"], ["description", "Reprehenderit dolor ut deleniti."], ["date", "2020-05-06 18:45:54.093682"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.094653"], ["updated_at", "2020-05-05 18:45:54.094653"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt ea hic sint?"], ["description", "Accusantium aspernatur enim quas."], ["date", "2020-05-06 18:45:54.095960"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.096718"], ["updated_at", "2020-05-05 18:45:54.096718"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptate doloremque consequatur quia?"], ["description", "Magni doloremque ut voluptatem."], ["date", "2020-05-06 18:45:54.097917"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.098631"], ["updated_at", "2020-05-05 18:45:54.098631"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo sed totam unde?"], ["description", "Laboriosam deleniti ipsam voluptas."], ["date", "2020-05-06 18:45:54.099883"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.100617"], ["updated_at", "2020-05-05 18:45:54.100617"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque voluptas accusantium suscipit?"], ["description", "Necessitatibus inventore velit dicta."], ["date", "2020-05-06 18:45:54.101949"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.102711"], ["updated_at", "2020-05-05 18:45:54.102711"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis quam aut distinctio?"], ["description", "Non omnis molestiae sunt."], ["date", "2020-05-06 18:45:54.104044"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.104842"], ["updated_at", "2020-05-05 18:45:54.104842"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut delectus assumenda omnis?"], ["description", "Ut ad distinctio omnis."], ["date", "2020-05-06 18:45:54.106129"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.107058"], ["updated_at", "2020-05-05 18:45:54.107058"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit esse deserunt est?"], ["description", "Officia voluptas aliquam consectetur."], ["date", "2020-05-06 18:45:54.111022"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.112513"], ["updated_at", "2020-05-05 18:45:54.112513"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non accusamus quam et?"], ["description", "Et rerum doloribus ab."], ["date", "2020-05-06 18:45:54.114131"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.115068"], ["updated_at", "2020-05-05 18:45:54.115068"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum quis sunt aut?"], ["description", "Voluptas nisi voluptatem dolorum."], ["date", "2020-05-06 18:45:54.116321"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.117086"], ["updated_at", "2020-05-05 18:45:54.117086"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:45:54 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elizabeth Watsica"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$j4FThEuOYskOy5IPEaPbne5iZ98g.5pspCaiygEldpfUF/TqATDmq"], ["created_at", "2020-05-05 18:45:54.135633"], ["updated_at", "2020-05-05 18:45:54.135633"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Quaerat itaque in quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.138568"], ["updated_at", "2020-05-05 18:45:54.138568"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam accusamus vero omnis?"], ["description", "Natus nemo quia illum."], ["date", "2020-05-06 18:45:54.140156"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.141382"], ["updated_at", "2020-05-05 18:45:54.141382"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea in est odio?"], ["description", "Voluptatum id eum dignissimos."], ["date", "2020-05-06 18:45:54.143420"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.144533"], ["updated_at", "2020-05-05 18:45:54.144533"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea qui expedita cum?"], ["description", "Repellat sunt dolorem eos."], ["date", "2020-05-06 18:45:54.145875"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.146635"], ["updated_at", "2020-05-05 18:45:54.146635"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea ut et aliquid?"], ["description", "Rerum nisi autem velit."], ["date", "2020-05-06 18:45:54.148163"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.149828"], ["updated_at", "2020-05-05 18:45:54.149828"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos autem dolorem ad?"], ["description", "Iure eum esse placeat."], ["date", "2020-05-06 18:45:54.152379"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.154742"], ["updated_at", "2020-05-05 18:45:54.154742"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt magni repellendus natus?"], ["description", "Sed quas porro soluta."], ["date", "2020-05-06 18:45:54.157137"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.158825"], ["updated_at", "2020-05-05 18:45:54.158825"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur cum optio voluptatem?"], ["description", "Dolorum consequatur at in."], ["date", "2020-05-06 18:45:54.160174"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.161027"], ["updated_at", "2020-05-05 18:45:54.161027"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod laboriosam sed possimus?"], ["description", "Nam sed animi maxime."], ["date", "2020-05-06 18:45:54.162153"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.162929"], ["updated_at", "2020-05-05 18:45:54.162929"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio quis voluptates dolores?"], ["description", "Exercitationem quo qui consequuntur."], ["date", "2020-05-06 18:45:54.164088"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.164842"], ["updated_at", "2020-05-05 18:45:54.164842"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque excepturi dolorem ea?"], ["description", "Aut et sit neque."], ["date", "2020-05-06 18:45:54.166580"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.167502"], ["updated_at", "2020-05-05 18:45:54.167502"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla eos tempore est?"], ["description", "Non autem unde et."], ["date", "2020-05-06 18:45:54.171071"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.172120"], ["updated_at", "2020-05-05 18:45:54.172120"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim incidunt voluptas accusamus?"], ["description", "Ab et inventore nihil."], ["date", "2020-05-06 18:45:54.173623"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.174694"], ["updated_at", "2020-05-05 18:45:54.174694"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum eos culpa tempora?"], ["description", "Sunt nesciunt dolorum mollitia."], ["date", "2020-05-06 18:45:54.176450"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.177358"], ["updated_at", "2020-05-05 18:45:54.177358"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad aut eius quas?"], ["description", "Voluptatem sapiente vel officia."], ["date", "2020-05-06 18:45:54.178548"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.179298"], ["updated_at", "2020-05-05 18:45:54.179298"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque voluptate sint laborum?"], ["description", "Et eveniet dolorem non."], ["date", "2020-05-06 18:45:54.180465"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.181284"], ["updated_at", "2020-05-05 18:45:54.181284"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere eligendi ipsum voluptatem?"], ["description", "Sapiente et asperiores ea."], ["date", "2020-05-06 18:45:54.182408"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.183218"], ["updated_at", "2020-05-05 18:45:54.183218"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident quia earum sint?"], ["description", "Culpa et et corrupti."], ["date", "2020-05-06 18:45:54.184442"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.185216"], ["updated_at", "2020-05-05 18:45:54.185216"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat dolor nisi vel?"], ["description", "Qui iure maxime dignissimos."], ["date", "2020-05-06 18:45:54.186379"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.187119"], ["updated_at", "2020-05-05 18:45:54.187119"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam fugiat dicta architecto?"], ["description", "Vero et rerum animi."], ["date", "2020-05-06 18:45:54.189063"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.191207"], ["updated_at", "2020-05-05 18:45:54.191207"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima omnis dolorem voluptas?"], ["description", "Ipsa tempore quidem tempora."], ["date", "2020-05-06 18:45:54.194381"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:45:54.195348"], ["updated_at", "2020-05-05 18:45:54.195348"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:45:54 -0300 +Processing by MeetingsController#destroy as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + UserMeeting Load (0.1ms) SELECT "user_meetings".* FROM "user_meetings" WHERE "user_meetings"."meeting_id" = ? [["meeting_id", 1]] + Meeting Destroy (0.1ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 6ms (ActiveRecord: 0.8ms | Allocations: 2317) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Doloribus aut quae tenetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.215687"], ["updated_at", "2020-05-05 18:45:54.215687"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corrupti"], ["description", "Veniam rerum maxime reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.218572"], ["updated_at", "2020-05-05 18:45:54.218572"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quod"], ["description", "Consequatur ipsa unde impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.220127"], ["updated_at", "2020-05-05 18:45:54.220127"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Est nesciunt et quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.221455"], ["updated_at", "2020-05-05 18:45:54.221455"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempora"], ["description", "Eum veritatis placeat sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.222764"], ["updated_at", "2020-05-05 18:45:54.222764"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "temporibus"], ["description", "Enim eum aut eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.224264"], ["updated_at", "2020-05-05 18:45:54.224264"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "excepturi"], ["description", "Facilis voluptas sunt et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.226191"], ["updated_at", "2020-05-05 18:45:54.226191"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Numquam libero nostrum ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.228163"], ["updated_at", "2020-05-05 18:45:54.228163"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Fugiat nulla numquam velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.231786"], ["updated_at", "2020-05-05 18:45:54.231786"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "excepturi"], ["description", "Accusamus odio incidunt blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.235737"], ["updated_at", "2020-05-05 18:45:54.235737"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Clarinda O'Connell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$eNBXbPgrOSiAgYZPO8gWG.4rrqc2REo/08oboZM8RtFVBuHn4Ks32"], ["created_at", "2020-05-05 18:45:54.239506"], ["updated_at", "2020-05-05 18:45:54.239506"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:45:54 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.83ms) +Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.3ms | Allocations: 2914) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Quas minima molestias voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.261483"], ["updated_at", "2020-05-05 18:45:54.261483"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odit"], ["description", "Maxime reprehenderit nesciunt dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.264383"], ["updated_at", "2020-05-05 18:45:54.264383"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quasi"], ["description", "Quo qui sequi rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.265937"], ["updated_at", "2020-05-05 18:45:54.265937"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dicta"], ["description", "Fugiat quibusdam sunt quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.267311"], ["updated_at", "2020-05-05 18:45:54.267311"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "architecto"], ["description", "Laudantium nulla dolorum voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.269251"], ["updated_at", "2020-05-05 18:45:54.269251"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illo"], ["description", "Quia qui vel voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.272841"], ["updated_at", "2020-05-05 18:45:54.272841"], ["created_by", "1"]] +  (0.4ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatibus"], ["description", "Porro velit temporibus quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.277570"], ["updated_at", "2020-05-05 18:45:54.277570"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officia"], ["description", "Quibusdam voluptas id et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.279870"], ["updated_at", "2020-05-05 18:45:54.279870"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Enim similique vel vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.281324"], ["updated_at", "2020-05-05 18:45:54.281324"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Perferendis odit laborum quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.282710"], ["updated_at", "2020-05-05 18:45:54.282710"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Edward Farrell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mRkVCRrrtmhMzlU3ZFxoyusjZ1g9EH95yvlZxavsYP5QvBAa5eb1."], ["created_at", "2020-05-05 18:45:54.285366"], ["updated_at", "2020-05-05 18:45:54.285366"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:45:54 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (5.66ms) +Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.2ms | Allocations: 2843) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (2.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquam"], ["description", "Adipisci numquam porro eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.307341"], ["updated_at", "2020-05-05 18:45:54.307341"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "possimus"], ["description", "Repellendus totam minima corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.313514"], ["updated_at", "2020-05-05 18:45:54.313514"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officia"], ["description", "Vel distinctio ex et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.316154"], ["updated_at", "2020-05-05 18:45:54.316154"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "expedita"], ["description", "Vel ea distinctio inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.317629"], ["updated_at", "2020-05-05 18:45:54.317629"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquam"], ["description", "Expedita itaque in qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.318975"], ["updated_at", "2020-05-05 18:45:54.318975"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellat"], ["description", "Saepe tenetur voluptas libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.320279"], ["updated_at", "2020-05-05 18:45:54.320279"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illum"], ["description", "Expedita dignissimos iste eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.321608"], ["updated_at", "2020-05-05 18:45:54.321608"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Nam pariatur consectetur veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.323061"], ["updated_at", "2020-05-05 18:45:54.323061"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Est ut a inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.325325"], ["updated_at", "2020-05-05 18:45:54.325325"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eveniet"], ["description", "Tenetur rerum sint vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.327079"], ["updated_at", "2020-05-05 18:45:54.327079"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Crissy Stoltenberg"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dIJjBT.OPIST3eS3h7Y9keoAtjn3Md1PYDHSbqoeb2j3eXZtbTJfK"], ["created_at", "2020-05-05 18:45:54.330298"], ["updated_at", "2020-05-05 18:45:54.330298"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:45:54 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.04ms) +Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.3ms | Allocations: 2843) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:45:54 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.39ms) +Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.3ms | Allocations: 1242) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (11.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Officiis fuga iusto dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.361795"], ["updated_at", "2020-05-05 18:45:54.361795"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "optio"], ["description", "Sit aliquam tempore molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.364736"], ["updated_at", "2020-05-05 18:45:54.364736"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Et quia minus impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.366297"], ["updated_at", "2020-05-05 18:45:54.366297"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deserunt"], ["description", "Libero saepe voluptates culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.367878"], ["updated_at", "2020-05-05 18:45:54.367878"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Nostrum eaque accusantium veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.370320"], ["updated_at", "2020-05-05 18:45:54.370320"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "exercitationem"], ["description", "Quo dolores eveniet enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.374788"], ["updated_at", "2020-05-05 18:45:54.374788"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Unde facere voluptas molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.380492"], ["updated_at", "2020-05-05 18:45:54.380492"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsa"], ["description", "Quidem aut possimus ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.382245"], ["updated_at", "2020-05-05 18:45:54.382245"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "alias"], ["description", "Dolore magnam saepe delectus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.384511"], ["updated_at", "2020-05-05 18:45:54.384511"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "exercitationem"], ["description", "Quis quis vel officia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.386467"], ["updated_at", "2020-05-05 18:45:54.386467"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Brandon Bauch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VgOZN1uvBdbNU2r.GFe9BOxJT8nX/7B1orijCJ3zPLxcwxXmq4NyC"], ["created_at", "2020-05-05 18:45:54.390407"], ["updated_at", "2020-05-05 18:45:54.390407"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:45:54 -0300 +Processing by MeetsController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.3ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.63ms) +Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.4ms | Allocations: 2843) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:45:54 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (2.54ms) +Completed 200 OK in 5ms (Views: 2.8ms | ActiveRecord: 0.4ms | Allocations: 1240) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Nam quisquam odio fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.421623"], ["updated_at", "2020-05-05 18:45:54.421623"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Voluptas quia veritatis fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.424933"], ["updated_at", "2020-05-05 18:45:54.424933"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magnam"], ["description", "Veniam saepe voluptate unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.426854"], ["updated_at", "2020-05-05 18:45:54.426854"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aperiam"], ["description", "Velit ea nisi esse."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.428264"], ["updated_at", "2020-05-05 18:45:54.428264"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Veniam vel est distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.430560"], ["updated_at", "2020-05-05 18:45:54.430560"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Veniam deleniti qui in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.434074"], ["updated_at", "2020-05-05 18:45:54.434074"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "libero"], ["description", "Atque voluptatem maxime provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.437442"], ["updated_at", "2020-05-05 18:45:54.437442"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Impedit maxime facilis molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.439358"], ["updated_at", "2020-05-05 18:45:54.439358"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusantium"], ["description", "Cumque quam temporibus enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.440786"], ["updated_at", "2020-05-05 18:45:54.440786"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "explicabo"], ["description", "Repudiandae nam assumenda suscipit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.443319"], ["updated_at", "2020-05-05 18:45:54.443319"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sharolyn Jones"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xTOa840oU46ITXKWmNRbaOYI2DomTXmIWUlt148vpiSVJlNNN2TNm"], ["created_at", "2020-05-05 18:45:54.446239"], ["updated_at", "2020-05-05 18:45:54.446239"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:45:54 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (5.21ms) +Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:45:54 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Inventore aliquam distinctio exercitationem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.496849"], ["updated_at", "2020-05-05 18:45:54.496849"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laudantium"], ["description", "Rerum laboriosam unde sapiente."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.499949"], ["updated_at", "2020-05-05 18:45:54.499949"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Inventore omnis quibusdam pariatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.501710"], ["updated_at", "2020-05-05 18:45:54.501710"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Laboriosam non praesentium maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.503140"], ["updated_at", "2020-05-05 18:45:54.503140"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cumque"], ["description", "Sed ab maxime voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.504579"], ["updated_at", "2020-05-05 18:45:54.504579"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Placeat expedita voluptatem rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.506006"], ["updated_at", "2020-05-05 18:45:54.506006"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "pariatur"], ["description", "Animi temporibus soluta saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.507398"], ["updated_at", "2020-05-05 18:45:54.507398"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Et omnis suscipit est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.509645"], ["updated_at", "2020-05-05 18:45:54.509645"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Vel iste voluptas eius."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.513253"], ["updated_at", "2020-05-05 18:45:54.513253"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Quidem dolorem sunt et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.516508"], ["updated_at", "2020-05-05 18:45:54.516508"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Lydia Schneider"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$64aPkH3R7Uy2CFUc7dKJ5OwzfEm8/30l5sViXA4Ubnu/XO/m80PN6"], ["created_at", "2020-05-05 18:45:54.519481"], ["updated_at", "2020-05-05 18:45:54.519481"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:45:54 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.85ms) +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 15:45:54 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 404 Not Found in 2ms (Views: 0.6ms | ActiveRecord: 0.3ms | Allocations: 512) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "temporibus"], ["description", "Maxime itaque magnam nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.541989"], ["updated_at", "2020-05-05 18:45:54.541989"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illum"], ["description", "Architecto cumque eveniet est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.545874"], ["updated_at", "2020-05-05 18:45:54.545874"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nam"], ["description", "Soluta sint perspiciatis assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.547909"], ["updated_at", "2020-05-05 18:45:54.547909"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsam"], ["description", "Accusamus sequi molestiae quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.549397"], ["updated_at", "2020-05-05 18:45:54.549397"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "recusandae"], ["description", "Neque voluptates rerum at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.551911"], ["updated_at", "2020-05-05 18:45:54.551911"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "labore"], ["description", "Officia aut et qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.554178"], ["updated_at", "2020-05-05 18:45:54.554178"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Rerum quia repellendus in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.556342"], ["updated_at", "2020-05-05 18:45:54.556342"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iure"], ["description", "Enim eveniet non amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.557907"], ["updated_at", "2020-05-05 18:45:54.557907"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quidem"], ["description", "Laboriosam ipsam incidunt qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.560147"], ["updated_at", "2020-05-05 18:45:54.560147"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illum"], ["description", "Expedita porro minima ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.561754"], ["updated_at", "2020-05-05 18:45:54.561754"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Francesco Watsica"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pH0R7PJ1.egXRcIlgkAaUesPGJZnoimqeme5MCpViTf8REz3JtnjS"], ["created_at", "2020-05-05 18:45:54.564664"], ["updated_at", "2020-05-05 18:45:54.564664"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:45:54 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | ActiveRecord: 0.1ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:45: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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:45:54.590150"], ["updated_at", "2020-05-05 18:45:54.590150"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.52ms) +Completed 201 Created in 24ms (Views: 1.0ms | ActiveRecord: 1.6ms | Allocations: 6173) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vitae"], ["description", "Natus aut autem perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.609688"], ["updated_at", "2020-05-05 18:45:54.609688"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Est iusto autem maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.614433"], ["updated_at", "2020-05-05 18:45:54.614433"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eligendi"], ["description", "Tempore ad nihil aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.616177"], ["updated_at", "2020-05-05 18:45:54.616177"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Voluptates culpa consectetur et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.617633"], ["updated_at", "2020-05-05 18:45:54.617633"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laborum"], ["description", "Consequatur expedita ea dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.619136"], ["updated_at", "2020-05-05 18:45:54.619136"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "temporibus"], ["description", "Aperiam veritatis quidem labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.620507"], ["updated_at", "2020-05-05 18:45:54.620507"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Unde rem corporis reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.621876"], ["updated_at", "2020-05-05 18:45:54.621876"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "mollitia"], ["description", "Dolores dolorum adipisci et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.623326"], ["updated_at", "2020-05-05 18:45:54.623326"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "atque"], ["description", "Ea porro maiores tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.624825"], ["updated_at", "2020-05-05 18:45:54.624825"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dicta"], ["description", "Soluta dicta qui autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.626857"], ["updated_at", "2020-05-05 18:45:54.626857"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Houston Collier"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Vp3wzsrhrFRI3KScVLKBKe7m70zetsmTL2sgvzjvrCR56TMdtP9WS"], ["created_at", "2020-05-05 18:45:54.629683"], ["updated_at", "2020-05-05 18:45:54.629683"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:45:54 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.36ms) +Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.3ms | Allocations: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:45: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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:45:54.643414"], ["updated_at", "2020-05-05 18:45:54.643414"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.48ms) +Completed 201 Created in 6ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 2251) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Illum ea iusto repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.657794"], ["updated_at", "2020-05-05 18:45:54.657794"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eaque"], ["description", "Impedit nobis tempore veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.662323"], ["updated_at", "2020-05-05 18:45:54.662323"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Magni et consequatur dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.663934"], ["updated_at", "2020-05-05 18:45:54.663934"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Quam unde expedita aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.665590"], ["updated_at", "2020-05-05 18:45:54.665590"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "asperiores"], ["description", "Molestias praesentium corporis tenetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.666906"], ["updated_at", "2020-05-05 18:45:54.666906"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "atque"], ["description", "Est esse incidunt quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.668222"], ["updated_at", "2020-05-05 18:45:54.668222"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "commodi"], ["description", "Consequatur suscipit ea dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.669583"], ["updated_at", "2020-05-05 18:45:54.669583"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "commodi"], ["description", "Dolorum repellat est sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.671568"], ["updated_at", "2020-05-05 18:45:54.671568"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veniam"], ["description", "Et deserunt maiores est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.674901"], ["updated_at", "2020-05-05 18:45:54.674901"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magni"], ["description", "Nisi praesentium dolorum doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.677754"], ["updated_at", "2020-05-05 18:45:54.677754"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Jina Goldner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/j1bGya3i8PlUPU7LlZxg.y91MfNFOA/091jFOt9Lsv9flLUxomCO"], ["created_at", "2020-05-05 18:45:54.680514"], ["updated_at", "2020-05-05 18:45:54.680514"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:45:54 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:45:54 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 4006) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugit"], ["description", "Ad ut nihil distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.708053"], ["updated_at", "2020-05-05 18:45:54.708053"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Mollitia corrupti quibusdam est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.712842"], ["updated_at", "2020-05-05 18:45:54.712842"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "soluta"], ["description", "Quidem aliquam iste natus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.715269"], ["updated_at", "2020-05-05 18:45:54.715269"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "a"], ["description", "Sint sed fugit ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.717919"], ["updated_at", "2020-05-05 18:45:54.717919"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "libero"], ["description", "Hic aut magni voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.719677"], ["updated_at", "2020-05-05 18:45:54.719677"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Dolorem nam et sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.721151"], ["updated_at", "2020-05-05 18:45:54.721151"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequuntur"], ["description", "Dolorem omnis sit ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.722725"], ["updated_at", "2020-05-05 18:45:54.722725"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Sunt iure nostrum voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.724241"], ["updated_at", "2020-05-05 18:45:54.724241"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sequi"], ["description", "Architecto veniam non unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.726419"], ["updated_at", "2020-05-05 18:45:54.726419"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illo"], ["description", "Doloribus aut sunt necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.728034"], ["updated_at", "2020-05-05 18:45:54.728034"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mina Langworth"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oJInu6hHZrDviG2alkz.l.EniHxShMvDVrP0iQ.py4F7qmUNGHCLu"], ["created_at", "2020-05-05 18:45:54.730717"], ["updated_at", "2020-05-05 18:45:54.730717"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:45:54 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.29ms) +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 15:45:54 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 3697) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corporis"], ["description", "Dolores velit voluptatem rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.758026"], ["updated_at", "2020-05-05 18:45:54.758026"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Sapiente expedita ipsam placeat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.762589"], ["updated_at", "2020-05-05 18:45:54.762589"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Voluptatem optio ad eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.764774"], ["updated_at", "2020-05-05 18:45:54.764774"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "pariatur"], ["description", "Perferendis ab hic aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.766335"], ["updated_at", "2020-05-05 18:45:54.766335"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusamus"], ["description", "Quibusdam praesentium qui amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.767830"], ["updated_at", "2020-05-05 18:45:54.767830"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perspiciatis"], ["description", "Nobis minus quod tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.769299"], ["updated_at", "2020-05-05 18:45:54.769299"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "amet"], ["description", "Sit fuga omnis commodi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.770908"], ["updated_at", "2020-05-05 18:45:54.770908"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Et fugit consequatur et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.773810"], ["updated_at", "2020-05-05 18:45:54.773810"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repudiandae"], ["description", "Qui delectus in rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.777132"], ["updated_at", "2020-05-05 18:45:54.777132"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatum"], ["description", "Asperiores quae voluptatibus eligendi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.778768"], ["updated_at", "2020-05-05 18:45:54.778768"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Danika Parisian"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$nAy0q83ncDbfZuMT6dhsue4Cmp8z.CxnKBABiqzLYCpEx06mkCRWm"], ["created_at", "2020-05-05 18:45:54.781378"], ["updated_at", "2020-05-05 18:45:54.781378"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:45:54 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2843) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:45:54 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:45:54.793944"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 4ms (ActiveRecord: 0.5ms | Allocations: 1044) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Pariatur distinctio voluptatem quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.804427"], ["updated_at", "2020-05-05 18:45:54.804427"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloribus"], ["description", "Iste blanditiis sed omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.808564"], ["updated_at", "2020-05-05 18:45:54.808564"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Doloribus fugit sint voluptatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.810855"], ["updated_at", "2020-05-05 18:45:54.810855"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Nesciunt ad cum eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.813386"], ["updated_at", "2020-05-05 18:45:54.813386"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Modi libero veritatis animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.815217"], ["updated_at", "2020-05-05 18:45:54.815217"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "totam"], ["description", "Hic voluptatem et consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.817121"], ["updated_at", "2020-05-05 18:45:54.817121"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perferendis"], ["description", "Blanditiis hic vitae soluta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.819388"], ["updated_at", "2020-05-05 18:45:54.819388"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "expedita"], ["description", "Recusandae eius sit quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.820914"], ["updated_at", "2020-05-05 18:45:54.820914"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maxime"], ["description", "Unde laborum aut magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.822280"], ["updated_at", "2020-05-05 18:45:54.822280"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fuga"], ["description", "Laborum reiciendis dolor voluptatum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.823606"], ["updated_at", "2020-05-05 18:45:54.823606"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hallie Turcotte"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$iEvXuZykP1txePzxIW8HFOGvWsMSPxywL.CeYO0NsiUTbQfWKwHY2"], ["created_at", "2020-05-05 18:45:54.826564"], ["updated_at", "2020-05-05 18:45:54.826564"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:45:54 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.64ms) +Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.2ms | Allocations: 2846) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:45:54 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.2ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:45:54.840071"], ["id", 1]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 4ms (ActiveRecord: 0.7ms | Allocations: 999) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (1.7ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellat"], ["description", "Iusto rerum dolorem alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.851607"], ["updated_at", "2020-05-05 18:45:54.851607"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellendus"], ["description", "Nam incidunt dicta id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.856578"], ["updated_at", "2020-05-05 18:45:54.856578"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quam"], ["description", "Ab nostrum accusamus consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.859344"], ["updated_at", "2020-05-05 18:45:54.859344"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Expedita dolorum quis id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.861091"], ["updated_at", "2020-05-05 18:45:54.861091"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "error"], ["description", "Sequi quasi qui ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.862447"], ["updated_at", "2020-05-05 18:45:54.862447"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Sit explicabo dolor earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.863955"], ["updated_at", "2020-05-05 18:45:54.863955"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Accusantium odit unde quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.865317"], ["updated_at", "2020-05-05 18:45:54.865317"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "porro"], ["description", "Possimus doloribus ut magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.866637"], ["updated_at", "2020-05-05 18:45:54.866637"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Omnis aut velit blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.867930"], ["updated_at", "2020-05-05 18:45:54.867930"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "adipisci"], ["description", "Sit ullam sint dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:45:54.869268"], ["updated_at", "2020-05-05 18:45:54.869268"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Leoma Hauck"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$zHylQqg0R8nkhz0LuMjE5OHBoqasoedg34WGDtBfGMs3D3GayelOq"], ["created_at", "2020-05-05 18:45:54.872465"], ["updated_at", "2020-05-05 18:45:54.872465"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:45:54 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (2.94ms) +Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:45:54 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1205) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ervin Pollich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9/pib1QA5HtD/fE2c/wajun5/JH.7ojMkry6Zsnagn2tUlHXsyFfK"], ["created_at", "2020-05-05 18:45:54.899140"], ["updated_at", "2020-05-05 18:45:54.899140"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Rob Jerde"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2zMZD66vyInRVUW15KleKeQutVAXTK757mThC5tdiW3fH7Lpajs6e"], ["created_at", "2020-05-05 18:45:54.903024"], ["updated_at", "2020-05-05 18:45:54.903024"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jamison Anderson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qZ5p3Wy01vpEooMHS/Ni0e/ttyvdSxEReYhGrfQUcAMJiXsDeZFey"], ["created_at", "2020-05-05 18:45:54.905704"], ["updated_at", "2020-05-05 18:45:54.905704"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rubin Bradtke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rJe5H5.gva911sDK6xsJv.dco/TnLzgs/e0J9qc/rgge2PHVW2Hea"], ["created_at", "2020-05-05 18:45:54.908784"], ["updated_at", "2020-05-05 18:45:54.908784"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Audie Huels"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$h.uO2cTKkhKYEWgQQn8YHOMai.JNAuNIcS7wNUbyvc1i7goUV7Yai"], ["created_at", "2020-05-05 18:45:54.912096"], ["updated_at", "2020-05-05 18:45:54.912096"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leonida Dickinson DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$uxqGGy3k5Kgq24urpOuEreOBHleTn10Vurf94wkn.hClA.vBB8Nu2"], ["created_at", "2020-05-05 18:45:54.917005"], ["updated_at", "2020-05-05 18:45:54.917005"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Roberto Halvorson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gQyLSVuD14A/4Wvj/eGSv.sL5kCLNcpWDF9kprEvK1FwVh5eJ9uNe"], ["created_at", "2020-05-05 18:45:54.920106"], ["updated_at", "2020-05-05 18:45:54.920106"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Buford Gerhold PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$cWeZkhFxpJ120n6Dd746..Eg9hOJlHCEwe/TNCAZD4sZVnpCC5/fK"], ["created_at", "2020-05-05 18:45:54.922939"], ["updated_at", "2020-05-05 18:45:54.922939"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lanell Wyman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.AcnOR8wM5QTNaYao9CVx.SNpWHIoV4eSyYKdECs0fFUgIrk3SjpC"], ["created_at", "2020-05-05 18:45:54.926334"], ["updated_at", "2020-05-05 18:45:54.926334"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kathern Volkman Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8G8AqX04cQMLgmAbDPEGOerCU43wdomkYNIEtfU5qLFCJp3BYiqgi"], ["created_at", "2020-05-05 18:45:54.929111"], ["updated_at", "2020-05-05 18:45:54.929111"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:45:54 -0300 +Processing by UsersController#index as HTML + User Load (0.3ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.22ms) +Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.3ms | Allocations: 2345) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.0ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Logan Langworth"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$93yS7i2pY2MZXtODk6YBQ.HMuPa.y7epMYwAOqBPFBnwr.VUjlehm"], ["created_at", "2020-05-05 18:45:54.951604"], ["updated_at", "2020-05-05 18:45:54.951604"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Emmanuel Mraz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DXktJ7RI4Zk8yKrEAasB..q9CKieknVmMsRVsZZvbXU/q6euhO9Um"], ["created_at", "2020-05-05 18:45:54.957362"], ["updated_at", "2020-05-05 18:45:54.957362"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Rikki Bednar"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Ki6SO3TNkCrK5uSYEIApQOeaeTl7EPLxfLb/ssDpwT4OyrXVgf7ae"], ["created_at", "2020-05-05 18:45:54.961615"], ["updated_at", "2020-05-05 18:45:54.961615"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mario Erdman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RY.fbvtgF4FAJxrzNISPc.kyRSCC0.nxIUqsc.XAe8tXLESFamPjG"], ["created_at", "2020-05-05 18:45:54.964237"], ["updated_at", "2020-05-05 18:45:54.964237"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Christopher D'Amore"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mww1xFlD07dSFg97dDOoo.LjROTMgAjocuvLNOpBXTxHq.Y3nwCyO"], ["created_at", "2020-05-05 18:45:54.966992"], ["updated_at", "2020-05-05 18:45:54.966992"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nolan Skiles"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.Bl3Hlpj2zzrwLss40vf7.HMCVTRNama7P6hEaKT7ezOoyXQX8cB."], ["created_at", "2020-05-05 18:45:54.969705"], ["updated_at", "2020-05-05 18:45:54.969705"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Siobhan Hills"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$j00EY4ErHufLcZTfDb21Teym30rn1QEEoi0/J4nAOgZXHRzZ8x1J2"], ["created_at", "2020-05-05 18:45:54.972533"], ["updated_at", "2020-05-05 18:45:54.972533"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Angelic Skiles"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5o/bIzBRK7M/uacrEziwL.SQJRdAzeL/KbnyjWKkrum0Hcb0UQgg."], ["created_at", "2020-05-05 18:45:54.977781"], ["updated_at", "2020-05-05 18:45:54.977781"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Gaston Hilpert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$iwzyzqZkMW4ftbdTLTKxNOjx79U459Y/jwmG.nuF0byMRL1SA.w6y"], ["created_at", "2020-05-05 18:45:54.981127"], ["updated_at", "2020-05-05 18:45:54.981127"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Stefan Baumbach"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XGGWouBi34/0dY4YmyV9dueZazUbNfpnzvv4JCreQpOCYfx.m5NCe"], ["created_at", "2020-05-05 18:45:54.983930"], ["updated_at", "2020-05-05 18:45:54.983930"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:45:54 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.51ms) +Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.1ms | Allocations: 2203) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Damian Swaniawski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4uacgMgrInw02K4vvf17uOp2UeFyquktxmakPh5M8F1JH5eTZxL0C"], ["created_at", "2020-05-05 18:45:55.003063"], ["updated_at", "2020-05-05 18:45:55.003063"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Stacey Gaylord PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SQb57j90lrRD8nDsCWNuiePohYY.EalpudprlA6Y61qggKVuj45yq"], ["created_at", "2020-05-05 18:45:55.007578"], ["updated_at", "2020-05-05 18:45:55.007578"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Benton Bartoletti"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GEXI0oS6YdisXqc4PDJ5z.AHZlh5rD0YwzT6BEUqWxjm4KhEeK6Uu"], ["created_at", "2020-05-05 18:45:55.010777"], ["updated_at", "2020-05-05 18:45:55.010777"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Myrtice Dickinson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.42dfmUL6UkdEFX4PJ1JX.3xI4s4UtcG4CkTe8dE5YGUQk9WFFmq2"], ["created_at", "2020-05-05 18:45:55.014189"], ["updated_at", "2020-05-05 18:45:55.014189"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Adam Abbott"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7ni0cnGNdrakja9a/UwclOioMqu2gcix7YSA23QI7ruitG0q5eUb6"], ["created_at", "2020-05-05 18:45:55.017990"], ["updated_at", "2020-05-05 18:45:55.017990"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Vincenzo Dibbert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rzzrTpbevCaYjVFINhlvpOZh5QUzGOmMe7b4/v6He5eziYWneFfle"], ["created_at", "2020-05-05 18:45:55.021041"], ["updated_at", "2020-05-05 18:45:55.021041"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Wynona Beahan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$8zHRFXjadENfNFlipNO0lerRejpfm.t4nmUCf222hVc0wGALFUr52"], ["created_at", "2020-05-05 18:45:55.023773"], ["updated_at", "2020-05-05 18:45:55.023773"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Addie Durgan I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3jtcB3HA0WG4mCszTOAMqeZsQPhIoJW5.iblsg6NcqEADFMxOdxmG"], ["created_at", "2020-05-05 18:45:55.027059"], ["updated_at", "2020-05-05 18:45:55.027059"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ronna Mosciski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rof8INVLElqQtFZlzwFNeeSiKO/SXvmp96EVFClZPpZ.Ccm7mfv0e"], ["created_at", "2020-05-05 18:45:55.029585"], ["updated_at", "2020-05-05 18:45:55.029585"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Wilton Brekke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YiHK/2qaV2Jf70EsDysabug6SVVG3F5Evg5FV9WI9zsKhA7uI8c8y"], ["created_at", "2020-05-05 18:45:55.032128"], ["updated_at", "2020-05-05 18:45:55.032128"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:45:55 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.9ms) +Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:45:55 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.67ms) +Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.3ms | Allocations: 692) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elvina Cummerata"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$d4eLZEaVzmgBNrwlS0r9guoP6cvKBB7MN0WAGZfiprDu.bUw.023a"], ["created_at", "2020-05-05 18:45:55.063422"], ["updated_at", "2020-05-05 18:45:55.063422"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Kraig Hand"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NekuhzrtERRy4CaiT3AGi.fsJODrJ5lslmOIvZ./pozlZjWpO8.3y"], ["created_at", "2020-05-05 18:45:55.068972"], ["updated_at", "2020-05-05 18:45:55.068972"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + User Create (0.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Aundrea Lowe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$EBZftMpUCPZDLHMl12uSVutNPfAJ45ATjOScjGpmDgMx2oM.90Yi2"], ["created_at", "2020-05-05 18:45:55.073310"], ["updated_at", "2020-05-05 18:45:55.073310"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Thanh Conn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$uoMh14ae.LLTj4VA2VJ2J.QTOVJR2Gkpv2bqzNVdl2vbeayU85IoG"], ["created_at", "2020-05-05 18:45:55.079486"], ["updated_at", "2020-05-05 18:45:55.079486"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Agustin Wiza"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$E3.yJ3lAQYUKcZ3a8sqkx.ztr1shTBXhlT5WU0D0l9tb6JmoQWy1W"], ["created_at", "2020-05-05 18:45:55.082908"], ["updated_at", "2020-05-05 18:45:55.082908"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lisa Walker"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6ZjpbDNDURB7a2CttrwKreBpRHW2PnAMSgS52vHPGcTnaI7G7r8f6"], ["created_at", "2020-05-05 18:45:55.086594"], ["updated_at", "2020-05-05 18:45:55.086594"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shayne Dietrich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vE0Y2mzsHTL1ckhTlGkNhe5o9THUa9yfNPiRONQrufvkJOQLEp7gW"], ["created_at", "2020-05-05 18:45:55.090312"], ["updated_at", "2020-05-05 18:45:55.090312"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hui Bernhard"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tf0xJl0wVIy2OIaC27FBrue.wO3Y.CSOiKUE6TkB/Q9evbHGiaCTS"], ["created_at", "2020-05-05 18:45:55.095979"], ["updated_at", "2020-05-05 18:45:55.095979"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Catrina Gleichner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6rvzh0R6AVS0ff/azRwT3eGM/LSwcwWCTrU7KZE1Neh14Kt7.ci/C"], ["created_at", "2020-05-05 18:45:55.099431"], ["updated_at", "2020-05-05 18:45:55.099431"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Peter Stoltenberg"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$B4D4QUDaBf61We0hBk.hdepIg7ieyScnwCzMRP5wdfPFfgThuI58O"], ["created_at", "2020-05-05 18:45:55.102332"], ["updated_at", "2020-05-05 18:45:55.102332"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:45:55 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.88ms) +Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:45:55 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.56ms) +Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.4ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Effie Schmidt V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$wAx/.xsbK5D0piYLrPUs/e/88diwYNU06NjSCRbFfMslzKigvtZNW"], ["created_at", "2020-05-05 18:45:55.129665"], ["updated_at", "2020-05-05 18:45:55.129665"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Denisse Hoppe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KtgKOhQaPWDc3GOjCk27N.Nw9NPpb1u2l.NzcmfZn9VVENfBc0V7S"], ["created_at", "2020-05-05 18:45:55.134328"], ["updated_at", "2020-05-05 18:45:55.134328"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ty Lang"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$D9uFopil6N3LXpPyidla3ucCbnECJFOb51en5vr3VrGx.1/Y/Qn0e"], ["created_at", "2020-05-05 18:45:55.140196"], ["updated_at", "2020-05-05 18:45:55.140196"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lisbeth Collins V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FwJhiJGvqb.TKcTv4JFheeaVZsVuParURsrRAAKD1ZV0ynUASeah."], ["created_at", "2020-05-05 18:45:55.145082"], ["updated_at", "2020-05-05 18:45:55.145082"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bradly Lockman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GmDwypU7.53K./3n0Wm5/eJrX6UELDq8LVCQ2SXpWgQWSWUmLmDkS"], ["created_at", "2020-05-05 18:45:55.148595"], ["updated_at", "2020-05-05 18:45:55.148595"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Camie Ankunding Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GsAoCHAGoLR33Yu/JNZyc.D8Ylo2OljzgYtDPL5QJ6MeQpUMh9t2C"], ["created_at", "2020-05-05 18:45:55.151798"], ["updated_at", "2020-05-05 18:45:55.151798"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tonja Willms"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$C03e76A.Z55nmQ.ypyfO4O/.1GHCmsjbBBdNASqSWKApyN.h7k8pq"], ["created_at", "2020-05-05 18:45:55.157839"], ["updated_at", "2020-05-05 18:45:55.157839"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cori Zulauf"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Y4GHLHvFTU143lGwMfw4T.JikhlhR7alNREHs6Jb/2xp2JqTYa/ES"], ["created_at", "2020-05-05 18:45:55.163047"], ["updated_at", "2020-05-05 18:45:55.163047"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Ward Mertz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$feEto/d0ym8G8AfKoM/rg.sWNO7Um/3kHQcLP8Sstc5.ie9ZNjROu"], ["created_at", "2020-05-05 18:45:55.166920"], ["updated_at", "2020-05-05 18:45:55.166920"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Antonio Hauck Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0w52/K3tu6VFRfIqg73Jw.CFlsvRncSYPObcLVtut8ZSfDRv4fO5S"], ["created_at", "2020-05-05 18:45:55.170406"], ["updated_at", "2020-05-05 18:45:55.170406"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:45:55 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.76ms) +Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.2ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:45:55 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (20.5ms) rollback transaction +  (0.2ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.0ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Garland Stoltenberg"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SQsjSx5VGwKbZtFeSC3xl.AbLuFwwKb6UXUnvljzQlKYGlcDFk4yK"], ["created_at", "2020-05-05 18:45:55.212192"], ["updated_at", "2020-05-05 18:45:55.212192"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Dean Legros"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4NGBiFDPS.Pz2hv5wPDSEuUu4EPRw94PSjZ2llnGAiUbYdiE3m0ae"], ["created_at", "2020-05-05 18:45:55.218907"], ["updated_at", "2020-05-05 18:45:55.218907"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shiela Barton"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7GUxM4XnJfzwgGeItFv0lOBQwHraVdyqBCdjoly37ZDzVTX9MUIxa"], ["created_at", "2020-05-05 18:45:55.222353"], ["updated_at", "2020-05-05 18:45:55.222353"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Retta Ritchie MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$G4GLsPnQJdarSF9rCCOuH.sgwpK.iXbUTN6Pal3ux0uz70/.UBuXi"], ["created_at", "2020-05-05 18:45:55.226373"], ["updated_at", "2020-05-05 18:45:55.226373"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Grady Bradtke Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Em4MVLBssyPvba1HavIwIOHeUZHntAhFwCAHdRetchMsXujcfSiPe"], ["created_at", "2020-05-05 18:45:55.230680"], ["updated_at", "2020-05-05 18:45:55.230680"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Else Stanton"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6jEXQySVn.bmfo1AkQW9n.L1RVDZf66lBY1Gf/jOF.YZBcnX9OqSq"], ["created_at", "2020-05-05 18:45:55.234435"], ["updated_at", "2020-05-05 18:45:55.234435"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alda Ryan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hGvHpfkND2jPYUc2VbPzneQbYFhyfYGpAXRGXrj6WD4tyXATl54X6"], ["created_at", "2020-05-05 18:45:55.239517"], ["updated_at", "2020-05-05 18:45:55.239517"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lera Bergstrom MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SKDDHCThfgHxdadJjzliJuyZbHXBHAL32FzOgfgIVyZ1zdVEsdVra"], ["created_at", "2020-05-05 18:45:55.243300"], ["updated_at", "2020-05-05 18:45:55.243300"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Trisha Howe PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$yTJDe/xBm.mGXfJpyHFpjuFJSL3E/6wKbriCzYt/.OxiD0NMj/UNC"], ["created_at", "2020-05-05 18:45:55.247349"], ["updated_at", "2020-05-05 18:45:55.247349"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Eugenio Mayer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SqMCWTCFkJd9Ro38D0FU5.ORxd6oB4C3rEFEosl144TEha6BzVLFi"], ["created_at", "2020-05-05 18:45:55.250473"], ["updated_at", "2020-05-05 18:45:55.250473"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:45:55 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (5.73ms) +Completed 200 OK in 9ms (Views: 7.9ms | ActiveRecord: 0.2ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:45:55 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 526) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Latoria Torp"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tLmgBKwKFx.ESGQ2eKP9ReHLX73lhEzHe4UF2i5os/5gVT3eKnxt6"], ["created_at", "2020-05-05 18:45:55.299676"], ["updated_at", "2020-05-05 18:45:55.299676"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Otis Kutch MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9FTfmwnPOlMNtYMbE4P2Ju61OZS9KvjVbzM7xJsXbyKpqk1PjtaR2"], ["created_at", "2020-05-05 18:45:55.305306"], ["updated_at", "2020-05-05 18:45:55.305306"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Pansy Brakus"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fYrqOOn1R1k..oAYE6hgu.Oe7boaElG2.D5neyvfpUPq2HNFt8lgm"], ["created_at", "2020-05-05 18:45:55.309304"], ["updated_at", "2020-05-05 18:45:55.309304"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Dahlia Herman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7ABvILp//ceXTGPG1j3I4uNrXdR0XQwwcUj9Q7.RrSe/byJNq4tdi"], ["created_at", "2020-05-05 18:45:55.312999"], ["updated_at", "2020-05-05 18:45:55.312999"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Barry Sanford"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LwLeczP2wskcyAknkaNzLesoMReSAdEU3vug3thRw5MUPNdRSPowm"], ["created_at", "2020-05-05 18:45:55.317253"], ["updated_at", "2020-05-05 18:45:55.317253"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marcus Grady"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3ODOsORN0xinW5g3.uBzR.6mrpRHRKgox5brwXHkNkTs6homQw3US"], ["created_at", "2020-05-05 18:45:55.322257"], ["updated_at", "2020-05-05 18:45:55.322257"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alethea Weissnat"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JE1HFZWWHmrdJ06LinefkuknDSEQ8ml.2QNVjTb5HdVaJJOW87E1K"], ["created_at", "2020-05-05 18:45:55.327405"], ["updated_at", "2020-05-05 18:45:55.327405"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nadine Dietrich PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ga3.JZBVwvsOkbHQgmOvveBXd3gYeILkIbO/Fn0bk/BHvTGxtx6AG"], ["created_at", "2020-05-05 18:45:55.330388"], ["updated_at", "2020-05-05 18:45:55.330388"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shirly Gottlieb Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$y66f2cGNE1LTaik2xASqGuYYoS26LZ.QeQ2fezS2ljXzdQqVFCXWa"], ["created_at", "2020-05-05 18:45:55.333449"], ["updated_at", "2020-05-05 18:45:55.333449"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Joan Hand"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QZNvTcVWYWOAOmqfthtl5.C10e1H42KQXXoFnp1sfbWVbf3a55tJy"], ["created_at", "2020-05-05 18:45:55.337889"], ["updated_at", "2020-05-05 18:45:55.337889"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:45:55 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.1ms) +Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:45:55 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Sheyla", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "email"=>"shey@mail.com"} +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sheyla"], ["email", "shey@mail.com"], ["password_digest", "$2a$04$aJqNi79G3YgTz8EPQiJ5sOtmaT6BEop1ctsmxuHCF1x1TnOWGr3gK"], ["created_at", "2020-05-05 18:45:55.350490"], ["updated_at", "2020-05-05 18:45:55.350490"], ["picture", "https://joeschmoe.io/api/v1/jack"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.81ms) +Completed 201 Created in 15ms (Views: 2.6ms | ActiveRecord: 0.6ms | Allocations: 1715) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dylan Bartell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Rbs/C620IvSqfatSM9.Hz.NdThpBkGq6e5ijqnUM.Na7n88aWrFVG"], ["created_at", "2020-05-05 18:45:55.380156"], ["updated_at", "2020-05-05 18:45:55.380156"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Corrin Morar"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KP7ALA.XvET6khiTKbyBAOnwiAQXQk.eRbgczwIv6i789.qeCunUe"], ["created_at", "2020-05-05 18:45:55.385889"], ["updated_at", "2020-05-05 18:45:55.385889"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Kelley Grant"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ot8HlOqO8Jh183/P3QLMU.gOOCEengUcGuBmHhojKrsVpNvlnma4e"], ["created_at", "2020-05-05 18:45:55.389616"], ["updated_at", "2020-05-05 18:45:55.389616"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gabriel Gaylord"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qiv87QQDgCGEj8ILp.mBWeJnY7BSJbRaeVthG7zswXPMi6zklraS2"], ["created_at", "2020-05-05 18:45:55.394857"], ["updated_at", "2020-05-05 18:45:55.394857"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Phillis Borer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SNKB3PqAJR7MayKK9yL8Q.d94xiVrwiKQdYGdI0h8x./NumtmFOW6"], ["created_at", "2020-05-05 18:45:55.402165"], ["updated_at", "2020-05-05 18:45:55.402165"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Donald Strosin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oT4FGE0GTrpcQ.HaMq/h2OukoozYHLcHC2kc7P0DwN6myHlxctg5K"], ["created_at", "2020-05-05 18:45:55.406821"], ["updated_at", "2020-05-05 18:45:55.406821"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Corrina Greenfelder"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$MHaotLr1114xwxu3x4hlRu48kaCZB24y1r68VXj2oAAV874pbSpcO"], ["created_at", "2020-05-05 18:45:55.413753"], ["updated_at", "2020-05-05 18:45:55.413753"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Seth Grimes"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mL5dtLTkHpOLgStcHhnkcOrC.fy6lSlLQ21E7YrsARLHHfdzVunlC"], ["created_at", "2020-05-05 18:45:55.419391"], ["updated_at", "2020-05-05 18:45:55.419391"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Antone Nitzsche"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KHxOWZp5Y/ly5J.3IHGTmuWEbyZvjzpEabs64z2tiinH0ovE6JZhS"], ["created_at", "2020-05-05 18:45:55.422809"], ["updated_at", "2020-05-05 18:45:55.422809"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Glory Murray"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Fkrv9nuKhhiskiMGscF6BuGa8KZd7UMRIzATWbVm2hDl9CKVFNlo."], ["created_at", "2020-05-05 18:45:55.426337"], ["updated_at", "2020-05-05 18:45:55.426337"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:45:55 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (5.09ms) +Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.2ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:45:55 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Sheyla", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "email"=>"shey@mail.com"} +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sheyla"], ["email", "shey@mail.com"], ["password_digest", "$2a$04$glqHoKqKkadrJWKxo1eBlu9wlE/7L8KMcbq3cS9SW6R7AFWqqr4Iu"], ["created_at", "2020-05-05 18:45:55.443356"], ["updated_at", "2020-05-05 18:45:55.443356"], ["picture", "https://joeschmoe.io/api/v1/josh"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.45ms) +Completed 201 Created in 9ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1295) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lyle Barton"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QL28cuTC80lQX1OvGqUUGOWgTdDH8W9RyO6BsOsj/kPzwiA1BlHQS"], ["created_at", "2020-05-05 18:45:55.465189"], ["updated_at", "2020-05-05 18:45:55.465189"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Anton Feeney"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WpRDqIGIlOEZ/dA48fXBQOLyb0LnjzjAtXQseJVbZwjvC8678ilgu"], ["created_at", "2020-05-05 18:45:55.470815"], ["updated_at", "2020-05-05 18:45:55.470815"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + User Create (0.9ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Annie Balistreri"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3eEOclCFORxdeOMpWYJLMOJPe6RYRaYqMSO0kf0sfzNIy4I9Fk8e6"], ["created_at", "2020-05-05 18:45:55.490853"], ["updated_at", "2020-05-05 18:45:55.490853"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jimmie Medhurst"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7Y5h3JTJznROCsqBUBN.jeV90XBcJjyJeOJIbd/vFLJ/14rmafjva"], ["created_at", "2020-05-05 18:45:55.499397"], ["updated_at", "2020-05-05 18:45:55.499397"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Erick Morissette"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tUxLfcCXOE3vLa54AQ87COfTvXs4dUCUTdw9Dll2dmX2ZA32ZNunu"], ["created_at", "2020-05-05 18:45:55.503848"], ["updated_at", "2020-05-05 18:45:55.503848"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lino Lang"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UdIWVWyFqx7kxQFQ6eiJVeUNW0oaaE7Z99VkVQhVFQyUrcdLIMjy6"], ["created_at", "2020-05-05 18:45:55.510995"], ["updated_at", "2020-05-05 18:45:55.510995"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Lincoln Kihn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Y5wPDx8jSbm9eWNXYtmhCeVXiwjVhbZDLZ0T969XubFkt3YAOjKKS"], ["created_at", "2020-05-05 18:45:55.517216"], ["updated_at", "2020-05-05 18:45:55.517216"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Noe Mertz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tqeCijBYL3EMBq/pa0ug/.3LLivqNH9m0SFcobIBv9Ih5HOUdTs5u"], ["created_at", "2020-05-05 18:45:55.521550"], ["updated_at", "2020-05-05 18:45:55.521550"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Melvin Robel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VMvmLOOWBJDv3b46UJt3X.ifavnpVwqAK5a9A/RcTDPurQvu4bOeW"], ["created_at", "2020-05-05 18:45:55.526070"], ["updated_at", "2020-05-05 18:45:55.526070"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nadene Cummerata"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tdC4rhfU3sJ3jQ0txTNFZuUvAKAjnHUnpQFGTxXSr31ZdxS8XEnpK"], ["created_at", "2020-05-05 18:45:55.529228"], ["updated_at", "2020-05-05 18:45:55.529228"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:45:55 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.9ms) +Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:45:55 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Foobar"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.11ms) +Completed 401 Unauthorized in 4ms (Views: 0.8ms | ActiveRecord: 0.3ms | Allocations: 1817) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nakita Hamill"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UgvvQZLouhi9WT32e1.MaeRvBh.GyRusqk6Qt5K./5e/aHUMCXsOm"], ["created_at", "2020-05-05 18:45:55.560859"], ["updated_at", "2020-05-05 18:45:55.560859"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Dottie Hyatt"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$IocA1gfaIpNLDLgnxVS60.wwF3edg/J18ECny7FaWaUbFL7ZF166u"], ["created_at", "2020-05-05 18:45:55.565783"], ["updated_at", "2020-05-05 18:45:55.565783"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ricardo Adams"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7gX.YAE0QJzQ8T7gUBkkaeOg2hZLORA7JVxd0jf5liPsXWnCxx4/m"], ["created_at", "2020-05-05 18:45:55.568692"], ["updated_at", "2020-05-05 18:45:55.568692"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Donte Rodriguez II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fh9j0WUjyZ9YGqq0pH2.9.3vm7Z9ZsSvuetWYlalPTWJ34Fmd4Fju"], ["created_at", "2020-05-05 18:45:55.571159"], ["updated_at", "2020-05-05 18:45:55.571159"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jonna Schiller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NKQ4./8f0v8vzUEwmjUsy.PfilzrtfIx.3A55G./jTlyrYi4.6bMm"], ["created_at", "2020-05-05 18:45:55.573714"], ["updated_at", "2020-05-05 18:45:55.573714"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jolie Murphy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4ODeRWalARxcwF0X/Cr7RujqpPw8BmBD7HPbmBq0a5DI/CeeJAoD."], ["created_at", "2020-05-05 18:45:55.577124"], ["updated_at", "2020-05-05 18:45:55.577124"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Danille Pouros Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vm7VgyC/jdt/3PubnKtLeOGN1qQNIx2VR/gwxCPmHcPWxMY2BqUKC"], ["created_at", "2020-05-05 18:45:55.581134"], ["updated_at", "2020-05-05 18:45:55.581134"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Norberto D'Amore"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$89ofEnXHqZ62O2TZnULMM.uMZZuZdz3lKGFrpz2zWtfXeKhbbDGe2"], ["created_at", "2020-05-05 18:45:55.585092"], ["updated_at", "2020-05-05 18:45:55.585092"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kaylene Mosciski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TRTWCnPLZt/Lwcy6cTZzWuZMRfOq0fik.9QKRVpyab/fW23rtoKTq"], ["created_at", "2020-05-05 18:45:55.589085"], ["updated_at", "2020-05-05 18:45:55.589085"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Christian Carter"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9QuwaHaRdW03PaJfJ2Epa.P9xnA/.4aJInMskJG5wwpHu7/w9MVle"], ["created_at", "2020-05-05 18:45:55.592228"], ["updated_at", "2020-05-05 18:45:55.592228"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:45:55 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.45ms) +Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:45:55 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 401 Unauthorized in 4ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 1597) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (4.7ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.2ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (151.9ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (103.6ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (108.8ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (82.3ms) DELETE FROM "meets"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (91.9ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (100.3ms) DELETE FROM "messagems"; +  (0.7ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (90.5ms) DELETE FROM "users"; +  (0.8ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.8ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.2ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.2ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (4.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Milo Borer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VpuiXOfwCSHknJMgpM2UgunfR4Er1hm2iSIAiTgSgjteDOSLl8y22"], ["created_at", "2020-05-05 18:46:45.634261"], ["updated_at", "2020-05-05 18:46:45.634261"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nesciunt"], ["description", "Est doloremque et itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:45.641798"], ["updated_at", "2020-05-05 18:46:45.641798"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae ut maiores praesentium?"], ["description", "Provident nam quis deleniti."], ["date", "2020-05-06 18:46:45.644006"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.655149"], ["updated_at", "2020-05-05 18:46:45.655149"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos ad et harum?"], ["description", "Voluptatem quas odio et."], ["date", "2020-05-06 18:46:45.656946"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.658187"], ["updated_at", "2020-05-05 18:46:45.658187"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro ullam et fugiat?"], ["description", "Quia alias at et."], ["date", "2020-05-06 18:46:45.659753"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.660622"], ["updated_at", "2020-05-05 18:46:45.660622"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque sapiente praesentium odio?"], ["description", "Et aut quaerat ducimus."], ["date", "2020-05-06 18:46:45.661817"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.662504"], ["updated_at", "2020-05-05 18:46:45.662504"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero cumque natus alias?"], ["description", "Doloribus pariatur vitae distinctio."], ["date", "2020-05-06 18:46:45.663766"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.664519"], ["updated_at", "2020-05-05 18:46:45.664519"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis impedit aut beatae?"], ["description", "Debitis odit corporis sit."], ["date", "2020-05-06 18:46:45.665666"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.666330"], ["updated_at", "2020-05-05 18:46:45.666330"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis ducimus ipsa ut?"], ["description", "Ut cum sed facere."], ["date", "2020-05-06 18:46:45.667636"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.668342"], ["updated_at", "2020-05-05 18:46:45.668342"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa et et sapiente?"], ["description", "Repellat velit rem aperiam."], ["date", "2020-05-06 18:46:45.669687"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.670488"], ["updated_at", "2020-05-05 18:46:45.670488"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum nam voluptates eveniet?"], ["description", "Blanditiis quia ut repellendus."], ["date", "2020-05-06 18:46:45.671791"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.672587"], ["updated_at", "2020-05-05 18:46:45.672587"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam ex sint inventore?"], ["description", "Neque deserunt voluptatem adipisci."], ["date", "2020-05-06 18:46:45.676048"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.677193"], ["updated_at", "2020-05-05 18:46:45.677193"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus rem praesentium ut?"], ["description", "Non et ratione officiis."], ["date", "2020-05-06 18:46:45.678662"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.679415"], ["updated_at", "2020-05-05 18:46:45.679415"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque ea tenetur vel?"], ["description", "Debitis quae ipsum quia."], ["date", "2020-05-06 18:46:45.680610"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.681321"], ["updated_at", "2020-05-05 18:46:45.681321"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque aut adipisci expedita?"], ["description", "Voluptas quisquam accusamus officiis."], ["date", "2020-05-06 18:46:45.682669"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.683459"], ["updated_at", "2020-05-05 18:46:45.683459"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti quis minima unde?"], ["description", "Id aperiam possimus ipsum."], ["date", "2020-05-06 18:46:45.684793"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.685504"], ["updated_at", "2020-05-05 18:46:45.685504"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus numquam reiciendis molestias?"], ["description", "Quasi cumque nulla illum."], ["date", "2020-05-06 18:46:45.686623"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.687314"], ["updated_at", "2020-05-05 18:46:45.687314"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est et ut et?"], ["description", "Rerum rerum alias dignissimos."], ["date", "2020-05-06 18:46:45.688501"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.689186"], ["updated_at", "2020-05-05 18:46:45.689186"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni quia ea quasi?"], ["description", "Sed voluptas sint quasi."], ["date", "2020-05-06 18:46:45.690358"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.691165"], ["updated_at", "2020-05-05 18:46:45.691165"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis eaque voluptatibus odit?"], ["description", "Esse expedita possimus saepe."], ["date", "2020-05-06 18:46:45.693406"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.694521"], ["updated_at", "2020-05-05 18:46:45.694521"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem sit nesciunt optio?"], ["description", "Eveniet eos iste tenetur."], ["date", "2020-05-06 18:46:45.696364"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.697267"], ["updated_at", "2020-05-05 18:46:45.697267"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad magnam voluptatem voluptatem?"], ["description", "Amet et ea consequuntur."], ["date", "2020-05-06 18:46:45.698519"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.699205"], ["updated_at", "2020-05-05 18:46:45.699205"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:46:45 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.5ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (7.57ms) +Completed 200 OK in 34ms (Views: 15.4ms | ActiveRecord: 0.8ms | Allocations: 8581) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Wes Veum"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TYeZLo4WC8VIuYT/5dqh9.kaAGvAvW2MJpRYdN3Umvzx56run1zpq"], ["created_at", "2020-05-05 18:46:45.772677"], ["updated_at", "2020-05-05 18:46:45.772677"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deleniti"], ["description", "Aut iusto quaerat exercitationem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:45.778184"], ["updated_at", "2020-05-05 18:46:45.778184"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident error quia excepturi?"], ["description", "Vero voluptas tempora esse."], ["date", "2020-05-06 18:46:45.779975"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.780952"], ["updated_at", "2020-05-05 18:46:45.780952"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt dolorum eum fugit?"], ["description", "Nostrum aut aut ea."], ["date", "2020-05-06 18:46:45.782288"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.783089"], ["updated_at", "2020-05-05 18:46:45.783089"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore et occaecati consequatur?"], ["description", "Eum laudantium reprehenderit harum."], ["date", "2020-05-06 18:46:45.784374"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.785209"], ["updated_at", "2020-05-05 18:46:45.785209"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit corporis ut deserunt?"], ["description", "Quo voluptatum aut qui."], ["date", "2020-05-06 18:46:45.786405"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.787076"], ["updated_at", "2020-05-05 18:46:45.787076"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores ducimus doloribus voluptas?"], ["description", "Repellendus praesentium aut non."], ["date", "2020-05-06 18:46:45.788129"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.788805"], ["updated_at", "2020-05-05 18:46:45.788805"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus ullam alias vero?"], ["description", "Aut perferendis ut vitae."], ["date", "2020-05-06 18:46:45.789964"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.790703"], ["updated_at", "2020-05-05 18:46:45.790703"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi veniam vel voluptas?"], ["description", "Aut velit rerum ea."], ["date", "2020-05-06 18:46:45.792595"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.793722"], ["updated_at", "2020-05-05 18:46:45.793722"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda voluptatibus possimus sunt?"], ["description", "Voluptas consequatur laborum asperiores."], ["date", "2020-05-06 18:46:45.796144"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.797852"], ["updated_at", "2020-05-05 18:46:45.797852"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minus aut ut consequatur?"], ["description", "Placeat dicta voluptas sed."], ["date", "2020-05-06 18:46:45.799355"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.800147"], ["updated_at", "2020-05-05 18:46:45.800147"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et nihil praesentium occaecati?"], ["description", "Blanditiis aut alias ducimus."], ["date", "2020-05-06 18:46:45.801989"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.802859"], ["updated_at", "2020-05-05 18:46:45.802859"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus et voluptas magni?"], ["description", "Nisi nesciunt et quam."], ["date", "2020-05-06 18:46:45.804282"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.805040"], ["updated_at", "2020-05-05 18:46:45.805040"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et excepturi occaecati porro?"], ["description", "Eum error impedit illo."], ["date", "2020-05-06 18:46:45.806272"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.806969"], ["updated_at", "2020-05-05 18:46:45.806969"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis necessitatibus quod reiciendis?"], ["description", "Nulla in ipsa omnis."], ["date", "2020-05-06 18:46:45.808642"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.809628"], ["updated_at", "2020-05-05 18:46:45.809628"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae accusantium occaecati laborum?"], ["description", "Assumenda sed quis vitae."], ["date", "2020-05-06 18:46:45.810994"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.811665"], ["updated_at", "2020-05-05 18:46:45.811665"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus dolor aut sit?"], ["description", "Cum a est dolor."], ["date", "2020-05-06 18:46:45.813064"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.813841"], ["updated_at", "2020-05-05 18:46:45.813841"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident aut autem ratione?"], ["description", "Quibusdam illum ipsam voluptatibus."], ["date", "2020-05-06 18:46:45.815673"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.817046"], ["updated_at", "2020-05-05 18:46:45.817046"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae aut quia eveniet?"], ["description", "Et perspiciatis aliquam blanditiis."], ["date", "2020-05-06 18:46:45.818591"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.819347"], ["updated_at", "2020-05-05 18:46:45.819347"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem eos esse possimus?"], ["description", "Optio architecto non rerum."], ["date", "2020-05-06 18:46:45.820555"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.821295"], ["updated_at", "2020-05-05 18:46:45.821295"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo sunt tempore voluptatum?"], ["description", "Non sapiente nostrum nobis."], ["date", "2020-05-06 18:46:45.822504"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.823267"], ["updated_at", "2020-05-05 18:46:45.823267"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis praesentium amet hic?"], ["description", "Repellendus dolorem vero cupiditate."], ["date", "2020-05-06 18:46:45.824757"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.826034"], ["updated_at", "2020-05-05 18:46:45.826034"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:46:45 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.4ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.3ms) +Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.5ms | Allocations: 5516) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (1.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Reid Schuppe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ez.DBQQqrvKkoi8ySswlPOFphvvVehHvr05L7dnKWmhxkNeoQKISu"], ["created_at", "2020-05-05 18:46:45.855012"], ["updated_at", "2020-05-05 18:46:45.855012"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "inventore"], ["description", "Veritatis velit ea cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:45.860001"], ["updated_at", "2020-05-05 18:46:45.860001"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum optio perspiciatis dolore?"], ["description", "Ut eum sed sunt."], ["date", "2020-05-06 18:46:45.862243"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.863304"], ["updated_at", "2020-05-05 18:46:45.863304"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et illo itaque enim?"], ["description", "Est hic esse perspiciatis."], ["date", "2020-05-06 18:46:45.864753"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.865512"], ["updated_at", "2020-05-05 18:46:45.865512"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit et quod unde?"], ["description", "Id aliquid quisquam minus."], ["date", "2020-05-06 18:46:45.866750"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.867605"], ["updated_at", "2020-05-05 18:46:45.867605"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat fuga corrupti cum?"], ["description", "Nemo reprehenderit beatae aut."], ["date", "2020-05-06 18:46:45.869076"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.869976"], ["updated_at", "2020-05-05 18:46:45.869976"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam repudiandae et aut?"], ["description", "Dolor dolorem iusto ex."], ["date", "2020-05-06 18:46:45.871350"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.872284"], ["updated_at", "2020-05-05 18:46:45.872284"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis molestiae non et?"], ["description", "Ut quo eligendi saepe."], ["date", "2020-05-06 18:46:45.873965"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.876233"], ["updated_at", "2020-05-05 18:46:45.876233"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius exercitationem quia accusantium?"], ["description", "Vitae accusantium aut distinctio."], ["date", "2020-05-06 18:46:45.878896"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.880442"], ["updated_at", "2020-05-05 18:46:45.880442"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto delectus ea ut?"], ["description", "Dolor aliquid fuga ea."], ["date", "2020-05-06 18:46:45.881912"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.882702"], ["updated_at", "2020-05-05 18:46:45.882702"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam dolorem et minus?"], ["description", "Quo voluptatem animi praesentium."], ["date", "2020-05-06 18:46:45.884056"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.884850"], ["updated_at", "2020-05-05 18:46:45.884850"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum ut fuga saepe?"], ["description", "Dolor autem aliquid consequatur."], ["date", "2020-05-06 18:46:45.886696"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.887466"], ["updated_at", "2020-05-05 18:46:45.887466"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum sunt tenetur nihil?"], ["description", "Molestiae quaerat ducimus nemo."], ["date", "2020-05-06 18:46:45.888724"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.889541"], ["updated_at", "2020-05-05 18:46:45.889541"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et non quos ea?"], ["description", "Et ipsam facilis molestiae."], ["date", "2020-05-06 18:46:45.890823"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.891648"], ["updated_at", "2020-05-05 18:46:45.891648"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore ex eum cupiditate?"], ["description", "Rerum id esse vitae."], ["date", "2020-05-06 18:46:45.893387"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.894343"], ["updated_at", "2020-05-05 18:46:45.894343"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium nihil explicabo laboriosam?"], ["description", "Quidem expedita a enim."], ["date", "2020-05-06 18:46:45.895962"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.897287"], ["updated_at", "2020-05-05 18:46:45.897287"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt ratione iusto ut?"], ["description", "Nesciunt non vitae dolor."], ["date", "2020-05-06 18:46:45.898813"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.899525"], ["updated_at", "2020-05-05 18:46:45.899525"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus placeat voluptate quo?"], ["description", "Enim nostrum autem delectus."], ["date", "2020-05-06 18:46:45.900653"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.901363"], ["updated_at", "2020-05-05 18:46:45.901363"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est commodi itaque dolore?"], ["description", "Qui eius hic et."], ["date", "2020-05-06 18:46:45.902513"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.903293"], ["updated_at", "2020-05-05 18:46:45.903293"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum nostrum reiciendis et?"], ["description", "Possimus est odio facilis."], ["date", "2020-05-06 18:46:45.904465"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.905167"], ["updated_at", "2020-05-05 18:46:45.905167"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque animi est minima?"], ["description", "Quia repudiandae cumque aperiam."], ["date", "2020-05-06 18:46:45.906196"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.906867"], ["updated_at", "2020-05-05 18:46:45.906867"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias eius corrupti earum?"], ["description", "Quasi consequuntur ratione ex."], ["date", "2020-05-06 18:46:45.907950"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.908993"], ["updated_at", "2020-05-05 18:46:45.908993"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:46:45 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 404 Not Found in 7ms (Views: 5.5ms | ActiveRecord: 0.2ms | Allocations: 865) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (27.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.0ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Irene Waters"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$bgVASCE9Tnlpx4EjiJ3srOnN5ZPo1ah79ZolmMmmD/HzvTEgbddCy"], ["created_at", "2020-05-05 18:46:45.951892"], ["updated_at", "2020-05-05 18:46:45.951892"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Omnis velit dolores atque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:45.956872"], ["updated_at", "2020-05-05 18:46:45.956872"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et voluptatum placeat et?"], ["description", "Impedit ut illum sunt."], ["date", "2020-05-06 18:46:45.959299"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.960510"], ["updated_at", "2020-05-05 18:46:45.960510"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque dolorum quas ducimus?"], ["description", "Libero aperiam commodi maiores."], ["date", "2020-05-06 18:46:45.963686"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.964995"], ["updated_at", "2020-05-05 18:46:45.964995"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur error perspiciatis architecto?"], ["description", "Repellat explicabo quos omnis."], ["date", "2020-05-06 18:46:45.966491"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.967629"], ["updated_at", "2020-05-05 18:46:45.967629"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime sint debitis dolores?"], ["description", "Recusandae non ducimus fugit."], ["date", "2020-05-06 18:46:45.969118"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.970442"], ["updated_at", "2020-05-05 18:46:45.970442"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit dolorem perferendis id?"], ["description", "Fugiat dicta quia iste."], ["date", "2020-05-06 18:46:45.972120"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.973121"], ["updated_at", "2020-05-05 18:46:45.973121"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste voluptas vitae nam?"], ["description", "Doloribus consectetur quis quaerat."], ["date", "2020-05-06 18:46:45.974748"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.976919"], ["updated_at", "2020-05-05 18:46:45.976919"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus quas eveniet non?"], ["description", "In quia iure earum."], ["date", "2020-05-06 18:46:45.979305"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.980259"], ["updated_at", "2020-05-05 18:46:45.980259"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut sed officiis labore?"], ["description", "Officia ut illo eum."], ["date", "2020-05-06 18:46:45.981863"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.982753"], ["updated_at", "2020-05-05 18:46:45.982753"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius distinctio deleniti nihil?"], ["description", "Minima quia aut non."], ["date", "2020-05-06 18:46:45.984146"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.985091"], ["updated_at", "2020-05-05 18:46:45.985091"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum minima laudantium sapiente?"], ["description", "Consequatur animi ratione accusantium."], ["date", "2020-05-06 18:46:45.987033"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.987869"], ["updated_at", "2020-05-05 18:46:45.987869"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam nisi sed labore?"], ["description", "Qui quas possimus qui."], ["date", "2020-05-06 18:46:45.989385"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.990260"], ["updated_at", "2020-05-05 18:46:45.990260"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit magnam nihil tempora?"], ["description", "Explicabo saepe est sunt."], ["date", "2020-05-06 18:46:45.991950"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.993532"], ["updated_at", "2020-05-05 18:46:45.993532"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima qui enim dolorem?"], ["description", "Ab sit impedit autem."], ["date", "2020-05-06 18:46:45.995401"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.996948"], ["updated_at", "2020-05-05 18:46:45.996948"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem eligendi dolore mollitia?"], ["description", "Quibusdam sed sunt ut."], ["date", "2020-05-06 18:46:45.998659"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:45.999627"], ["updated_at", "2020-05-05 18:46:45.999627"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae iusto occaecati non?"], ["description", "Iste ad eum ex."], ["date", "2020-05-06 18:46:46.000994"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.001818"], ["updated_at", "2020-05-05 18:46:46.001818"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt est aut quasi?"], ["description", "Et qui quis voluptatem."], ["date", "2020-05-06 18:46:46.003247"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.004117"], ["updated_at", "2020-05-05 18:46:46.004117"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis porro possimus non?"], ["description", "Quis aut sed fugiat."], ["date", "2020-05-06 18:46:46.005485"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.006258"], ["updated_at", "2020-05-05 18:46:46.006258"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugiat voluptas aspernatur sapiente?"], ["description", "Debitis eos minus consequuntur."], ["date", "2020-05-06 18:46:46.007719"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.008675"], ["updated_at", "2020-05-05 18:46:46.008675"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et et temporibus est?"], ["description", "Ut sed unde voluptatum."], ["date", "2020-05-06 18:46:46.010611"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.011794"], ["updated_at", "2020-05-05 18:46:46.011794"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid ea nulla quaerat?"], ["description", "Id quia cumque debitis."], ["date", "2020-05-06 18:46:46.013294"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.014084"], ["updated_at", "2020-05-05 18:46:46.014084"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:46:46 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms) +Completed 404 Not Found in 2ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 509) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rodger Labadie"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LjLNp/uH5ub2W4Pj/hJR/eg8lfpmbj7dqnxm87a2wNimKItz5wDSu"], ["created_at", "2020-05-05 18:46:46.034731"], ["updated_at", "2020-05-05 18:46:46.034731"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "in"], ["description", "Iste commodi dignissimos assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:46.040436"], ["updated_at", "2020-05-05 18:46:46.040436"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis officia fuga eveniet?"], ["description", "Tempore consequuntur quo deleniti."], ["date", "2020-05-06 18:46:46.043279"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.044502"], ["updated_at", "2020-05-05 18:46:46.044502"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et suscipit molestias iusto?"], ["description", "Voluptatem quisquam ut provident."], ["date", "2020-05-06 18:46:46.046050"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.046772"], ["updated_at", "2020-05-05 18:46:46.046772"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugiat culpa error aut?"], ["description", "Dolore explicabo excepturi eum."], ["date", "2020-05-06 18:46:46.047947"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.048642"], ["updated_at", "2020-05-05 18:46:46.048642"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo illo facilis cum?"], ["description", "Error velit sint est."], ["date", "2020-05-06 18:46:46.049811"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.050541"], ["updated_at", "2020-05-05 18:46:46.050541"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod ut molestiae animi?"], ["description", "Mollitia adipisci sunt aspernatur."], ["date", "2020-05-06 18:46:46.051678"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.052521"], ["updated_at", "2020-05-05 18:46:46.052521"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim et quod a?"], ["description", "Doloribus dicta architecto voluptatem."], ["date", "2020-05-06 18:46:46.053796"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.054502"], ["updated_at", "2020-05-05 18:46:46.054502"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Possimus beatae id nam?"], ["description", "Laboriosam nemo ratione quis."], ["date", "2020-05-06 18:46:46.055684"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.056622"], ["updated_at", "2020-05-05 18:46:46.056622"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem quis et consectetur?"], ["description", "Maxime et labore tempora."], ["date", "2020-05-06 18:46:46.059150"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.061180"], ["updated_at", "2020-05-05 18:46:46.061180"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit consequatur asperiores voluptatem?"], ["description", "Non exercitationem tempora sed."], ["date", "2020-05-06 18:46:46.062731"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.063632"], ["updated_at", "2020-05-05 18:46:46.063632"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et assumenda aspernatur nam?"], ["description", "Voluptate est recusandae aut."], ["date", "2020-05-06 18:46:46.065547"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.066346"], ["updated_at", "2020-05-05 18:46:46.066346"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi hic blanditiis quidem?"], ["description", "Ex similique in rem."], ["date", "2020-05-06 18:46:46.067752"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.068467"], ["updated_at", "2020-05-05 18:46:46.068467"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni architecto optio ratione?"], ["description", "Quis aut facere tenetur."], ["date", "2020-05-06 18:46:46.069582"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.070257"], ["updated_at", "2020-05-05 18:46:46.070257"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae voluptas numquam perferendis?"], ["description", "Et dolores facilis doloribus."], ["date", "2020-05-06 18:46:46.071488"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.072181"], ["updated_at", "2020-05-05 18:46:46.072181"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam quia eveniet commodi?"], ["description", "Non dolorum explicabo eius."], ["date", "2020-05-06 18:46:46.073495"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.074524"], ["updated_at", "2020-05-05 18:46:46.074524"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In aliquam magnam id?"], ["description", "Velit inventore repudiandae voluptate."], ["date", "2020-05-06 18:46:46.076700"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.078276"], ["updated_at", "2020-05-05 18:46:46.078276"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident blanditiis quaerat veniam?"], ["description", "Maxime hic aspernatur totam."], ["date", "2020-05-06 18:46:46.079819"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.080639"], ["updated_at", "2020-05-05 18:46:46.080639"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod aut illo et?"], ["description", "Consequatur quam magnam iste."], ["date", "2020-05-06 18:46:46.081939"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.082786"], ["updated_at", "2020-05-05 18:46:46.082786"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure optio voluptatem praesentium?"], ["description", "Atque quaerat fugit doloremque."], ["date", "2020-05-06 18:46:46.084259"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.085070"], ["updated_at", "2020-05-05 18:46:46.085070"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit aut quis rem?"], ["description", "Rerum impedit dolorem cum."], ["date", "2020-05-06 18:46:46.086272"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.086974"], ["updated_at", "2020-05-05 18:46:46.086974"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat enim est fuga?"], ["description", "Dolorum dolores consequatur repellendus."], ["date", "2020-05-06 18:46:46.088281"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.089022"], ["updated_at", "2020-05-05 18:46:46.089022"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:46:46 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.81ms) +Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.3ms | Allocations: 1086) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (22.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (24.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Len Lowe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$iCQ1mSt1FJKq6ISV6yEAnebvEV50V4grikT6KBexVA5TjlscjP.U."], ["created_at", "2020-05-05 18:46:46.122492"], ["updated_at", "2020-05-05 18:46:46.122492"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "commodi"], ["description", "Perferendis fuga recusandae rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:46.149155"], ["updated_at", "2020-05-05 18:46:46.149155"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid et minima quibusdam?"], ["description", "Dolorum aliquam fugiat saepe."], ["date", "2020-05-06 18:46:46.151061"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.152004"], ["updated_at", "2020-05-05 18:46:46.152004"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid praesentium blanditiis quo?"], ["description", "Quae dolorum vel aut."], ["date", "2020-05-06 18:46:46.153686"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.154530"], ["updated_at", "2020-05-05 18:46:46.154530"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio beatae ut corrupti?"], ["description", "Aut dicta repudiandae ducimus."], ["date", "2020-05-06 18:46:46.155878"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.156707"], ["updated_at", "2020-05-05 18:46:46.156707"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est dignissimos officia vel?"], ["description", "Velit est ad quidem."], ["date", "2020-05-06 18:46:46.158583"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.159568"], ["updated_at", "2020-05-05 18:46:46.159568"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et aut velit ex?"], ["description", "Beatae sed aspernatur similique."], ["date", "2020-05-06 18:46:46.161091"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.161897"], ["updated_at", "2020-05-05 18:46:46.161897"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut reiciendis placeat sunt?"], ["description", "Ea officiis aut quidem."], ["date", "2020-05-06 18:46:46.163283"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.166569"], ["updated_at", "2020-05-05 18:46:46.166569"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit sunt eum dolore?"], ["description", "Et architecto quod aut."], ["date", "2020-05-06 18:46:46.167855"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.168645"], ["updated_at", "2020-05-05 18:46:46.168645"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim animi aut architecto?"], ["description", "Praesentium et voluptas rerum."], ["date", "2020-05-06 18:46:46.170198"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.170952"], ["updated_at", "2020-05-05 18:46:46.170952"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus officia sunt doloremque?"], ["description", "Qui atque dolor reiciendis."], ["date", "2020-05-06 18:46:46.172145"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.172880"], ["updated_at", "2020-05-05 18:46:46.172880"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore voluptatibus perferendis sed?"], ["description", "Quisquam minus qui provident."], ["date", "2020-05-06 18:46:46.175416"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.176594"], ["updated_at", "2020-05-05 18:46:46.176594"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores et reprehenderit saepe?"], ["description", "Laudantium optio placeat ut."], ["date", "2020-05-06 18:46:46.178838"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.179829"], ["updated_at", "2020-05-05 18:46:46.179829"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est dolorem tenetur asperiores?"], ["description", "Quidem sint qui illo."], ["date", "2020-05-06 18:46:46.181500"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.182346"], ["updated_at", "2020-05-05 18:46:46.182346"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex sunt modi explicabo?"], ["description", "Libero et repellendus consequatur."], ["date", "2020-05-06 18:46:46.183656"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.184402"], ["updated_at", "2020-05-05 18:46:46.184402"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem vel quibusdam hic?"], ["description", "Deserunt commodi omnis deleniti."], ["date", "2020-05-06 18:46:46.185570"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.186265"], ["updated_at", "2020-05-05 18:46:46.186265"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo voluptatum ut libero?"], ["description", "Commodi voluptate sed nobis."], ["date", "2020-05-06 18:46:46.187441"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.188125"], ["updated_at", "2020-05-05 18:46:46.188125"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit aut repudiandae facilis?"], ["description", "Porro sed sequi cupiditate."], ["date", "2020-05-06 18:46:46.189320"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.190003"], ["updated_at", "2020-05-05 18:46:46.190003"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et ipsam aut voluptatem?"], ["description", "Cupiditate blanditiis rerum alias."], ["date", "2020-05-06 18:46:46.191498"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.193062"], ["updated_at", "2020-05-05 18:46:46.193062"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam error delectus in?"], ["description", "Hic tenetur sint perspiciatis."], ["date", "2020-05-06 18:46:46.195395"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.196342"], ["updated_at", "2020-05-05 18:46:46.196342"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam eveniet facere enim?"], ["description", "Consequatur ipsa est commodi."], ["date", "2020-05-06 18:46:46.198171"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.199233"], ["updated_at", "2020-05-05 18:46:46.199233"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut sunt magnam beatae?"], ["description", "Qui perspiciatis nobis eveniet."], ["date", "2020-05-06 18:46:46.200733"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.201644"], ["updated_at", "2020-05-05 18:46:46.201644"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:46:46 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.79ms) +Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.3ms | Allocations: 1058) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Emilio Howe Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ukCUbw8b6UHcdEElNzBQfuTYheH0e2PYMMGDHiBCxxw3WbJiyojGu"], ["created_at", "2020-05-05 18:46:46.219433"], ["updated_at", "2020-05-05 18:46:46.219433"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Non fugiat rerum nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:46.223104"], ["updated_at", "2020-05-05 18:46:46.223104"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam quam id quos?"], ["description", "Vero porro et voluptas."], ["date", "2020-05-06 18:46:46.225439"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.226478"], ["updated_at", "2020-05-05 18:46:46.226478"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas nam qui dignissimos?"], ["description", "Fugiat eaque debitis qui."], ["date", "2020-05-06 18:46:46.227821"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.228531"], ["updated_at", "2020-05-05 18:46:46.228531"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum ut necessitatibus corporis?"], ["description", "Tenetur dolorem suscipit iusto."], ["date", "2020-05-06 18:46:46.229796"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.230479"], ["updated_at", "2020-05-05 18:46:46.230479"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo voluptatem error numquam?"], ["description", "Doloribus recusandae alias quis."], ["date", "2020-05-06 18:46:46.231733"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.232440"], ["updated_at", "2020-05-05 18:46:46.232440"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut in ipsam neque?"], ["description", "Consequatur possimus provident vero."], ["date", "2020-05-06 18:46:46.233680"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.234392"], ["updated_at", "2020-05-05 18:46:46.234392"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores velit sint earum?"], ["description", "Et eum sit provident."], ["date", "2020-05-06 18:46:46.235503"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.236244"], ["updated_at", "2020-05-05 18:46:46.236244"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex quam molestiae totam?"], ["description", "Delectus doloremque praesentium est."], ["date", "2020-05-06 18:46:46.237837"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.239329"], ["updated_at", "2020-05-05 18:46:46.239329"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem omnis rem recusandae?"], ["description", "Eaque veniam et in."], ["date", "2020-05-06 18:46:46.241802"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.243587"], ["updated_at", "2020-05-05 18:46:46.243587"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui tenetur reiciendis repudiandae?"], ["description", "Tenetur ex quae omnis."], ["date", "2020-05-06 18:46:46.245044"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.245784"], ["updated_at", "2020-05-05 18:46:46.245784"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor veniam voluptatem itaque?"], ["description", "Sit et dolor minima."], ["date", "2020-05-06 18:46:46.247983"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.248763"], ["updated_at", "2020-05-05 18:46:46.248763"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro fugiat est eos?"], ["description", "Veritatis rerum quidem placeat."], ["date", "2020-05-06 18:46:46.249926"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.250645"], ["updated_at", "2020-05-05 18:46:46.250645"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero non dolores saepe?"], ["description", "Iure incidunt esse animi."], ["date", "2020-05-06 18:46:46.251864"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.252618"], ["updated_at", "2020-05-05 18:46:46.252618"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis ipsa dolorem nesciunt?"], ["description", "Sint ut culpa optio."], ["date", "2020-05-06 18:46:46.253949"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.254658"], ["updated_at", "2020-05-05 18:46:46.254658"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos ducimus voluptatem id?"], ["description", "Dolore sunt explicabo sed."], ["date", "2020-05-06 18:46:46.256033"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.256976"], ["updated_at", "2020-05-05 18:46:46.256976"]] +  (0.4ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor aut ea atque?"], ["description", "Qui sed nulla debitis."], ["date", "2020-05-06 18:46:46.259968"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.260965"], ["updated_at", "2020-05-05 18:46:46.260965"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est deserunt beatae magni?"], ["description", "Et dicta ut eos."], ["date", "2020-05-06 18:46:46.262298"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.263008"], ["updated_at", "2020-05-05 18:46:46.263008"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam iste beatae molestias?"], ["description", "Pariatur maxime perferendis architecto."], ["date", "2020-05-06 18:46:46.264542"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.265342"], ["updated_at", "2020-05-05 18:46:46.265342"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et porro dolor in?"], ["description", "Non dolorum velit non."], ["date", "2020-05-06 18:46:46.266497"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.267177"], ["updated_at", "2020-05-05 18:46:46.267177"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore voluptatum nihil sit?"], ["description", "Consequatur quam ex sint."], ["date", "2020-05-06 18:46:46.268352"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.269257"], ["updated_at", "2020-05-05 18:46:46.269257"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore quasi ipsam cum?"], ["description", "Repudiandae atque fugit ea."], ["date", "2020-05-06 18:46:46.270585"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.271320"], ["updated_at", "2020-05-05 18:46:46.271320"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:46:46 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 3ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 884) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (16.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Madie Gislason II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$F5XvLeHn4qCbbl5KmCqV4e/hA.VDXvCsJrSsda9FnEDnIECHuwfjO"], ["created_at", "2020-05-05 18:46:46.297948"], ["updated_at", "2020-05-05 18:46:46.297948"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officiis"], ["description", "Fuga quo nam eveniet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:46.302565"], ["updated_at", "2020-05-05 18:46:46.302565"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error deleniti et placeat?"], ["description", "Repellendus veniam est voluptatem."], ["date", "2020-05-06 18:46:46.304396"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.305463"], ["updated_at", "2020-05-05 18:46:46.305463"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil a debitis consequatur?"], ["description", "Sint voluptates quos dolores."], ["date", "2020-05-06 18:46:46.307016"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.308493"], ["updated_at", "2020-05-05 18:46:46.308493"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur itaque minima alias?"], ["description", "Distinctio explicabo qui suscipit."], ["date", "2020-05-06 18:46:46.330571"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.331791"], ["updated_at", "2020-05-05 18:46:46.331791"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam hic ut eveniet?"], ["description", "Quia expedita tenetur rerum."], ["date", "2020-05-06 18:46:46.333535"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.334591"], ["updated_at", "2020-05-05 18:46:46.334591"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit aut ut dolorem?"], ["description", "Laboriosam aspernatur exercitationem aut."], ["date", "2020-05-06 18:46:46.336079"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.337046"], ["updated_at", "2020-05-05 18:46:46.337046"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse et et ut?"], ["description", "Magni ut eos dolore."], ["date", "2020-05-06 18:46:46.338616"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.339863"], ["updated_at", "2020-05-05 18:46:46.339863"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas ratione ea reprehenderit?"], ["description", "Earum eveniet esse sed."], ["date", "2020-05-06 18:46:46.341801"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.343038"], ["updated_at", "2020-05-05 18:46:46.343038"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat sit qui voluptatum?"], ["description", "Quo aut beatae inventore."], ["date", "2020-05-06 18:46:46.344449"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.345379"], ["updated_at", "2020-05-05 18:46:46.345379"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto illo omnis sed?"], ["description", "Sunt dolores et animi."], ["date", "2020-05-06 18:46:46.346795"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.347613"], ["updated_at", "2020-05-05 18:46:46.347613"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil aut sit praesentium?"], ["description", "Consequatur quis non sunt."], ["date", "2020-05-06 18:46:46.349545"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.350327"], ["updated_at", "2020-05-05 18:46:46.350327"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae officiis placeat molestias?"], ["description", "Qui modi non sed."], ["date", "2020-05-06 18:46:46.351559"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.352277"], ["updated_at", "2020-05-05 18:46:46.352277"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis omnis nihil minus?"], ["description", "Beatae assumenda dolorem delectus."], ["date", "2020-05-06 18:46:46.353626"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.354356"], ["updated_at", "2020-05-05 18:46:46.354356"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cum in officiis aut?"], ["description", "Eveniet aut quasi incidunt."], ["date", "2020-05-06 18:46:46.355565"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.356259"], ["updated_at", "2020-05-05 18:46:46.356259"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut provident illo iste?"], ["description", "Deleniti quia possimus corporis."], ["date", "2020-05-06 18:46:46.357597"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.359191"], ["updated_at", "2020-05-05 18:46:46.359191"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In consectetur cum sit?"], ["description", "Blanditiis vel dicta qui."], ["date", "2020-05-06 18:46:46.360964"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.361826"], ["updated_at", "2020-05-05 18:46:46.361826"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora quidem unde sapiente?"], ["description", "Placeat iure quidem eum."], ["date", "2020-05-06 18:46:46.362992"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.363755"], ["updated_at", "2020-05-05 18:46:46.363755"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Delectus aut dolorem labore?"], ["description", "Voluptas doloribus ex officiis."], ["date", "2020-05-06 18:46:46.364945"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.365643"], ["updated_at", "2020-05-05 18:46:46.365643"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur omnis nisi rerum?"], ["description", "Modi nihil iusto eaque."], ["date", "2020-05-06 18:46:46.366791"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.367518"], ["updated_at", "2020-05-05 18:46:46.367518"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab atque quasi labore?"], ["description", "Excepturi asperiores nostrum nihil."], ["date", "2020-05-06 18:46:46.368719"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.369423"], ["updated_at", "2020-05-05 18:46:46.369423"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et et qui ut?"], ["description", "Illum velit impedit alias."], ["date", "2020-05-06 18:46:46.370594"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.371270"], ["updated_at", "2020-05-05 18:46:46.371270"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:46:46 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 867) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Sulema Auer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hU4uQ2AaDq6I5O7GNjIqFee29.ps1KZ4CGRv4pE75ZUuQ/opYkeuO"], ["created_at", "2020-05-05 18:46:46.387051"], ["updated_at", "2020-05-05 18:46:46.387051"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facere"], ["description", "Voluptas praesentium aperiam necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:46.390552"], ["updated_at", "2020-05-05 18:46:46.390552"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos sunt magnam et?"], ["description", "Omnis id rerum nesciunt."], ["date", "2020-05-06 18:46:46.393487"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.394647"], ["updated_at", "2020-05-05 18:46:46.394647"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil quas incidunt maxime?"], ["description", "Et perspiciatis tempora esse."], ["date", "2020-05-06 18:46:46.396122"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.396840"], ["updated_at", "2020-05-05 18:46:46.396840"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil adipisci non id?"], ["description", "Hic dignissimos aliquam alias."], ["date", "2020-05-06 18:46:46.398078"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.399452"], ["updated_at", "2020-05-05 18:46:46.399452"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut quia et sit?"], ["description", "Odio velit aliquam molestiae."], ["date", "2020-05-06 18:46:46.401260"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.402775"], ["updated_at", "2020-05-05 18:46:46.402775"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint quis aliquid labore?"], ["description", "Qui doloremque molestiae veritatis."], ["date", "2020-05-06 18:46:46.404171"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.404967"], ["updated_at", "2020-05-05 18:46:46.404967"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus recusandae et perspiciatis?"], ["description", "Tempore temporibus totam vel."], ["date", "2020-05-06 18:46:46.405996"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.406672"], ["updated_at", "2020-05-05 18:46:46.406672"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae ad quia quos?"], ["description", "Porro est ipsam consequatur."], ["date", "2020-05-06 18:46:46.408049"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.409237"], ["updated_at", "2020-05-05 18:46:46.409237"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est nobis sint odit?"], ["description", "Iusto ducimus earum enim."], ["date", "2020-05-06 18:46:46.410545"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.411249"], ["updated_at", "2020-05-05 18:46:46.411249"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae aperiam recusandae soluta?"], ["description", "Autem unde dolorum et."], ["date", "2020-05-06 18:46:46.412480"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.413204"], ["updated_at", "2020-05-05 18:46:46.413204"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem deleniti ullam sed?"], ["description", "Accusamus dolores aut et."], ["date", "2020-05-06 18:46:46.415048"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.415800"], ["updated_at", "2020-05-05 18:46:46.415800"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore eligendi cumque qui?"], ["description", "Esse dolorem libero illum."], ["date", "2020-05-06 18:46:46.417046"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.417754"], ["updated_at", "2020-05-05 18:46:46.417754"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis quisquam voluptas sed?"], ["description", "Sunt illum maxime assumenda."], ["date", "2020-05-06 18:46:46.419751"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.420779"], ["updated_at", "2020-05-05 18:46:46.420779"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique et minima fugit?"], ["description", "Fuga tenetur quia voluptatibus."], ["date", "2020-05-06 18:46:46.422086"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.422782"], ["updated_at", "2020-05-05 18:46:46.422782"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos id et aspernatur?"], ["description", "Saepe quod tenetur asperiores."], ["date", "2020-05-06 18:46:46.424087"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.425284"], ["updated_at", "2020-05-05 18:46:46.425284"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis voluptatum ut voluptatem?"], ["description", "Accusamus vero sunt eaque."], ["date", "2020-05-06 18:46:46.426812"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.427622"], ["updated_at", "2020-05-05 18:46:46.427622"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam in voluptas commodi?"], ["description", "Et molestiae ea quo."], ["date", "2020-05-06 18:46:46.428836"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.429510"], ["updated_at", "2020-05-05 18:46:46.429510"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia quia esse possimus?"], ["description", "Maiores omnis eveniet officiis."], ["date", "2020-05-06 18:46:46.430694"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.431341"], ["updated_at", "2020-05-05 18:46:46.431341"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur nemo atque ipsa?"], ["description", "Sed architecto deleniti mollitia."], ["date", "2020-05-06 18:46:46.432678"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.433536"], ["updated_at", "2020-05-05 18:46:46.433536"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam voluptatem enim nihil?"], ["description", "Harum dolore laudantium et."], ["date", "2020-05-06 18:46:46.434946"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.435664"], ["updated_at", "2020-05-05 18:46:46.435664"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A voluptatem est rem?"], ["description", "Rem officia rerum eveniet."], ["date", "2020-05-06 18:46:46.436873"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.437595"], ["updated_at", "2020-05-05 18:46:46.437595"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:46:46 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"title"=>"Visit Narnia", "description"=>"false", "date"=>"2020-05-06 15:46:46 -0300", "link"=>"https://zoom.com/fakelink", "meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Visit Narnia"], ["description", "false"], ["date", "2020-05-06 18:46:46"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.458521"], ["updated_at", "2020-05-05 18:46:46.458521"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.59ms) +Completed 201 Created in 7ms (Views: 1.3ms | ActiveRecord: 0.7ms | Allocations: 1693) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Merrie Schmeler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$khsjMXsWT.zcBCo1G451Y.SrHIq5duRIYR730qLY0HWeABvOkNDx6"], ["created_at", "2020-05-05 18:46:46.472923"], ["updated_at", "2020-05-05 18:46:46.472923"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Autem mollitia ea beatae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:46.477366"], ["updated_at", "2020-05-05 18:46:46.477366"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque ut iste cum?"], ["description", "Et et id consectetur."], ["date", "2020-05-06 18:46:46.479242"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.480709"], ["updated_at", "2020-05-05 18:46:46.480709"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia et non rerum?"], ["description", "Autem hic harum quia."], ["date", "2020-05-06 18:46:46.482295"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.483186"], ["updated_at", "2020-05-05 18:46:46.483186"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis sed sequi ab?"], ["description", "Exercitationem incidunt impedit magni."], ["date", "2020-05-06 18:46:46.484871"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.486378"], ["updated_at", "2020-05-05 18:46:46.486378"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam voluptatum quibusdam aspernatur?"], ["description", "Facilis deserunt cumque a."], ["date", "2020-05-06 18:46:46.487760"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.488520"], ["updated_at", "2020-05-05 18:46:46.488520"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero debitis provident quaerat?"], ["description", "Ut rerum veniam doloremque."], ["date", "2020-05-06 18:46:46.489707"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.490405"], ["updated_at", "2020-05-05 18:46:46.490405"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi dicta qui tempora?"], ["description", "Voluptatem sunt enim libero."], ["date", "2020-05-06 18:46:46.491868"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.493173"], ["updated_at", "2020-05-05 18:46:46.493173"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam porro quis cumque?"], ["description", "Quae nulla dolor placeat."], ["date", "2020-05-06 18:46:46.494553"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.495291"], ["updated_at", "2020-05-05 18:46:46.495291"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam sapiente laborum dolores?"], ["description", "Ut nam occaecati nihil."], ["date", "2020-05-06 18:46:46.496423"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.497089"], ["updated_at", "2020-05-05 18:46:46.497089"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non exercitationem accusamus in?"], ["description", "Dignissimos necessitatibus et ratione."], ["date", "2020-05-06 18:46:46.498350"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.499300"], ["updated_at", "2020-05-05 18:46:46.499300"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore eius explicabo quod?"], ["description", "Nulla omnis quisquam officiis."], ["date", "2020-05-06 18:46:46.501854"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.502829"], ["updated_at", "2020-05-05 18:46:46.502829"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto deserunt aliquam quaerat?"], ["description", "Ut quia dolores error."], ["date", "2020-05-06 18:46:46.504228"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.504962"], ["updated_at", "2020-05-05 18:46:46.504962"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum et aliquid quam?"], ["description", "Optio aut nobis eos."], ["date", "2020-05-06 18:46:46.506127"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.506795"], ["updated_at", "2020-05-05 18:46:46.506795"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores id sed velit?"], ["description", "Sed doloremque tempora sit."], ["date", "2020-05-06 18:46:46.508010"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.509007"], ["updated_at", "2020-05-05 18:46:46.509007"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt ad odio esse?"], ["description", "Harum soluta nemo voluptas."], ["date", "2020-05-06 18:46:46.510723"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.511590"], ["updated_at", "2020-05-05 18:46:46.511590"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Delectus at adipisci nulla?"], ["description", "Et sint maiores id."], ["date", "2020-05-06 18:46:46.512864"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.513621"], ["updated_at", "2020-05-05 18:46:46.513621"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia commodi repudiandae consequatur?"], ["description", "Voluptates tempore vel labore."], ["date", "2020-05-06 18:46:46.514936"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.515751"], ["updated_at", "2020-05-05 18:46:46.515751"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut ut minus voluptatem?"], ["description", "Ex blanditiis numquam doloremque."], ["date", "2020-05-06 18:46:46.517143"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.517944"], ["updated_at", "2020-05-05 18:46:46.517944"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos error voluptas doloremque?"], ["description", "Qui impedit et vel."], ["date", "2020-05-06 18:46:46.519615"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.520887"], ["updated_at", "2020-05-05 18:46:46.520887"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil et cumque veniam?"], ["description", "Dolor aliquid doloribus quas."], ["date", "2020-05-06 18:46:46.522463"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.523286"], ["updated_at", "2020-05-05 18:46:46.523286"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem saepe impedit voluptates?"], ["description", "Tenetur ut natus voluptas."], ["date", "2020-05-06 18:46:46.524868"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.526061"], ["updated_at", "2020-05-05 18:46:46.526061"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:46:46 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 422 Unprocessable Entity in 4ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 2727) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shad Hoeger III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jVpj5fKe8rDSMyp08imSp.gC1wB1EkSfDhLGutPED7S6WcwAcb0r."], ["created_at", "2020-05-05 18:46:46.544852"], ["updated_at", "2020-05-05 18:46:46.544852"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "debitis"], ["description", "Repellendus sunt magnam dolore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:46.548690"], ["updated_at", "2020-05-05 18:46:46.548690"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis expedita nesciunt sapiente?"], ["description", "Similique corporis quod eos."], ["date", "2020-05-06 18:46:46.550339"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.551287"], ["updated_at", "2020-05-05 18:46:46.551287"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem quod sit consequatur?"], ["description", "Dolor sed non mollitia."], ["date", "2020-05-06 18:46:46.552563"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.553332"], ["updated_at", "2020-05-05 18:46:46.553332"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique laborum suscipit inventore?"], ["description", "Et praesentium quidem alias."], ["date", "2020-05-06 18:46:46.554618"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.555387"], ["updated_at", "2020-05-05 18:46:46.555387"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet vel minima eos?"], ["description", "Porro autem praesentium quia."], ["date", "2020-05-06 18:46:46.556505"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.557188"], ["updated_at", "2020-05-05 18:46:46.557188"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloribus eveniet ut id?"], ["description", "Est qui sapiente a."], ["date", "2020-05-06 18:46:46.558410"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.559462"], ["updated_at", "2020-05-05 18:46:46.559462"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi qui eveniet amet?"], ["description", "Ut expedita voluptas dolorem."], ["date", "2020-05-06 18:46:46.561478"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.562920"], ["updated_at", "2020-05-05 18:46:46.562920"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat tenetur error voluptatem?"], ["description", "Ea velit nam quo."], ["date", "2020-05-06 18:46:46.564583"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.565451"], ["updated_at", "2020-05-05 18:46:46.565451"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum ut aut id?"], ["description", "Quasi reiciendis non ut."], ["date", "2020-05-06 18:46:46.566590"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.567290"], ["updated_at", "2020-05-05 18:46:46.567290"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque tenetur eum aperiam?"], ["description", "Beatae velit qui ut."], ["date", "2020-05-06 18:46:46.568392"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.569073"], ["updated_at", "2020-05-05 18:46:46.569073"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur occaecati dolores dolorem?"], ["description", "Neque beatae vel dolores."], ["date", "2020-05-06 18:46:46.570877"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.571621"], ["updated_at", "2020-05-05 18:46:46.571621"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse tempora qui vel?"], ["description", "Aperiam reprehenderit eos omnis."], ["date", "2020-05-06 18:46:46.572939"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.573957"], ["updated_at", "2020-05-05 18:46:46.573957"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Culpa rem maiores error?"], ["description", "Nihil facere sit blanditiis."], ["date", "2020-05-06 18:46:46.575713"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.576563"], ["updated_at", "2020-05-05 18:46:46.576563"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure accusantium odit illum?"], ["description", "Sed possimus unde voluptate."], ["date", "2020-05-06 18:46:46.577838"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.578532"], ["updated_at", "2020-05-05 18:46:46.578532"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo consequatur ut distinctio?"], ["description", "Facere ut sed et."], ["date", "2020-05-06 18:46:46.580259"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.581475"], ["updated_at", "2020-05-05 18:46:46.581475"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi vel dolore quia?"], ["description", "Culpa fuga praesentium nisi."], ["date", "2020-05-06 18:46:46.582919"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.583723"], ["updated_at", "2020-05-05 18:46:46.583723"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta debitis non totam?"], ["description", "Ut dignissimos possimus unde."], ["date", "2020-05-06 18:46:46.584955"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.585630"], ["updated_at", "2020-05-05 18:46:46.585630"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque ex aliquam dignissimos?"], ["description", "Laboriosam quos voluptatem iusto."], ["date", "2020-05-06 18:46:46.586823"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.587513"], ["updated_at", "2020-05-05 18:46:46.587513"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut voluptatem voluptates a?"], ["description", "Qui dolores animi doloremque."], ["date", "2020-05-06 18:46:46.588682"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.589349"], ["updated_at", "2020-05-05 18:46:46.589349"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto repellendus ipsum quia?"], ["description", "Ut aut aperiam explicabo."], ["date", "2020-05-06 18:46:46.590475"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.591261"], ["updated_at", "2020-05-05 18:46:46.591261"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta porro vel cupiditate?"], ["description", "Sed maxime adipisci aut."], ["date", "2020-05-06 18:46:46.593561"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.594537"], ["updated_at", "2020-05-05 18:46:46.594537"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:46:46 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 2705) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kendall Barton I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FzYE5rvzD1sFqcJR21.1iOsbeYwhAiXIQyFZa7NV/kfkO./2QiaHe"], ["created_at", "2020-05-05 18:46:46.613428"], ["updated_at", "2020-05-05 18:46:46.613428"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "harum"], ["description", "Sit rerum vel doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:46.616305"], ["updated_at", "2020-05-05 18:46:46.616305"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo dolorum deserunt eos?"], ["description", "Quod voluptas aut eos."], ["date", "2020-05-06 18:46:46.617698"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.618623"], ["updated_at", "2020-05-05 18:46:46.618623"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum iste voluptate dolor?"], ["description", "Nihil quo id laboriosam."], ["date", "2020-05-06 18:46:46.620387"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.621736"], ["updated_at", "2020-05-05 18:46:46.621736"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam aut non repellat?"], ["description", "Blanditiis fuga velit itaque."], ["date", "2020-05-06 18:46:46.623387"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.625152"], ["updated_at", "2020-05-05 18:46:46.625152"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id ut quidem aut?"], ["description", "Ab voluptatibus ea ducimus."], ["date", "2020-05-06 18:46:46.626667"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.627504"], ["updated_at", "2020-05-05 18:46:46.627504"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et deleniti rerum sint?"], ["description", "Molestiae quas atque earum."], ["date", "2020-05-06 18:46:46.628550"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.629219"], ["updated_at", "2020-05-05 18:46:46.629219"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed cumque voluptas corporis?"], ["description", "Et mollitia at eligendi."], ["date", "2020-05-06 18:46:46.630414"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.631092"], ["updated_at", "2020-05-05 18:46:46.631092"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis velit quos aut?"], ["description", "Illo libero et sed."], ["date", "2020-05-06 18:46:46.632280"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.632959"], ["updated_at", "2020-05-05 18:46:46.632959"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut fuga voluptatem aut?"], ["description", "Ea assumenda eligendi voluptate."], ["date", "2020-05-06 18:46:46.634140"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.634866"], ["updated_at", "2020-05-05 18:46:46.634866"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus aspernatur quia est?"], ["description", "Est velit nulla voluptatem."], ["date", "2020-05-06 18:46:46.636010"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.636695"], ["updated_at", "2020-05-05 18:46:46.636695"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis odio natus dolorem?"], ["description", "Cum natus delectus et."], ["date", "2020-05-06 18:46:46.638540"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.639324"], ["updated_at", "2020-05-05 18:46:46.639324"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio tempore culpa magnam?"], ["description", "Et dicta beatae necessitatibus."], ["date", "2020-05-06 18:46:46.641828"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.644050"], ["updated_at", "2020-05-05 18:46:46.644050"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis debitis maiores praesentium?"], ["description", "Quis numquam saepe et."], ["date", "2020-05-06 18:46:46.646035"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.646962"], ["updated_at", "2020-05-05 18:46:46.646962"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui doloremque rem quibusdam?"], ["description", "Neque pariatur reiciendis sint."], ["date", "2020-05-06 18:46:46.648282"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.649098"], ["updated_at", "2020-05-05 18:46:46.649098"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem ut sit mollitia?"], ["description", "Nemo cumque voluptas assumenda."], ["date", "2020-05-06 18:46:46.650448"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.651168"], ["updated_at", "2020-05-05 18:46:46.651168"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et aut voluptates earum?"], ["description", "Et ut nesciunt aspernatur."], ["date", "2020-05-06 18:46:46.652400"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.653125"], ["updated_at", "2020-05-05 18:46:46.653125"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Hic commodi deserunt numquam?"], ["description", "Consequatur aut voluptas temporibus."], ["date", "2020-05-06 18:46:46.654361"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.655023"], ["updated_at", "2020-05-05 18:46:46.655023"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea quas sit ratione?"], ["description", "Deleniti non corrupti id."], ["date", "2020-05-06 18:46:46.656118"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.656782"], ["updated_at", "2020-05-05 18:46:46.656782"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo possimus non officiis?"], ["description", "Minus optio eius dolores."], ["date", "2020-05-06 18:46:46.657905"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.658549"], ["updated_at", "2020-05-05 18:46:46.658549"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil eligendi molestias rem?"], ["description", "Omnis aut rerum inventore."], ["date", "2020-05-06 18:46:46.660851"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.662391"], ["updated_at", "2020-05-05 18:46:46.662391"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas accusamus enim quis?"], ["description", "Molestias praesentium distinctio accusamus."], ["date", "2020-05-06 18:46:46.663873"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.664620"], ["updated_at", "2020-05-05 18:46:46.664620"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:46:46 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.0ms) SAVEPOINT active_record_2 + Meeting Update (0.1ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:46:46.668795"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1396) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Krystle Tromp"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0356EchWMZstLVezWGeeOOl53gOZm0eGOsTdfu7rjsORAt1kvXDYa"], ["created_at", "2020-05-05 18:46:46.681591"], ["updated_at", "2020-05-05 18:46:46.681591"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Velit dolor voluptates reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:46.684841"], ["updated_at", "2020-05-05 18:46:46.684841"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur aut neque rem?"], ["description", "Sed earum a soluta."], ["date", "2020-05-06 18:46:46.686303"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.687281"], ["updated_at", "2020-05-05 18:46:46.687281"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque et voluptatem occaecati?"], ["description", "Eum fugiat corporis dolorem."], ["date", "2020-05-06 18:46:46.688601"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.689305"], ["updated_at", "2020-05-05 18:46:46.689305"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium velit perspiciatis impedit?"], ["description", "Optio corrupti minima sit."], ["date", "2020-05-06 18:46:46.690488"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.691229"], ["updated_at", "2020-05-05 18:46:46.691229"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam rem nam eaque?"], ["description", "Animi accusamus ea illo."], ["date", "2020-05-06 18:46:46.693125"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.694043"], ["updated_at", "2020-05-05 18:46:46.694043"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim iusto id saepe?"], ["description", "Voluptatibus hic dolorem quod."], ["date", "2020-05-06 18:46:46.695279"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.695963"], ["updated_at", "2020-05-05 18:46:46.695963"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati voluptate doloribus dignissimos?"], ["description", "Quisquam inventore eaque ut."], ["date", "2020-05-06 18:46:46.697115"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.697846"], ["updated_at", "2020-05-05 18:46:46.697846"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis error dolor vitae?"], ["description", "Porro animi nam asperiores."], ["date", "2020-05-06 18:46:46.699055"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.699837"], ["updated_at", "2020-05-05 18:46:46.699837"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel expedita accusantium et?"], ["description", "Expedita modi voluptatum voluptas."], ["date", "2020-05-06 18:46:46.701870"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.703038"], ["updated_at", "2020-05-05 18:46:46.703038"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi et voluptas quia?"], ["description", "Consequatur in eveniet maxime."], ["date", "2020-05-06 18:46:46.704955"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.705878"], ["updated_at", "2020-05-05 18:46:46.705878"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus laborum aspernatur non?"], ["description", "Vitae soluta et incidunt."], ["date", "2020-05-06 18:46:46.707745"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.708913"], ["updated_at", "2020-05-05 18:46:46.708913"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem est sed qui?"], ["description", "Temporibus magnam officia in."], ["date", "2020-05-06 18:46:46.710710"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.711579"], ["updated_at", "2020-05-05 18:46:46.711579"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad aut error in?"], ["description", "Facilis consequatur quidem aut."], ["date", "2020-05-06 18:46:46.712818"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.713525"], ["updated_at", "2020-05-05 18:46:46.713525"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem id et fuga?"], ["description", "Voluptates explicabo aspernatur consectetur."], ["date", "2020-05-06 18:46:46.714705"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.715375"], ["updated_at", "2020-05-05 18:46:46.715375"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum sed accusamus eos?"], ["description", "Aspernatur libero minima quasi."], ["date", "2020-05-06 18:46:46.716532"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.717204"], ["updated_at", "2020-05-05 18:46:46.717204"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores numquam sapiente praesentium?"], ["description", "Quis ducimus facere officiis."], ["date", "2020-05-06 18:46:46.718511"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.719343"], ["updated_at", "2020-05-05 18:46:46.719343"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut expedita ex quo?"], ["description", "Totam placeat facilis error."], ["date", "2020-05-06 18:46:46.721104"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.722312"], ["updated_at", "2020-05-05 18:46:46.722312"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reiciendis sunt dolores quod?"], ["description", "Aliquid ex aut laudantium."], ["date", "2020-05-06 18:46:46.724302"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.725334"], ["updated_at", "2020-05-05 18:46:46.725334"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto qui iusto aliquid?"], ["description", "Consectetur nisi et quisquam."], ["date", "2020-05-06 18:46:46.726673"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.727354"], ["updated_at", "2020-05-05 18:46:46.727354"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas illum quia modi?"], ["description", "Qui aut qui dolor."], ["date", "2020-05-06 18:46:46.728446"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.729106"], ["updated_at", "2020-05-05 18:46:46.729106"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut ad est dicta?"], ["description", "Et nesciunt ut dolore."], ["date", "2020-05-06 18:46:46.730199"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.730909"], ["updated_at", "2020-05-05 18:46:46.730909"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:46:46 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.0ms) SAVEPOINT active_record_2 + Meeting Update (0.2ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:46:46.735082"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1319) + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kyra Lesch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1mzdFQqPzi9gGZA4SAogJeMYw.990pxAIZODYHcNn7Wi5/1FeV8WW"], ["created_at", "2020-05-05 18:46:46.749095"], ["updated_at", "2020-05-05 18:46:46.749095"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Corporis in ut magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:46.752358"], ["updated_at", "2020-05-05 18:46:46.752358"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure a dolor consequatur?"], ["description", "Voluptas eum consequuntur accusamus."], ["date", "2020-05-06 18:46:46.754036"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.754988"], ["updated_at", "2020-05-05 18:46:46.754988"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deleniti est ut nam?"], ["description", "Dolorem fuga similique ab."], ["date", "2020-05-06 18:46:46.756220"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.756941"], ["updated_at", "2020-05-05 18:46:46.756941"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis modi porro aliquid?"], ["description", "Consequatur expedita et laborum."], ["date", "2020-05-06 18:46:46.758046"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.758731"], ["updated_at", "2020-05-05 18:46:46.758731"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia qui doloribus quidem?"], ["description", "Maxime vero non repudiandae."], ["date", "2020-05-06 18:46:46.759872"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.760885"], ["updated_at", "2020-05-05 18:46:46.760885"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta ducimus reiciendis quaerat?"], ["description", "Corrupti quis nemo aliquam."], ["date", "2020-05-06 18:46:46.762934"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.764170"], ["updated_at", "2020-05-05 18:46:46.764170"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto tempora voluptas dolorem?"], ["description", "Doloribus dolorum dignissimos impedit."], ["date", "2020-05-06 18:46:46.766128"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.767043"], ["updated_at", "2020-05-05 18:46:46.767043"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium voluptas nemo odit?"], ["description", "Enim rerum odit sit."], ["date", "2020-05-06 18:46:46.768175"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.768871"], ["updated_at", "2020-05-05 18:46:46.768871"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur facere aut sequi?"], ["description", "Consequatur nam quos ipsam."], ["date", "2020-05-06 18:46:46.769946"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.770617"], ["updated_at", "2020-05-05 18:46:46.770617"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum ex nesciunt et?"], ["description", "Odit et minus magnam."], ["date", "2020-05-06 18:46:46.771691"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.772366"], ["updated_at", "2020-05-05 18:46:46.772366"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod eos unde voluptatem?"], ["description", "Aut enim aliquam dolor."], ["date", "2020-05-06 18:46:46.774956"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.775903"], ["updated_at", "2020-05-05 18:46:46.775903"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est qui voluptatum quibusdam?"], ["description", "Temporibus impedit quia quia."], ["date", "2020-05-06 18:46:46.777206"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.777922"], ["updated_at", "2020-05-05 18:46:46.777922"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati vero libero praesentium?"], ["description", "A eos sapiente explicabo."], ["date", "2020-05-06 18:46:46.779134"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.779979"], ["updated_at", "2020-05-05 18:46:46.779979"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est tenetur eum quos?"], ["description", "Asperiores et maiores nihil."], ["date", "2020-05-06 18:46:46.782359"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.783445"], ["updated_at", "2020-05-05 18:46:46.783445"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est rerum impedit inventore?"], ["description", "Voluptate eos quasi temporibus."], ["date", "2020-05-06 18:46:46.784876"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.785649"], ["updated_at", "2020-05-05 18:46:46.785649"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio quaerat provident porro?"], ["description", "Distinctio vel delectus amet."], ["date", "2020-05-06 18:46:46.786813"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.787498"], ["updated_at", "2020-05-05 18:46:46.787498"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis id dolores consectetur?"], ["description", "Corrupti numquam consectetur quaerat."], ["date", "2020-05-06 18:46:46.788662"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.789330"], ["updated_at", "2020-05-05 18:46:46.789330"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto nam quisquam enim?"], ["description", "Officia ut omnis aliquid."], ["date", "2020-05-06 18:46:46.790483"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.791366"], ["updated_at", "2020-05-05 18:46:46.791366"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam mollitia veritatis pariatur?"], ["description", "Animi ex consequatur sint."], ["date", "2020-05-06 18:46:46.793535"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.794469"], ["updated_at", "2020-05-05 18:46:46.794469"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In fuga sit voluptates?"], ["description", "Voluptatem est molestias vel."], ["date", "2020-05-06 18:46:46.795838"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.796507"], ["updated_at", "2020-05-05 18:46:46.796507"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia incidunt aut est?"], ["description", "Eveniet suscipit dolores fugiat."], ["date", "2020-05-06 18:46:46.797833"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.798574"], ["updated_at", "2020-05-05 18:46:46.798574"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:46:46 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 3ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Eboni Batz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$je0kWiTHWHWNxyuhCHRcR.Ai97SYa63rEjahO.AOy4zWIa6BgFg3W"], ["created_at", "2020-05-05 18:46:46.813981"], ["updated_at", "2020-05-05 18:46:46.813981"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Aut illo ut modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:46.817643"], ["updated_at", "2020-05-05 18:46:46.817643"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem culpa reprehenderit illo?"], ["description", "Voluptas odit est excepturi."], ["date", "2020-05-06 18:46:46.819511"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.820530"], ["updated_at", "2020-05-05 18:46:46.820530"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea atque harum quia?"], ["description", "Ipsam ea aut praesentium."], ["date", "2020-05-06 18:46:46.822776"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.824094"], ["updated_at", "2020-05-05 18:46:46.824094"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quibusdam consectetur dolorum maiores?"], ["description", "Deserunt voluptas eum est."], ["date", "2020-05-06 18:46:46.826833"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.827817"], ["updated_at", "2020-05-05 18:46:46.827817"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore voluptatem iste molestiae?"], ["description", "Odit quia corporis eius."], ["date", "2020-05-06 18:46:46.829213"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.829993"], ["updated_at", "2020-05-05 18:46:46.829993"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut dolores est omnis?"], ["description", "Numquam quam voluptatum nostrum."], ["date", "2020-05-06 18:46:46.831125"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.831809"], ["updated_at", "2020-05-05 18:46:46.831809"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laudantium suscipit vel adipisci?"], ["description", "Possimus et ipsum deserunt."], ["date", "2020-05-06 18:46:46.832981"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.833687"], ["updated_at", "2020-05-05 18:46:46.833687"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis qui perferendis voluptas?"], ["description", "Deleniti qui in illum."], ["date", "2020-05-06 18:46:46.834839"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.835534"], ["updated_at", "2020-05-05 18:46:46.835534"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos est aperiam occaecati?"], ["description", "Quasi deserunt laudantium in."], ["date", "2020-05-06 18:46:46.836649"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.837317"], ["updated_at", "2020-05-05 18:46:46.837317"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe quia necessitatibus consequuntur?"], ["description", "Ut quae placeat tempore."], ["date", "2020-05-06 18:46:46.838484"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.839157"], ["updated_at", "2020-05-05 18:46:46.839157"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum soluta magni vero?"], ["description", "Natus assumenda molestiae ea."], ["date", "2020-05-06 18:46:46.842784"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.844267"], ["updated_at", "2020-05-05 18:46:46.844267"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt saepe illo tempora?"], ["description", "Sint quidem est ut."], ["date", "2020-05-06 18:46:46.845811"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.846521"], ["updated_at", "2020-05-05 18:46:46.846521"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid nostrum qui corrupti?"], ["description", "Aut asperiores totam cumque."], ["date", "2020-05-06 18:46:46.847771"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.848513"], ["updated_at", "2020-05-05 18:46:46.848513"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo officia et vero?"], ["description", "Veniam delectus eum quasi."], ["date", "2020-05-06 18:46:46.849771"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.850541"], ["updated_at", "2020-05-05 18:46:46.850541"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae exercitationem esse ipsa?"], ["description", "Laudantium distinctio est dolores."], ["date", "2020-05-06 18:46:46.851853"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.852574"], ["updated_at", "2020-05-05 18:46:46.852574"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas incidunt animi veniam?"], ["description", "Quibusdam quaerat et consequuntur."], ["date", "2020-05-06 18:46:46.854049"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.854865"], ["updated_at", "2020-05-05 18:46:46.854865"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam est facilis dolorem?"], ["description", "Blanditiis quo consectetur omnis."], ["date", "2020-05-06 18:46:46.856051"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.856733"], ["updated_at", "2020-05-05 18:46:46.856733"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non et expedita perspiciatis?"], ["description", "Quo unde dicta iusto."], ["date", "2020-05-06 18:46:46.858406"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.859422"], ["updated_at", "2020-05-05 18:46:46.859422"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem et dolores deleniti?"], ["description", "Iste porro et quasi."], ["date", "2020-05-06 18:46:46.860819"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.862034"], ["updated_at", "2020-05-05 18:46:46.862034"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia alias qui quis?"], ["description", "Accusantium laudantium autem nihil."], ["date", "2020-05-06 18:46:46.863751"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.864748"], ["updated_at", "2020-05-05 18:46:46.864748"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam tenetur minus quod?"], ["description", "Veritatis accusantium voluptates beatae."], ["date", "2020-05-06 18:46:46.866044"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.866791"], ["updated_at", "2020-05-05 18:46:46.866791"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:46:46 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["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: 868) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Waldo Fritsch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZDcvOFssJZr3qbpkRETCDu7h5E0wp6re3N4x0i.gw2OH2a6Y13oLq"], ["created_at", "2020-05-05 18:46:46.884430"], ["updated_at", "2020-05-05 18:46:46.884430"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Perspiciatis ipsa optio sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:46.887724"], ["updated_at", "2020-05-05 18:46:46.887724"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste dolor officia dolor?"], ["description", "Minus mollitia dolorum cumque."], ["date", "2020-05-06 18:46:46.889367"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.890417"], ["updated_at", "2020-05-05 18:46:46.890417"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui explicabo vitae impedit?"], ["description", "Dolores ipsum nihil voluptas."], ["date", "2020-05-06 18:46:46.892544"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.893567"], ["updated_at", "2020-05-05 18:46:46.893567"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias animi unde possimus?"], ["description", "Impedit laudantium iste sit."], ["date", "2020-05-06 18:46:46.894917"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.895656"], ["updated_at", "2020-05-05 18:46:46.895656"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia enim pariatur iusto?"], ["description", "Voluptas pariatur tempore nihil."], ["date", "2020-05-06 18:46:46.896824"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.897499"], ["updated_at", "2020-05-05 18:46:46.897499"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut minus magni qui?"], ["description", "Suscipit aperiam ut voluptas."], ["date", "2020-05-06 18:46:46.898624"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.899279"], ["updated_at", "2020-05-05 18:46:46.899279"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere alias non eius?"], ["description", "Dolorem rerum odit dolor."], ["date", "2020-05-06 18:46:46.900567"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.901881"], ["updated_at", "2020-05-05 18:46:46.901881"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores tempora illum aliquid?"], ["description", "Nihil in mollitia et."], ["date", "2020-05-06 18:46:46.904547"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.905690"], ["updated_at", "2020-05-05 18:46:46.905690"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis sed et nihil?"], ["description", "Tempora fugit quasi ullam."], ["date", "2020-05-06 18:46:46.909100"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.910947"], ["updated_at", "2020-05-05 18:46:46.910947"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum sint veritatis iusto?"], ["description", "Consequatur ratione sint tempora."], ["date", "2020-05-06 18:46:46.913110"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.914035"], ["updated_at", "2020-05-05 18:46:46.914035"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum earum saepe voluptatem?"], ["description", "Culpa voluptates ut aut."], ["date", "2020-05-06 18:46:46.916154"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.917043"], ["updated_at", "2020-05-05 18:46:46.917043"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore nostrum nihil sed?"], ["description", "Est aut facilis et."], ["date", "2020-05-06 18:46:46.918323"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.919009"], ["updated_at", "2020-05-05 18:46:46.919009"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum hic fugiat nihil?"], ["description", "Velit quod non excepturi."], ["date", "2020-05-06 18:46:46.920096"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.920895"], ["updated_at", "2020-05-05 18:46:46.920895"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur voluptas qui voluptas?"], ["description", "Hic doloribus nobis explicabo."], ["date", "2020-05-06 18:46:46.923381"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.926183"], ["updated_at", "2020-05-05 18:46:46.926183"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed enim ut ex?"], ["description", "Reprehenderit accusantium sequi fuga."], ["date", "2020-05-06 18:46:46.927888"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.928803"], ["updated_at", "2020-05-05 18:46:46.928803"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore nesciunt ducimus ipsam?"], ["description", "Quis dolorem temporibus suscipit."], ["date", "2020-05-06 18:46:46.930095"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.930776"], ["updated_at", "2020-05-05 18:46:46.930776"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem et est dolorem?"], ["description", "Officiis repellendus quis libero."], ["date", "2020-05-06 18:46:46.931918"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.932638"], ["updated_at", "2020-05-05 18:46:46.932638"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus dolor eos tempora?"], ["description", "Corrupti tempora odit earum."], ["date", "2020-05-06 18:46:46.933904"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.934598"], ["updated_at", "2020-05-05 18:46:46.934598"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et et sed id?"], ["description", "Aut occaecati ab libero."], ["date", "2020-05-06 18:46:46.935736"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.936406"], ["updated_at", "2020-05-05 18:46:46.936406"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum quod error labore?"], ["description", "Iste vel voluptatum eum."], ["date", "2020-05-06 18:46:46.937561"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.938287"], ["updated_at", "2020-05-05 18:46:46.938287"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto veniam iste dignissimos?"], ["description", "Quaerat autem quas voluptatem."], ["date", "2020-05-06 18:46:46.939538"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:46:46.940326"], ["updated_at", "2020-05-05 18:46:46.940326"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:46:46 -0300 +Processing by MeetingsController#destroy as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.4ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + UserMeeting Load (0.1ms) SELECT "user_meetings".* FROM "user_meetings" WHERE "user_meetings"."meeting_id" = ? [["meeting_id", 1]] + Meeting Destroy (0.1ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 4ms (ActiveRecord: 0.9ms | Allocations: 1357) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.9ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deserunt"], ["description", "Delectus adipisci omnis sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:46.960506"], ["updated_at", "2020-05-05 18:46:46.960506"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "pariatur"], ["description", "Quis sapiente aut molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:46.965307"], ["updated_at", "2020-05-05 18:46:46.965307"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Ut at nobis sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:46.967470"], ["updated_at", "2020-05-05 18:46:46.967470"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Qui aut sit inventore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:46.970376"], ["updated_at", "2020-05-05 18:46:46.970376"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aperiam"], ["description", "Dolores optio sunt ipsam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:46.973052"], ["updated_at", "2020-05-05 18:46:46.973052"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatibus"], ["description", "Quidem ut dolores qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:46.975258"], ["updated_at", "2020-05-05 18:46:46.975258"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Nesciunt quo non aliquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:46.976738"], ["updated_at", "2020-05-05 18:46:46.976738"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "amet"], ["description", "Ullam aut ad voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:46.978012"], ["updated_at", "2020-05-05 18:46:46.978012"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Consequuntur autem quidem et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:46.979413"], ["updated_at", "2020-05-05 18:46:46.979413"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "inventore"], ["description", "Sunt soluta officia possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:46.980775"], ["updated_at", "2020-05-05 18:46:46.980775"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Toby Anderson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OBH01ii5.71c4SodCABRIez7CDgURi9N/5lHJvNbfq97klHNovMgW"], ["created_at", "2020-05-05 18:46:46.985037"], ["updated_at", "2020-05-05 18:46:46.985037"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:46:46 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.88ms) +Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.3ms | Allocations: 2913) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iusto"], ["description", "Enim cumque et ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.010892"], ["updated_at", "2020-05-05 18:46:47.010892"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cumque"], ["description", "Est sit cumque maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.013892"], ["updated_at", "2020-05-05 18:46:47.013892"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Minima aliquam hic et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.015390"], ["updated_at", "2020-05-05 18:46:47.015390"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Dignissimos aut ut est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.016783"], ["updated_at", "2020-05-05 18:46:47.016783"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Quisquam ea pariatur vero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.018134"], ["updated_at", "2020-05-05 18:46:47.018134"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consectetur"], ["description", "Molestiae in reiciendis illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.019398"], ["updated_at", "2020-05-05 18:46:47.019398"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Dolore ex dolorum neque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.020625"], ["updated_at", "2020-05-05 18:46:47.020625"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ratione"], ["description", "Ea totam a quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.022057"], ["updated_at", "2020-05-05 18:46:47.022057"], ["created_by", "1"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deserunt"], ["description", "Sunt hic eius qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.026821"], ["updated_at", "2020-05-05 18:46:47.026821"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Voluptatem quidem vero tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.029608"], ["updated_at", "2020-05-05 18:46:47.029608"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Merlene Russel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Kxo/wBphg1bLz7sG2ywc9eL0IzUKSnRmNj1fIRj1Bb8FkQq3n5xOy"], ["created_at", "2020-05-05 18:46:47.034286"], ["updated_at", "2020-05-05 18:46:47.034286"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:46:47 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.6ms | ActiveRecord: 0.1ms | Allocations: 2840) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.4ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "hic"], ["description", "Voluptates rerum accusantium qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.053910"], ["updated_at", "2020-05-05 18:46:47.053910"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Sunt in corrupti quidem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.056851"], ["updated_at", "2020-05-05 18:46:47.056851"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Rerum dicta est aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.059060"], ["updated_at", "2020-05-05 18:46:47.059060"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugiat"], ["description", "Nesciunt et error omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.060684"], ["updated_at", "2020-05-05 18:46:47.060684"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Rerum laboriosam nostrum et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.063104"], ["updated_at", "2020-05-05 18:46:47.063104"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cumque"], ["description", "Eveniet est vitae quaerat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.066294"], ["updated_at", "2020-05-05 18:46:47.066294"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consectetur"], ["description", "Omnis et architecto animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.069239"], ["updated_at", "2020-05-05 18:46:47.069239"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloremque"], ["description", "Sed repellat minima distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.072025"], ["updated_at", "2020-05-05 18:46:47.072025"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odit"], ["description", "Rerum repellendus aut non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.074383"], ["updated_at", "2020-05-05 18:46:47.074383"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fuga"], ["description", "Quasi tenetur quis quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.075911"], ["updated_at", "2020-05-05 18:46:47.075911"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Deneen Weissnat"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KCYBGN.LCecmU7gCyKuAZuKrvvUcEknVbBh1q6RufxDlE90Cc/m1e"], ["created_at", "2020-05-05 18:46:47.078515"], ["updated_at", "2020-05-05 18:46:47.078515"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:46:47 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.41ms) +Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.2ms | Allocations: 2845) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:46:47 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.71ms) +Completed 200 OK in 4ms (Views: 2.1ms | ActiveRecord: 0.3ms | Allocations: 1242) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Voluptas enim cum est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.109699"], ["updated_at", "2020-05-05 18:46:47.109699"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vero"], ["description", "Earum sint ullam corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.113196"], ["updated_at", "2020-05-05 18:46:47.113196"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Earum sunt sequi qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.114923"], ["updated_at", "2020-05-05 18:46:47.114923"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Pariatur recusandae velit odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.116854"], ["updated_at", "2020-05-05 18:46:47.116854"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Tempora vel aliquid ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.118355"], ["updated_at", "2020-05-05 18:46:47.118355"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aspernatur"], ["description", "Dolore suscipit sed accusantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.120189"], ["updated_at", "2020-05-05 18:46:47.120189"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Impedit reiciendis quos odit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.121671"], ["updated_at", "2020-05-05 18:46:47.121671"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "esse"], ["description", "Sunt ipsa in in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.151233"], ["updated_at", "2020-05-05 18:46:47.151233"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Necessitatibus aliquid sunt omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.153376"], ["updated_at", "2020-05-05 18:46:47.153376"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Velit facilis accusantium unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.155075"], ["updated_at", "2020-05-05 18:46:47.155075"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Weldon O'Connell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$23MuSfVLV7aN5aDRgIv5Y.XE2Rqi1kHjqh48Bb6xE/gnL5oLa8kcC"], ["created_at", "2020-05-05 18:46:47.158027"], ["updated_at", "2020-05-05 18:46:47.158027"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:46:47 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.27ms) +Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.3ms | Allocations: 2842) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:46:47 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.43ms) +Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.3ms | Allocations: 1239) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Fuga cum aliquam earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.185825"], ["updated_at", "2020-05-05 18:46:47.185825"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Optio et aperiam dicta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.189394"], ["updated_at", "2020-05-05 18:46:47.189394"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellendus"], ["description", "Sint unde et quisquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.191801"], ["updated_at", "2020-05-05 18:46:47.191801"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nobis"], ["description", "Ut beatae exercitationem reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.194163"], ["updated_at", "2020-05-05 18:46:47.194163"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nemo"], ["description", "Consequatur libero cum occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.195557"], ["updated_at", "2020-05-05 18:46:47.195557"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nemo"], ["description", "Sit rem ex qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.197043"], ["updated_at", "2020-05-05 18:46:47.197043"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veniam"], ["description", "Cumque aut cum optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.199041"], ["updated_at", "2020-05-05 18:46:47.199041"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illum"], ["description", "Culpa error aliquam cumque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.200734"], ["updated_at", "2020-05-05 18:46:47.200734"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "hic"], ["description", "Recusandae veniam et illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.202333"], ["updated_at", "2020-05-05 18:46:47.202333"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Nihil et ut nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.205122"], ["updated_at", "2020-05-05 18:46:47.205122"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.0ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cornelius Will"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Su.xLoq22HvTe6TBEHRy1O1nr3mJuJbn62pEjVYH8lrpv5Kk97xMq"], ["created_at", "2020-05-05 18:46:47.210112"], ["updated_at", "2020-05-05 18:46:47.210112"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:46:47 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.04ms) +Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms | Allocations: 2840) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:46:47 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minima"], ["description", "Saepe sequi est tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.233455"], ["updated_at", "2020-05-05 18:46:47.233455"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "modi"], ["description", "Corporis nisi ut sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.236406"], ["updated_at", "2020-05-05 18:46:47.236406"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Dolores omnis porro molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.237849"], ["updated_at", "2020-05-05 18:46:47.237849"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "culpa"], ["description", "In et veniam ea."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.239123"], ["updated_at", "2020-05-05 18:46:47.239123"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "architecto"], ["description", "Quasi soluta sed fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.240439"], ["updated_at", "2020-05-05 18:46:47.240439"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Vel aliquam aut perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.242425"], ["updated_at", "2020-05-05 18:46:47.242425"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quidem"], ["description", "Dolores voluptatem iste ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.244981"], ["updated_at", "2020-05-05 18:46:47.244981"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veniam"], ["description", "At quia aut sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.247608"], ["updated_at", "2020-05-05 18:46:47.247608"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ullam"], ["description", "Tempore et ad id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.250683"], ["updated_at", "2020-05-05 18:46:47.250683"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vitae"], ["description", "Optio id ut doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.253391"], ["updated_at", "2020-05-05 18:46:47.253391"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lindsey Mayer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DiHGRz.MeJCja0t0eD0MJe4sOqNXEHZ/K1Ga2o0uFqfpfsqEIcEYW"], ["created_at", "2020-05-05 18:46:47.256150"], ["updated_at", "2020-05-05 18:46:47.256150"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:46:47 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.5ms | ActiveRecord: 0.2ms | Allocations: 2841) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:46:47 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 512) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Soluta necessitatibus cum sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.277724"], ["updated_at", "2020-05-05 18:46:47.277724"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "soluta"], ["description", "Non voluptas aperiam omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.280516"], ["updated_at", "2020-05-05 18:46:47.280516"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Nesciunt esse blanditiis consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.281893"], ["updated_at", "2020-05-05 18:46:47.281893"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Eveniet rerum quasi omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.283972"], ["updated_at", "2020-05-05 18:46:47.283972"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloribus"], ["description", "Est sit fugit quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.288470"], ["updated_at", "2020-05-05 18:46:47.288470"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "reiciendis"], ["description", "Necessitatibus ratione voluptates suscipit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.293517"], ["updated_at", "2020-05-05 18:46:47.293517"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veritatis"], ["description", "Suscipit saepe quo et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.295285"], ["updated_at", "2020-05-05 18:46:47.295285"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quasi"], ["description", "Soluta ut tempore optio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.296554"], ["updated_at", "2020-05-05 18:46:47.296554"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Fuga ut est molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.297738"], ["updated_at", "2020-05-05 18:46:47.297738"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nemo"], ["description", "Qui distinctio eum est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.299003"], ["updated_at", "2020-05-05 18:46:47.299003"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jerrod Little PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.L4rnx2gO7oSCjJ1EGcnmegHRLfvT8Tm558pMBFi15BNFWy1S/Xn6"], ["created_at", "2020-05-05 18:46:47.301549"], ["updated_at", "2020-05-05 18:46:47.301549"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:46:47 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | Allocations: 2842) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:46:47 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:46:47.329702"], ["updated_at", "2020-05-05 18:46:47.329702"], ["created_by", "1"]] +  (0.2ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.37ms) +Completed 201 Created in 22ms (Views: 0.8ms | ActiveRecord: 1.0ms | Allocations: 5083) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (180.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (2.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "mollitia"], ["description", "Dignissimos dolorem quaerat nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.520057"], ["updated_at", "2020-05-05 18:46:47.520057"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "harum"], ["description", "Omnis dignissimos molestiae fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.523861"], ["updated_at", "2020-05-05 18:46:47.523861"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Optio vel sit repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.527232"], ["updated_at", "2020-05-05 18:46:47.527232"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "inventore"], ["description", "Velit ut molestiae iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.529322"], ["updated_at", "2020-05-05 18:46:47.529322"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laboriosam"], ["description", "Autem at dolor aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.532758"], ["updated_at", "2020-05-05 18:46:47.532758"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Corrupti delectus officiis hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.535350"], ["updated_at", "2020-05-05 18:46:47.535350"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "exercitationem"], ["description", "Ut odit impedit et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.537445"], ["updated_at", "2020-05-05 18:46:47.537445"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Maiores voluptate molestiae quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.539282"], ["updated_at", "2020-05-05 18:46:47.539282"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Consequatur officia dolor enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.540581"], ["updated_at", "2020-05-05 18:46:47.540581"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odio"], ["description", "Eos provident exercitationem fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.542520"], ["updated_at", "2020-05-05 18:46:47.542520"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alton Bednar"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gZL8Zupybgi4zyV6dCdn2u2Us6R5qud2gYC1mg4lW1HszKekqOCSC"], ["created_at", "2020-05-05 18:46:47.546821"], ["updated_at", "2020-05-05 18:46:47.546821"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:46:47 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.45ms) +Completed 200 OK in 7ms (Views: 5.3ms | ActiveRecord: 0.3ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:46:47 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:46:47.562268"], ["updated_at", "2020-05-05 18:46:47.562268"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.4ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.71ms) +Completed 201 Created in 7ms (Views: 1.6ms | ActiveRecord: 0.9ms | Allocations: 2251) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Fugit consequatur laboriosam dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.578898"], ["updated_at", "2020-05-05 18:46:47.578898"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Ab eaque mollitia eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.581596"], ["updated_at", "2020-05-05 18:46:47.581596"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Consequuntur perferendis sit ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.583105"], ["updated_at", "2020-05-05 18:46:47.583105"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officia"], ["description", "Veritatis labore sed aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.584483"], ["updated_at", "2020-05-05 18:46:47.584483"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "commodi"], ["description", "Molestiae minima id nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.586695"], ["updated_at", "2020-05-05 18:46:47.586695"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.8ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Excepturi et quis ab."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.589746"], ["updated_at", "2020-05-05 18:46:47.589746"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Quod et tenetur voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.595833"], ["updated_at", "2020-05-05 18:46:47.595833"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Ea pariatur error atque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.597822"], ["updated_at", "2020-05-05 18:46:47.597822"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laborum"], ["description", "Assumenda illo quis id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.599239"], ["updated_at", "2020-05-05 18:46:47.599239"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iure"], ["description", "Labore consequatur qui nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.600602"], ["updated_at", "2020-05-05 18:46:47.600602"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Salome Sauer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UhAKaGIOG/WXCnGkjbaw8emHMREXjhJRRgYwGRN5a0fRiW1aYVvma"], ["created_at", "2020-05-05 18:46:47.603167"], ["updated_at", "2020-05-05 18:46:47.603167"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:46:47 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.38ms) +Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:46:47 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3697) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (17.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Sapiente voluptas in et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.632385"], ["updated_at", "2020-05-05 18:46:47.632385"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Et qui sed aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.652197"], ["updated_at", "2020-05-05 18:46:47.652197"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "optio"], ["description", "Omnis velit aut maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.655246"], ["updated_at", "2020-05-05 18:46:47.655246"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sequi"], ["description", "Quae facere perferendis corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.656751"], ["updated_at", "2020-05-05 18:46:47.656751"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "suscipit"], ["description", "Placeat consequatur accusamus quisquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.658021"], ["updated_at", "2020-05-05 18:46:47.658021"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquid"], ["description", "Id repellat doloribus corrupti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.659994"], ["updated_at", "2020-05-05 18:46:47.659994"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magnam"], ["description", "Reprehenderit quo id nisi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.661520"], ["updated_at", "2020-05-05 18:46:47.661520"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "beatae"], ["description", "Aut et quasi quo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.662844"], ["updated_at", "2020-05-05 18:46:47.662844"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Expedita commodi impedit qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.664158"], ["updated_at", "2020-05-05 18:46:47.664158"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Perferendis eos natus veritatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.665652"], ["updated_at", "2020-05-05 18:46:47.665652"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Amos Lehner II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4/T/H/bxDBjYX2snrIczTeComD4BlRUgNmvMeW30nYi6GOM8ZmKii"], ["created_at", "2020-05-05 18:46:47.669455"], ["updated_at", "2020-05-05 18:46:47.669455"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:46:47 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.67ms) +Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:46:47 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 3697) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Ut consequatur voluptatem tenetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.696114"], ["updated_at", "2020-05-05 18:46:47.696114"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "porro"], ["description", "Culpa repellendus qui facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.698936"], ["updated_at", "2020-05-05 18:46:47.698936"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Ex voluptates nemo dicta."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.700350"], ["updated_at", "2020-05-05 18:46:47.700350"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatum"], ["description", "Ut optio quibusdam quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.701646"], ["updated_at", "2020-05-05 18:46:47.701646"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Earum incidunt consequatur fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.703057"], ["updated_at", "2020-05-05 18:46:47.703057"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deleniti"], ["description", "Temporibus commodi cum dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.704458"], ["updated_at", "2020-05-05 18:46:47.704458"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "esse"], ["description", "Optio ut qui nobis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.705834"], ["updated_at", "2020-05-05 18:46:47.705834"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Aut placeat sequi sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.707986"], ["updated_at", "2020-05-05 18:46:47.707986"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "esse"], ["description", "Est sit alias et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.712058"], ["updated_at", "2020-05-05 18:46:47.712058"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "maiores"], ["description", "Quia non nostrum dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.713803"], ["updated_at", "2020-05-05 18:46:47.713803"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Jolynn Dicki"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$AmYE1XixsbTphgYYRxOcAO1CAxYQw09uw6Gk6xx4GN0Rh8gDluQrS"], ["created_at", "2020-05-05 18:46:47.716538"], ["updated_at", "2020-05-05 18:46:47.716538"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:46:47 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.1ms | Allocations: 2843) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:46:47 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:46:47.728386"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1044) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Rerum fugit voluptatibus aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.738537"], ["updated_at", "2020-05-05 18:46:47.738537"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempore"], ["description", "Sunt animi qui quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.743057"], ["updated_at", "2020-05-05 18:46:47.743057"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Eum molestiae cupiditate repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.745245"], ["updated_at", "2020-05-05 18:46:47.745245"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Voluptatibus vitae eos autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.747802"], ["updated_at", "2020-05-05 18:46:47.747802"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perferendis"], ["description", "Consequatur ab modi quisquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.749979"], ["updated_at", "2020-05-05 18:46:47.749979"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Nemo odio repellendus aperiam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.752277"], ["updated_at", "2020-05-05 18:46:47.752277"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Modi voluptatem voluptatem debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.753856"], ["updated_at", "2020-05-05 18:46:47.753856"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Qui tenetur optio aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.755165"], ["updated_at", "2020-05-05 18:46:47.755165"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatibus"], ["description", "Commodi optio modi facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.756461"], ["updated_at", "2020-05-05 18:46:47.756461"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laudantium"], ["description", "Officia et dolore in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.757778"], ["updated_at", "2020-05-05 18:46:47.757778"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Albert McKenzie"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3.HatANiQ7NMfsKO28qBJ.P4m2CSHB/GLyrttAE9L7PI7y3A9kqVe"], ["created_at", "2020-05-05 18:46:47.760404"], ["updated_at", "2020-05-05 18:46:47.760404"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:46:47 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2843) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:46:47 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:46:47.771755"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 982) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nesciunt"], ["description", "Et repellat delectus nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.783106"], ["updated_at", "2020-05-05 18:46:47.783106"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "labore"], ["description", "Non quibusdam assumenda facere."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.787133"], ["updated_at", "2020-05-05 18:46:47.787133"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Unde est et recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.789596"], ["updated_at", "2020-05-05 18:46:47.789596"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facilis"], ["description", "Eveniet aperiam est aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.791300"], ["updated_at", "2020-05-05 18:46:47.791300"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "porro"], ["description", "In laborum soluta sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.793744"], ["updated_at", "2020-05-05 18:46:47.793744"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Excepturi ducimus enim eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.795639"], ["updated_at", "2020-05-05 18:46:47.795639"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Ipsum delectus omnis tempora."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.797847"], ["updated_at", "2020-05-05 18:46:47.797847"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Tenetur nam dolor deserunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.799249"], ["updated_at", "2020-05-05 18:46:47.799249"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Et dolor amet quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.800554"], ["updated_at", "2020-05-05 18:46:47.800554"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dignissimos"], ["description", "In quia omnis fuga."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:46:47.801846"], ["updated_at", "2020-05-05 18:46:47.801846"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Raleigh Koss"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Xi7oiQLMiBeO3oIwSKj3RO6ATkJwCooowBrCljqb9J/1Z1VPt1j8a"], ["created_at", "2020-05-05 18:46:47.804462"], ["updated_at", "2020-05-05 18:46:47.804462"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:46:47 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.13ms) +Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:46:47 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1201) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Charisse Oberbrunner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HHrHeuCyzJthFshSD.tEFOjj9I4qvIMEc1uZK3Ts2o5UBL/nbG72S"], ["created_at", "2020-05-05 18:46:47.828071"], ["updated_at", "2020-05-05 18:46:47.828071"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Jamey Lang"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$b/z8YUwl3A.AiMCDQH8UrucMzC9sU5jJn8.26KIAmEUUP7bi9t39O"], ["created_at", "2020-05-05 18:46:47.832840"], ["updated_at", "2020-05-05 18:46:47.832840"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Olen Ernser"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XyIpHI5afVdQoSCOpu0DfeTmCdYeiIHs5ewYL8.AYs8bw/kiUPEr6"], ["created_at", "2020-05-05 18:46:47.835695"], ["updated_at", "2020-05-05 18:46:47.835695"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Erin Bartoletti III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Yeqyek1zh.KyTlalgMOx2eyTLSb33Xf9/VXOnXZ/EWRKQHFd86GE6"], ["created_at", "2020-05-05 18:46:47.838144"], ["updated_at", "2020-05-05 18:46:47.838144"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Micah Renner MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kGwaUwSxuW1mMrk77GRat..5Ru6FuluBe.9HXwJUbtQnXaf3Uc1xu"], ["created_at", "2020-05-05 18:46:47.840822"], ["updated_at", "2020-05-05 18:46:47.840822"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mica Spencer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/J8oY6wg0dG.1TCDJQCXCe7FatSVuafQlQ8V1C3YJS3hj/7Xr7Psi"], ["created_at", "2020-05-05 18:46:47.844081"], ["updated_at", "2020-05-05 18:46:47.844081"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Guillermo Tillman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$MTQ0/a9zCrUQRmcdwZZuDu3EWFrnrZxibf7PByy57DEh1C3qGK.xG"], ["created_at", "2020-05-05 18:46:47.846844"], ["updated_at", "2020-05-05 18:46:47.846844"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ashley Quitzon"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$m4AIgwe7ohoB9Z7eSWNu1eWKuZxsv8HNfH.003PQgSCJG.GntTAha"], ["created_at", "2020-05-05 18:46:47.850822"], ["updated_at", "2020-05-05 18:46:47.850822"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Myles White"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$l.Wg/9lXDBvho0slI3OWk.KrGjeSC..1mxf5cs.7gl19d77nNO8ue"], ["created_at", "2020-05-05 18:46:47.853734"], ["updated_at", "2020-05-05 18:46:47.853734"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Kenton Franecki"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$PaNWKHyhJlkdkCbXs6QS8uap1hy4mO/SlIXxI0j/S36thlHwWh2Ke"], ["created_at", "2020-05-05 18:46:47.856157"], ["updated_at", "2020-05-05 18:46:47.856157"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:46:47 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.29ms) +Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.2ms | Allocations: 2345) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Burl Mitchell I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kOEx6kAWWwTjCS/JTwaeoOpu7CITDYz/RwOJhAeL.1rBVk7zD.kmm"], ["created_at", "2020-05-05 18:46:47.875424"], ["updated_at", "2020-05-05 18:46:47.875424"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Isadora Bartell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RJAiMa7F3s4lIDJAB9ioc.KS/1g.kFQQjihoAI5nHwSbCNgQMAtpS"], ["created_at", "2020-05-05 18:46:47.880405"], ["updated_at", "2020-05-05 18:46:47.880405"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Napoleon Fritsch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7VfoK5DLrUx7qafpgRirXuEkkzAgt/pJ56lI6Jt6g6DMyxUDYwnSq"], ["created_at", "2020-05-05 18:46:47.883316"], ["updated_at", "2020-05-05 18:46:47.883316"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Danial Abshire"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$x2G.jYqb4gNlwpOluqINcOmVwHCuZgQKK7/mViTAzIZL9VS4u1RcK"], ["created_at", "2020-05-05 18:46:47.885812"], ["updated_at", "2020-05-05 18:46:47.885812"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Carli Auer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.kGXzcEcpbcJYdJUtWqiE.M/YyZ8iCMO.enM.O8bzgP6bkXEDvywu"], ["created_at", "2020-05-05 18:46:47.888803"], ["updated_at", "2020-05-05 18:46:47.888803"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Winford Dooley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jDX3Yi2Jqxp3emb0AwXUouxDG9nxvbvrCiKQ/KDtgzvAgc53IVpr."], ["created_at", "2020-05-05 18:46:47.892858"], ["updated_at", "2020-05-05 18:46:47.892858"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Lean Koepp"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NnQ4AuDXMYIV2LUlIdOjgeRfhobHrmTkmTot3.Ziw3dYf27lrgHN2"], ["created_at", "2020-05-05 18:46:47.895798"], ["updated_at", "2020-05-05 18:46:47.895798"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Carly Waelchi DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4Udpc3dHkhJBgXo39VJgCeOSKG2b9FRLYh5tThcsawTH.A3p0hJH2"], ["created_at", "2020-05-05 18:46:47.898239"], ["updated_at", "2020-05-05 18:46:47.898239"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Winfred Cremin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.ZUYrIRxweyJVNcT/gTdL.toWr34w1M0gV4TsGRUIJF94S77WzYwu"], ["created_at", "2020-05-05 18:46:47.900702"], ["updated_at", "2020-05-05 18:46:47.900702"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Un Langosh"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TPFefqfEra7Gv6/FBS0v8e71HdBa01VejaH1nyiFEeuucaukaUkma"], ["created_at", "2020-05-05 18:46:47.903301"], ["updated_at", "2020-05-05 18:46:47.903301"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:46:47 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.2ms) +Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms | Allocations: 2203) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Wanetta Morissette"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$V4unE6tkbO3haXFVOJPol.QrFbEYz.a13Arzx0i7tfQbTx6cY1X1K"], ["created_at", "2020-05-05 18:46:47.920245"], ["updated_at", "2020-05-05 18:46:47.920245"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leanna Paucek"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JC.bi.YjZWSjPjKCb1M7yOZ5t4r3e4kQClxxhSGMlouURlCEE924K"], ["created_at", "2020-05-05 18:46:47.925867"], ["updated_at", "2020-05-05 18:46:47.925867"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lucie Effertz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$p8efbbKxKLDge0D6ezL/ae5pUfWEbujYREX2dzfGlr42rVeIu2McS"], ["created_at", "2020-05-05 18:46:47.929146"], ["updated_at", "2020-05-05 18:46:47.929146"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Grover Casper"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$U0M5uW81LSJwdrdVSun2vuSTX9Jdv0FBTjPfU3diEdRbLlYW0dVeS"], ["created_at", "2020-05-05 18:46:47.932463"], ["updated_at", "2020-05-05 18:46:47.932463"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Noelle Langworth"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9sQdxu2FUVDCOzhJd7oU7OoQo3laVxkg.Izv99zZ7134NyUrL0Ugq"], ["created_at", "2020-05-05 18:46:47.935380"], ["updated_at", "2020-05-05 18:46:47.935380"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hyon Tromp"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SF3qyMnvmoDj8HDUQXeF6us1oQ3/.kmcRqscT4P91SX3hh16nTnOO"], ["created_at", "2020-05-05 18:46:47.937769"], ["updated_at", "2020-05-05 18:46:47.937769"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Terrie Mraz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qhYwTrEBHN4EJDQjmMRIo.oPfWrbOQve9/fU67KN.9lApBGKO5V7W"], ["created_at", "2020-05-05 18:46:47.940142"], ["updated_at", "2020-05-05 18:46:47.940142"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Harvey Kling"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$t6zvF4v9ZvaIxxas6RwUE.vghE40ntPfzquGVSrA2IYbMDeAfVfXW"], ["created_at", "2020-05-05 18:46:47.943053"], ["updated_at", "2020-05-05 18:46:47.943053"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Wes Howell Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0FyTHytpNU9I6KbutElPc.ek87fLsXeo./h1HXFlT5NziWvC3k.fW"], ["created_at", "2020-05-05 18:46:47.946107"], ["updated_at", "2020-05-05 18:46:47.946107"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Deon Flatley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.B268Yusz6xIwCauyD0wsOgD06mrZHXfRMrlFyZeNRA.0ryHfGRxO"], ["created_at", "2020-05-05 18:46:47.949420"], ["updated_at", "2020-05-05 18:46:47.949420"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:46:47 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.74ms) +Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:46:47 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.33ms) +Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (13.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Terra Mosciski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XAJ9ZOuSx/TvYpX1zaI5z.AYtEq7eLrrw4gbFt3EeKb2qUkthmImq"], ["created_at", "2020-05-05 18:46:47.977510"], ["updated_at", "2020-05-05 18:46:47.977510"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Robbi Schoen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3vsxkEYUBMM0cw2buT37LOUWg/1CpPlDHAA7QPKla50D4lm5XEiNO"], ["created_at", "2020-05-05 18:46:47.981446"], ["updated_at", "2020-05-05 18:46:47.981446"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shonda Ledner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4/dheBzBqCVls2J9tRTdD.UShEX8pw4jTm7hynucHIuxvB8AuyVoy"], ["created_at", "2020-05-05 18:46:47.984005"], ["updated_at", "2020-05-05 18:46:47.984005"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Quintin Langosh"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fYKpD.D4LuxMwW7pesoxv.8QNfNZbLsuxmvF0YXXGtsUgUr3ph282"], ["created_at", "2020-05-05 18:46:47.986683"], ["updated_at", "2020-05-05 18:46:47.986683"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Darron Krajcik"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YRq1SCwEmdq6c9ik4u/ZeOoTsm/TDYymJdHMr94HiKzXxkOYHKLo."], ["created_at", "2020-05-05 18:46:47.989787"], ["updated_at", "2020-05-05 18:46:47.989787"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Micah Tremblay"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gl4ylx6xee.WVlO7FS6X9uohfASV6225O224DaAXpNUvrzowXv5Ge"], ["created_at", "2020-05-05 18:46:47.993616"], ["updated_at", "2020-05-05 18:46:47.993616"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sterling Brakus"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NOX47YaLV9ttQZyPc2h5guBcVocj7bCvmD2FawIzgKpIwlzXAxWVe"], ["created_at", "2020-05-05 18:46:47.996586"], ["updated_at", "2020-05-05 18:46:47.996586"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Diane Rippin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dhonaP7Uujhjnlo.GUbwU.mF8I0jyyVZqPx72/wkcVQ9ru9lHiWzi"], ["created_at", "2020-05-05 18:46:47.999098"], ["updated_at", "2020-05-05 18:46:47.999098"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Jules Halvorson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aEystbxNJFzafyUOIn.TruE62emOB4aYxQcN7WB1h0I6JYRZQJoo."], ["created_at", "2020-05-05 18:46:48.001537"], ["updated_at", "2020-05-05 18:46:48.001537"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mellie Nicolas"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5KYYr6DrYtPu9jvzF32n7OrSxBADlYTszwUJB5S9/GbSNU3xOgUPW"], ["created_at", "2020-05-05 18:46:48.003920"], ["updated_at", "2020-05-05 18:46:48.003920"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:46:48 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.49ms) +Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:46:48 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.43ms) +Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alison D'Amore"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vWXXEPRspEEQlKzJ3uSs9uulkNqcM1dVe6d8rgUiq5qo7jApXUc5e"], ["created_at", "2020-05-05 18:46:48.024283"], ["updated_at", "2020-05-05 18:46:48.024283"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Rex Paucek"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$EJKkQM1H8CZayJzH4n6Vfem4Uuy0KysYep/C8..zO.44cQNxfka/y"], ["created_at", "2020-05-05 18:46:48.030565"], ["updated_at", "2020-05-05 18:46:48.030565"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Frederic Will"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vCpo5.0q4K1gSV9j9QD5VuRNxq.BeQu9ch9Y8rOR8oKDkXjfovD6a"], ["created_at", "2020-05-05 18:46:48.033438"], ["updated_at", "2020-05-05 18:46:48.033438"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mohammed Bechtelar"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gMkWebPEXK5X.uBiJgomKOJGAK/Hcs5sJmniTT4kGLR7I.mUxN.ni"], ["created_at", "2020-05-05 18:46:48.036196"], ["updated_at", "2020-05-05 18:46:48.036196"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Grover Daugherty"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5Lr/pq7o98/vL5BsPPWT0.7qx7fX5DtpmeUp6ArOZhq9xWkNsL/56"], ["created_at", "2020-05-05 18:46:48.039464"], ["updated_at", "2020-05-05 18:46:48.039464"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shellie Predovic"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$M7goCh.yEhnk8z7VCfxd2eeuJ7OogBoiYclI.Lhbisx2sBaX/nsH2"], ["created_at", "2020-05-05 18:46:48.042132"], ["updated_at", "2020-05-05 18:46:48.042132"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Titus Lind"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$N016WpZuK6Rn7w.7wiohZ.Za9qrrIgn3MJ0ueFP.WSAdZWebRMWqi"], ["created_at", "2020-05-05 18:46:48.045266"], ["updated_at", "2020-05-05 18:46:48.045266"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Roosevelt Cole"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LBnSZZnyzykfdEzoNBQPj.YNPOyoFYBy6ciSHvQEQLvE3MufTmjz2"], ["created_at", "2020-05-05 18:46:48.047890"], ["updated_at", "2020-05-05 18:46:48.047890"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Mark Dicki"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9gZdb7U95mloY.p/9IjQ/uysVj5OCVfN3c17nF4lKfrL7aDYN19ZO"], ["created_at", "2020-05-05 18:46:48.050918"], ["updated_at", "2020-05-05 18:46:48.050918"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kelsie Flatley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dIL4zmEO13RKoHkumUYBkOoiIqjd3Uh1f5m2KIvumlnW.4Ekg5Nxu"], ["created_at", "2020-05-05 18:46:48.053683"], ["updated_at", "2020-05-05 18:46:48.053683"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:46:48 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.05ms) +Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:46:48 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bella Dickinson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fgWuRmtEXElyk1r5/0x4r.iUj2FGOFkGuLgftuqkXD/XW7auvv.3i"], ["created_at", "2020-05-05 18:46:48.073145"], ["updated_at", "2020-05-05 18:46:48.073145"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lydia Hartmann Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mM1MCauISi9mVH6HPyuptOyw3ESkgiWbVktQIv7DUF2UkQSdj8rce"], ["created_at", "2020-05-05 18:46:48.077604"], ["updated_at", "2020-05-05 18:46:48.077604"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jefferson Wiegand"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QedzlKYcJrfu.AlmTrByEOWPSHlYWnuEt08wxnCbNrmjdlsOlyywm"], ["created_at", "2020-05-05 18:46:48.080169"], ["updated_at", "2020-05-05 18:46:48.080169"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rigoberto McGlynn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pTGHzxpldtC8sPHcSZ0zA.RrzdfUVPBoQZxL6i8URPLvBJIhGmWUy"], ["created_at", "2020-05-05 18:46:48.082594"], ["updated_at", "2020-05-05 18:46:48.082594"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Isa Harris"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$io00WDlwhCb9quJEKqxO3OxXhsbOewywyynuDWdjAA0XSmT8xYXnW"], ["created_at", "2020-05-05 18:46:48.085131"], ["updated_at", "2020-05-05 18:46:48.085131"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Galen Schmeler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$U6uIbJ2YXFNsNjy0v3Ky6OJeDavF2jjwt/UUHYOaHX2yTtok75w9O"], ["created_at", "2020-05-05 18:46:48.087543"], ["updated_at", "2020-05-05 18:46:48.087543"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Drew Carter"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$wYP7giuXFPvL0KeWXRXH0ewFh9DW1Mfc6S/JPcJloNjcB32tqKckC"], ["created_at", "2020-05-05 18:46:48.091157"], ["updated_at", "2020-05-05 18:46:48.091157"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ron Hodkiewicz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$9zfCJSIhenb0nBJn7WZBueuAu3F2ccJFyyZiSY5vxDc7BeXM1mUg."], ["created_at", "2020-05-05 18:46:48.095061"], ["updated_at", "2020-05-05 18:46:48.095061"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tamra Cole I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$N5YEn4pnHSrlpYc7NqC3uu1MwzaCzra.mXiyuM6uSixbXf76cKRaa"], ["created_at", "2020-05-05 18:46:48.097880"], ["updated_at", "2020-05-05 18:46:48.097880"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gaylene Buckridge"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$cMcpph.SFKyQBVEIN.nAH.if/j/uMq2dA7RGBVk3kTK6mbc.UV75O"], ["created_at", "2020-05-05 18:46:48.100216"], ["updated_at", "2020-05-05 18:46:48.100216"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:46:48 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.62ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:46:48 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Valery Pouros"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rN/Fr09vAsWqYw.JGphBreJgsfCFEnzqV9hY2DbxHJQkfIYW4h5C."], ["created_at", "2020-05-05 18:46:48.120215"], ["updated_at", "2020-05-05 18:46:48.120215"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Garry Littel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$s7b/Av91YoVqJj2FLA2QBuCbv1Jx159Z5plDgRybMUvldb3oU7hbK"], ["created_at", "2020-05-05 18:46:48.125329"], ["updated_at", "2020-05-05 18:46:48.125329"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Candi Carroll"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gf7hrtR7/bDU/dlELWJtveyae5eUNxJ8FWIwgtM23IsEmLwvU0ZBO"], ["created_at", "2020-05-05 18:46:48.128264"], ["updated_at", "2020-05-05 18:46:48.128264"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Gordon Klocko"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fN12zo7Cq3HUhU6KRcLmw.INTG9iA8tx0XApZL9FBAv69/2UGm7HC"], ["created_at", "2020-05-05 18:46:48.131945"], ["updated_at", "2020-05-05 18:46:48.131945"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Deloise Reichert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WiuHJW9bmuvNNBP6/oigD.9vZe8H6mfv0qDhqGJUGYLDhxd5A1vPu"], ["created_at", "2020-05-05 18:46:48.135371"], ["updated_at", "2020-05-05 18:46:48.135371"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Amber Walsh"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$l4QemDJUic.hlM4YAoatFe4WdWDFtal24p.u50up5KxjSJXA00ZYu"], ["created_at", "2020-05-05 18:46:48.137772"], ["updated_at", "2020-05-05 18:46:48.137772"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Madelyn Crist"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$lSN23vTnlx37H4Ks80jRxeKL2PNxjOMoIKboL1KMw3tpMdWrt6Lpq"], ["created_at", "2020-05-05 18:46:48.140200"], ["updated_at", "2020-05-05 18:46:48.140200"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Minh Treutel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/pSq1lD8Ae7xRFRIdf4zbeZNjI32MdQ9I0ttc6XFGEhYWiEUueQPu"], ["created_at", "2020-05-05 18:46:48.143223"], ["updated_at", "2020-05-05 18:46:48.143223"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Macie Towne"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KcCNzitM2ecbQUWRcOeTGOs9tyL.fEXc4vFApxnbvCXMm.uGscLmC"], ["created_at", "2020-05-05 18:46:48.146390"], ["updated_at", "2020-05-05 18:46:48.146390"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Prince Konopelski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RhkmezY1zrSegi9.CZnHw.x.dXymtRb4h2X.hN2X6C3ynjTEoCuS6"], ["created_at", "2020-05-05 18:46:48.149254"], ["updated_at", "2020-05-05 18:46:48.149254"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:46:48 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.87ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:46:48 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Sheyla", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "email"=>"shey@mail.com"} +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sheyla"], ["email", "shey@mail.com"], ["password_digest", "$2a$04$gzbSRNgYrpidLVxtRGf1i.rJ4fN7yQC/O5Qw0yvTlxCWhvqFpXSAy"], ["created_at", "2020-05-05 18:46:48.159225"], ["updated_at", "2020-05-05 18:46:48.159225"], ["picture", "https://joeschmoe.io/api/v1/jolee"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.51ms) +Completed 201 Created in 9ms (Views: 0.9ms | ActiveRecord: 0.4ms | Allocations: 1714) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hilario Hudson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$peXx1mANT2NUGEvgCdIdReyoKyr2l9Xffg5wXHqz4aouWs0dhXmA."], ["created_at", "2020-05-05 18:46:48.177207"], ["updated_at", "2020-05-05 18:46:48.177207"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Anton Rau"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BMNvs2222hSSqOPVYaTige22eMWPROLua.UoOoGyH/5nmD5eIv4J6"], ["created_at", "2020-05-05 18:46:48.181157"], ["updated_at", "2020-05-05 18:46:48.181157"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dane MacGyver Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3l5GyP.Js82zN.CCQlY9r.vds/Umm.gVEXwd1gCGH..MdUy5aPFyC"], ["created_at", "2020-05-05 18:46:48.183850"], ["updated_at", "2020-05-05 18:46:48.183850"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Tad Schinner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1lRzGeqg68oGFm8fM0NgdOYRw3ZKuS1oLhE.968PZXc7e4O49hqwC"], ["created_at", "2020-05-05 18:46:48.186466"], ["updated_at", "2020-05-05 18:46:48.186466"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Craig D'Amore"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$U48UDWDEidveQHxBlvOnhuqylYo1R.38wyHr7LXx7tYvVAbSTz7bu"], ["created_at", "2020-05-05 18:46:48.188918"], ["updated_at", "2020-05-05 18:46:48.188918"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jody Maggio PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$skx5EteoBN2KSn3dpNRqa.aoO0rl75FZX/jAOMw3WHsD9G5/65LSG"], ["created_at", "2020-05-05 18:46:48.192981"], ["updated_at", "2020-05-05 18:46:48.192981"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Maurice MacGyver"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Wc5xbL88f/HsOkfZriZs6.JZWhlWNFKwqw.A/rPtWobHLCaWzi9kC"], ["created_at", "2020-05-05 18:46:48.196913"], ["updated_at", "2020-05-05 18:46:48.196913"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Ofelia Jacobi"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Go1FtWGSALMNSE.8faP9qu.NEbynUa67chdQfUmHsqtpMHWX/De4i"], ["created_at", "2020-05-05 18:46:48.199449"], ["updated_at", "2020-05-05 18:46:48.199449"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Basilia Sawayn Sr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$EdE9C5rFqSxmsn18bSIRcu0mYqQZtKo0vCWYmpGud5OEBq52Vzln2"], ["created_at", "2020-05-05 18:46:48.201872"], ["updated_at", "2020-05-05 18:46:48.201872"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Caterina VonRueden"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$z233dPswDfgSwXPIzsJD6.DdGZ3sQDaZxBKLwLc8XiffAViKAGXfK"], ["created_at", "2020-05-05 18:46:48.204459"], ["updated_at", "2020-05-05 18:46:48.204459"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:46:48 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.91ms) +Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:46:48 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Sheyla", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "email"=>"shey@mail.com"} +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sheyla"], ["email", "shey@mail.com"], ["password_digest", "$2a$04$UzxmKlWDYs9PwSENa0v5geZMfCzKZNxivak903RZtxICJuaGHOTfO"], ["created_at", "2020-05-05 18:46:48.215301"], ["updated_at", "2020-05-05 18:46:48.215301"], ["picture", "https://joeschmoe.io/api/v1/jia"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.48ms) +Completed 201 Created in 6ms (Views: 0.8ms | ActiveRecord: 0.3ms | Allocations: 1326) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Linn Leffler Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aNS2eqxwrRkBCFvdmKM35eShofVuG31oD.S7hhVEk/B1uEZ6//yhi"], ["created_at", "2020-05-05 18:46:48.230739"], ["updated_at", "2020-05-05 18:46:48.230739"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ronald McCullough"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$a3tA/hfl7kxh2TSGaLuBsefxi6uERXrGrH7BUxo15u6s1o.A2c3De"], ["created_at", "2020-05-05 18:46:48.234922"], ["updated_at", "2020-05-05 18:46:48.234922"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Wallace Blick"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HmKTNmyv6L1dGWT80tzk.evidiOb8esP2yBL1RkanhC.DDomx48Zy"], ["created_at", "2020-05-05 18:46:48.237473"], ["updated_at", "2020-05-05 18:46:48.237473"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kimbery Nicolas"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VpW/igtUuf2hMVe1uuLjVu6cpqmKVep3hDbUMgs5wTBqBiSjQGZN2"], ["created_at", "2020-05-05 18:46:48.239863"], ["updated_at", "2020-05-05 18:46:48.239863"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Evelia Reichel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KxJKVLzByqmJjCx41Xa.W.diYoloK91bwC.mXyxBnyzRsm199WgLa"], ["created_at", "2020-05-05 18:46:48.242705"], ["updated_at", "2020-05-05 18:46:48.242705"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Stephanie Crona"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$07Kvogmxe.sbhkHAPdQfduxXUXUoUrUivy3PQlpZS97fGbg09NT9m"], ["created_at", "2020-05-05 18:46:48.245516"], ["updated_at", "2020-05-05 18:46:48.245516"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Joette Lehner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Hk7Cx/rOOxOK7wHp/lvBDuZvbq88csA6dkNSU7CMha6eGNBYZkvzi"], ["created_at", "2020-05-05 18:46:48.247753"], ["updated_at", "2020-05-05 18:46:48.247753"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Evelin Rodriguez MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$etW42KpF1uU5Sn43xRK09eQ.CZULdzTBZ/VHEM1yds171k8y5t2va"], ["created_at", "2020-05-05 18:46:48.250757"], ["updated_at", "2020-05-05 18:46:48.250757"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Williams Ledner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$PCyvQ5hXftNPys5G.LMijeVxE5fa4JkRJcQi2n7OF1izSWC6SPBza"], ["created_at", "2020-05-05 18:46:48.254118"], ["updated_at", "2020-05-05 18:46:48.254118"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Allen Langworth IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$plq0CXJJQFKi2lozKRE3Au/jiU.q1S1U7y5HuEzh8QEt/bBZPzLmW"], ["created_at", "2020-05-05 18:46:48.257130"], ["updated_at", "2020-05-05 18:46:48.257130"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:46:48 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.97ms) +Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:46:48 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Foobar"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms) +Completed 401 Unauthorized in 19ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 1622) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rosia O'Kon DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$85oIHQz9FW/lkBS1OPAvieWN3lkHj17GK5xjRnRV1rx1ei8VMsc7K"], ["created_at", "2020-05-05 18:46:48.295690"], ["updated_at", "2020-05-05 18:46:48.295690"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Sasha Gorczany"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hyXKnnJCzGIWt6KjXsnmAuNHd5/JsJSNt3KL6m0Ezl0WXhbs9Ub1m"], ["created_at", "2020-05-05 18:46:48.299547"], ["updated_at", "2020-05-05 18:46:48.299547"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Charisse Dach"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GiOkR.mtOUJB4qsg58ApBOUoypy12X3zbKLyqPLMHsPjAabssmvNm"], ["created_at", "2020-05-05 18:46:48.302110"], ["updated_at", "2020-05-05 18:46:48.302110"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Flossie Reichel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$cpfweTWiG2eG0GnyxS9/2.o4P9p6R8gwSL1IYnlGhNK6d5O6DSfzC"], ["created_at", "2020-05-05 18:46:48.304861"], ["updated_at", "2020-05-05 18:46:48.304861"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Emmett Mayer Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5X4ILKHHo7TA5S4w341UjuXU9Mp5BkeOQep90wJHweQC8gW6KuF9a"], ["created_at", "2020-05-05 18:46:48.307404"], ["updated_at", "2020-05-05 18:46:48.307404"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Pedro Legros"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$qU2iHqQFbY4nDXWAhsycQ.Ki8koy9PfKVjidegRhPXNvspcXFCaby"], ["created_at", "2020-05-05 18:46:48.310533"], ["updated_at", "2020-05-05 18:46:48.310533"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rosendo Schuster"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2i6w2wpIMDW6.5NRrNWk8e4jtos4BVU2uzJmRIuFjKQhAbOyfS9qy"], ["created_at", "2020-05-05 18:46:48.314307"], ["updated_at", "2020-05-05 18:46:48.314307"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Agustin Hahn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xDYPTkAagPGUXcx88fK1pumE1yHgq6neObGOcFAYhepGCVNlqwaXm"], ["created_at", "2020-05-05 18:46:48.317337"], ["updated_at", "2020-05-05 18:46:48.317337"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Raphael Littel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0DZ7jZ9dysSs6Vz1OzzYf.h8WnGXUERNr0LqfoxkXths5wlyaggQa"], ["created_at", "2020-05-05 18:46:48.319874"], ["updated_at", "2020-05-05 18:46:48.319874"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lacy Rogahn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.FTiKsydBYM/qd0Rmgo13.j/AOlUUGwedll1ebZwzy2/l.5orpnJy"], ["created_at", "2020-05-05 18:46:48.322269"], ["updated_at", "2020-05-05 18:46:48.322269"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:46:48 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.67ms) +Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:46:48 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms) +Completed 401 Unauthorized in 3ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 1597) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (5.4ms) SELECT sqlite_version(*) +  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (209.7ms) DELETE FROM "meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.6ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (128.7ms) DELETE FROM "user_meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (199.7ms) DELETE FROM "user_meetings"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (104.3ms) DELETE FROM "meets"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (139.2ms) DELETE FROM "conversations"; +  (0.4ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.3ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (119.4ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (141.2ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.1ms) PRAGMA defer_foreign_keys = 0 +  (0.1ms) PRAGMA foreign_keys = 1 +  (0.3ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.4ms) begin transaction +  (0.3ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mark Ziemann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gROnECfTTqrw2pAhPuFnJ.D1xwCxwV01y3E3279Du4uGSV/bS5JFK"], ["created_at", "2020-05-05 18:49:46.461823"], ["updated_at", "2020-05-05 18:49:46.461823"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iure"], ["description", "Corrupti aut cupiditate culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:46.465528"], ["updated_at", "2020-05-05 18:49:46.465528"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea ut quis aut?"], ["description", "Eveniet ut tenetur dicta."], ["date", "2020-05-06 18:49:46.467332"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.479757"], ["updated_at", "2020-05-05 18:49:46.479757"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi in exercitationem amet?"], ["description", "Excepturi nostrum omnis illo."], ["date", "2020-05-06 18:49:46.481498"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.482441"], ["updated_at", "2020-05-05 18:49:46.482441"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit ut omnis possimus?"], ["description", "Nihil animi qui amet."], ["date", "2020-05-06 18:49:46.483819"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.484530"], ["updated_at", "2020-05-05 18:49:46.484530"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident quo enim aspernatur?"], ["description", "Omnis esse voluptate voluptas."], ["date", "2020-05-06 18:49:46.485656"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.486478"], ["updated_at", "2020-05-05 18:49:46.486478"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequuntur quam assumenda iure?"], ["description", "Rerum non sed nemo."], ["date", "2020-05-06 18:49:46.487792"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.489025"], ["updated_at", "2020-05-05 18:49:46.489025"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Possimus cupiditate occaecati nostrum?"], ["description", "Optio et qui dolor."], ["date", "2020-05-06 18:49:46.491387"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.492393"], ["updated_at", "2020-05-05 18:49:46.492393"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id laboriosam ut consequatur?"], ["description", "Est voluptatem asperiores quisquam."], ["date", "2020-05-06 18:49:46.493707"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.494398"], ["updated_at", "2020-05-05 18:49:46.494398"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed quos rerum libero?"], ["description", "Et quae veniam corporis."], ["date", "2020-05-06 18:49:46.495474"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.496167"], ["updated_at", "2020-05-05 18:49:46.496167"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias dolor sint est?"], ["description", "Aliquid maxime vitae fugit."], ["date", "2020-05-06 18:49:46.497352"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.498078"], ["updated_at", "2020-05-05 18:49:46.498078"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod molestiae ab est?"], ["description", "Laboriosam sequi inventore dignissimos."], ["date", "2020-05-06 18:49:46.499937"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.500820"], ["updated_at", "2020-05-05 18:49:46.500820"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis sapiente maxime rem?"], ["description", "Et reprehenderit minima ea."], ["date", "2020-05-06 18:49:46.502272"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.503047"], ["updated_at", "2020-05-05 18:49:46.503047"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis et veritatis ipsa?"], ["description", "Iure quis deleniti doloremque."], ["date", "2020-05-06 18:49:46.504619"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.505368"], ["updated_at", "2020-05-05 18:49:46.505368"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia aut voluptatem et?"], ["description", "Sed qui et officia."], ["date", "2020-05-06 18:49:46.507134"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.508278"], ["updated_at", "2020-05-05 18:49:46.508278"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Possimus exercitationem fugit omnis?"], ["description", "Dolor nemo veniam officia."], ["date", "2020-05-06 18:49:46.510267"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.511369"], ["updated_at", "2020-05-05 18:49:46.511369"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore maiores ut sit?"], ["description", "Modi quod consectetur nam."], ["date", "2020-05-06 18:49:46.512812"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.513882"], ["updated_at", "2020-05-05 18:49:46.513882"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur aliquid nulla nobis?"], ["description", "Sequi cum temporibus natus."], ["date", "2020-05-06 18:49:46.515066"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.515788"], ["updated_at", "2020-05-05 18:49:46.515788"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint molestiae id velit?"], ["description", "Ut velit est tenetur."], ["date", "2020-05-06 18:49:46.516944"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.517613"], ["updated_at", "2020-05-05 18:49:46.517613"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia ratione id atque?"], ["description", "Totam dolor velit qui."], ["date", "2020-05-06 18:49:46.519118"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.519967"], ["updated_at", "2020-05-05 18:49:46.519967"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis minus maiores neque?"], ["description", "Modi enim animi facere."], ["date", "2020-05-06 18:49:46.521257"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.522147"], ["updated_at", "2020-05-05 18:49:46.522147"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id est provident itaque?"], ["description", "Amet odit labore eos."], ["date", "2020-05-06 18:49:46.523991"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.525104"], ["updated_at", "2020-05-05 18:49:46.525104"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:49:46 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (7.92ms) +Completed 200 OK in 34ms (Views: 15.6ms | ActiveRecord: 0.5ms | Allocations: 8577) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jesus Leannon"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/EnEoXtljM6FQyR4xLJ7r.y4Lqs9qPNbOS1NaLm2voneZr5gkHwy6"], ["created_at", "2020-05-05 18:49:46.596180"], ["updated_at", "2020-05-05 18:49:46.596180"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repudiandae"], ["description", "Provident aut sunt voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:46.600526"], ["updated_at", "2020-05-05 18:49:46.600526"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas id cum minus?"], ["description", "Ad explicabo in quia."], ["date", "2020-05-06 18:49:46.602572"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.603647"], ["updated_at", "2020-05-05 18:49:46.603647"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non est consequatur non?"], ["description", "Qui aut explicabo eveniet."], ["date", "2020-05-06 18:49:46.605193"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.606014"], ["updated_at", "2020-05-05 18:49:46.606014"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et rerum ea explicabo?"], ["description", "Quis modi omnis sit."], ["date", "2020-05-06 18:49:46.608207"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.611191"], ["updated_at", "2020-05-05 18:49:46.611191"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque accusamus velit voluptatem?"], ["description", "Natus et molestiae laudantium."], ["date", "2020-05-06 18:49:46.613931"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.615250"], ["updated_at", "2020-05-05 18:49:46.615250"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod consequuntur nemo libero?"], ["description", "Molestiae officiis quae ea."], ["date", "2020-05-06 18:49:46.616950"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.617867"], ["updated_at", "2020-05-05 18:49:46.617867"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam quo laborum quis?"], ["description", "Dolore fugiat temporibus est."], ["date", "2020-05-06 18:49:46.619076"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.619810"], ["updated_at", "2020-05-05 18:49:46.619810"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae nostrum dolore omnis?"], ["description", "Est esse et eos."], ["date", "2020-05-06 18:49:46.621056"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.621802"], ["updated_at", "2020-05-05 18:49:46.621802"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid qui doloremque consequatur?"], ["description", "Veniam voluptatem tempora omnis."], ["date", "2020-05-06 18:49:46.623279"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.624072"], ["updated_at", "2020-05-05 18:49:46.624072"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta eius voluptas et?"], ["description", "Et veniam nam qui."], ["date", "2020-05-06 18:49:46.625254"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.625935"], ["updated_at", "2020-05-05 18:49:46.625935"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum asperiores natus et?"], ["description", "Id commodi reprehenderit labore."], ["date", "2020-05-06 18:49:46.627778"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.628814"], ["updated_at", "2020-05-05 18:49:46.628814"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem quos hic sapiente?"], ["description", "Dolorem optio voluptatem reiciendis."], ["date", "2020-05-06 18:49:46.630997"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.632004"], ["updated_at", "2020-05-05 18:49:46.632004"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempore rem nemo distinctio?"], ["description", "Vero et error et."], ["date", "2020-05-06 18:49:46.633329"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.634030"], ["updated_at", "2020-05-05 18:49:46.634030"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam quia sunt suscipit?"], ["description", "Enim aliquid qui voluptatem."], ["date", "2020-05-06 18:49:46.635209"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.635887"], ["updated_at", "2020-05-05 18:49:46.635887"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa aut voluptatem esse?"], ["description", "Placeat quod sapiente qui."], ["date", "2020-05-06 18:49:46.637070"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.637918"], ["updated_at", "2020-05-05 18:49:46.637918"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit iusto ea esse?"], ["description", "Quam culpa magnam tempore."], ["date", "2020-05-06 18:49:46.639422"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.641303"], ["updated_at", "2020-05-05 18:49:46.641303"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non eius et corrupti?"], ["description", "Aut qui et ex."], ["date", "2020-05-06 18:49:46.642817"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.643681"], ["updated_at", "2020-05-05 18:49:46.643681"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Hic et itaque animi?"], ["description", "Distinctio maxime et recusandae."], ["date", "2020-05-06 18:49:46.644921"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.645637"], ["updated_at", "2020-05-05 18:49:46.645637"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed porro omnis magni?"], ["description", "Qui sapiente explicabo aliquid."], ["date", "2020-05-06 18:49:46.646822"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.647510"], ["updated_at", "2020-05-05 18:49:46.647510"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi qui molestiae voluptatibus?"], ["description", "Quibusdam quia minus laboriosam."], ["date", "2020-05-06 18:49:46.648993"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.650745"], ["updated_at", "2020-05-05 18:49:46.650745"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab quia qui perspiciatis?"], ["description", "Voluptates dolores quod assumenda."], ["date", "2020-05-06 18:49:46.652765"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.653938"], ["updated_at", "2020-05-05 18:49:46.653938"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:49:46 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (9.2ms) +Completed 200 OK in 13ms (Views: 11.3ms | ActiveRecord: 0.4ms | Allocations: 5513) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Reinaldo Herzog"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oCIvQDNWeF7.P.I2qYjN5OcvCl4pjZ1iStzmJM.1g6DvuC5km2dnu"], ["created_at", "2020-05-05 18:49:46.685335"], ["updated_at", "2020-05-05 18:49:46.685335"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "velit"], ["description", "Eligendi error quam amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:46.690706"], ["updated_at", "2020-05-05 18:49:46.690706"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui rerum voluptas rem?"], ["description", "Aut quasi sequi aliquam."], ["date", "2020-05-06 18:49:46.693928"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.695149"], ["updated_at", "2020-05-05 18:49:46.695149"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti pariatur ut reprehenderit?"], ["description", "Cumque quia reprehenderit facere."], ["date", "2020-05-06 18:49:46.697014"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.698920"], ["updated_at", "2020-05-05 18:49:46.698920"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam deserunt quos aut?"], ["description", "Sequi modi alias in."], ["date", "2020-05-06 18:49:46.700688"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.701669"], ["updated_at", "2020-05-05 18:49:46.701669"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia quia sit quaerat?"], ["description", "Maiores odio qui est."], ["date", "2020-05-06 18:49:46.703119"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.704013"], ["updated_at", "2020-05-05 18:49:46.704013"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam harum voluptatem occaecati?"], ["description", "Distinctio facere ullam dignissimos."], ["date", "2020-05-06 18:49:46.705252"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.705957"], ["updated_at", "2020-05-05 18:49:46.705957"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et numquam exercitationem repellat?"], ["description", "Sit ex repudiandae aut."], ["date", "2020-05-06 18:49:46.707193"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.708495"], ["updated_at", "2020-05-05 18:49:46.708495"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est ut sunt ullam?"], ["description", "Non quam pariatur provident."], ["date", "2020-05-06 18:49:46.711166"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.712533"], ["updated_at", "2020-05-05 18:49:46.712533"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo tempora officiis aperiam?"], ["description", "Est beatae eveniet non."], ["date", "2020-05-06 18:49:46.713909"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.714667"], ["updated_at", "2020-05-05 18:49:46.714667"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum dolorem delectus officia?"], ["description", "Totam quasi eos nulla."], ["date", "2020-05-06 18:49:46.715925"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.716659"], ["updated_at", "2020-05-05 18:49:46.716659"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis nobis voluptatem harum?"], ["description", "Libero repudiandae facere nihil."], ["date", "2020-05-06 18:49:46.718381"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.719201"], ["updated_at", "2020-05-05 18:49:46.719201"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Debitis dolorem quas est?"], ["description", "Sit non nobis autem."], ["date", "2020-05-06 18:49:46.720456"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.721178"], ["updated_at", "2020-05-05 18:49:46.721178"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui ea veniam eaque?"], ["description", "Quis repellendus maxime laudantium."], ["date", "2020-05-06 18:49:46.722812"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.724199"], ["updated_at", "2020-05-05 18:49:46.724199"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum possimus consequatur et?"], ["description", "Ipsa ex distinctio dolores."], ["date", "2020-05-06 18:49:46.725623"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.726415"], ["updated_at", "2020-05-05 18:49:46.726415"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui quae mollitia eum?"], ["description", "At sunt et asperiores."], ["date", "2020-05-06 18:49:46.727580"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.728339"], ["updated_at", "2020-05-05 18:49:46.728339"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est molestiae libero distinctio?"], ["description", "Quae asperiores quia nemo."], ["date", "2020-05-06 18:49:46.730575"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.731988"], ["updated_at", "2020-05-05 18:49:46.731988"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.3ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore voluptas sit excepturi?"], ["description", "Delectus quibusdam architecto autem."], ["date", "2020-05-06 18:49:46.733550"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.734534"], ["updated_at", "2020-05-05 18:49:46.734534"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est dolorum omnis veritatis?"], ["description", "Id nulla excepturi velit."], ["date", "2020-05-06 18:49:46.735780"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.736580"], ["updated_at", "2020-05-05 18:49:46.736580"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid est fuga dolor?"], ["description", "Facere et consectetur debitis."], ["date", "2020-05-06 18:49:46.737863"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.738621"], ["updated_at", "2020-05-05 18:49:46.738621"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Temporibus optio minima maxime?"], ["description", "Alias molestiae nulla repellat."], ["date", "2020-05-06 18:49:46.739727"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.740696"], ["updated_at", "2020-05-05 18:49:46.740696"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae omnis ea ut?"], ["description", "Qui quia rerum voluptatem."], ["date", "2020-05-06 18:49:46.742549"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.743527"], ["updated_at", "2020-05-05 18:49:46.743527"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:49:46 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 404 Not Found in 6ms (Views: 5.6ms | ActiveRecord: 0.1ms | Allocations: 865) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (20.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Juli Lynch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0NHFDOs3oiJep7JZNLxQLOoYLHzhyaWe0YParvbFYCzIVthikFTR2"], ["created_at", "2020-05-05 18:49:46.778467"], ["updated_at", "2020-05-05 18:49:46.778467"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Commodi veniam officia harum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:46.781448"], ["updated_at", "2020-05-05 18:49:46.781448"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium et occaecati omnis?"], ["description", "Harum debitis temporibus tempora."], ["date", "2020-05-06 18:49:46.783101"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.784037"], ["updated_at", "2020-05-05 18:49:46.784037"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni in autem ipsam?"], ["description", "Consectetur veritatis ut dignissimos."], ["date", "2020-05-06 18:49:46.785419"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.786235"], ["updated_at", "2020-05-05 18:49:46.786235"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint reprehenderit asperiores vel?"], ["description", "Corrupti consectetur ut vero."], ["date", "2020-05-06 18:49:46.787538"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.788416"], ["updated_at", "2020-05-05 18:49:46.788416"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi dicta delectus ut?"], ["description", "Molestiae cumque tempora dicta."], ["date", "2020-05-06 18:49:46.789808"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.792544"], ["updated_at", "2020-05-05 18:49:46.792544"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut atque voluptate ipsum?"], ["description", "Quasi quia nisi a."], ["date", "2020-05-06 18:49:46.795061"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.796326"], ["updated_at", "2020-05-05 18:49:46.796326"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae cupiditate cumque unde?"], ["description", "Sint similique quisquam ut."], ["date", "2020-05-06 18:49:46.797866"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.798876"], ["updated_at", "2020-05-05 18:49:46.798876"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laudantium nesciunt labore accusamus?"], ["description", "In voluptatem sed tenetur."], ["date", "2020-05-06 18:49:46.800268"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.801050"], ["updated_at", "2020-05-05 18:49:46.801050"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis neque beatae autem?"], ["description", "Deleniti nemo omnis dolores."], ["date", "2020-05-06 18:49:46.802323"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.803082"], ["updated_at", "2020-05-05 18:49:46.803082"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas magni vero voluptatibus?"], ["description", "Consequatur consequuntur ex asperiores."], ["date", "2020-05-06 18:49:46.804301"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.805002"], ["updated_at", "2020-05-05 18:49:46.805002"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates sequi sed accusamus?"], ["description", "Quibusdam possimus rerum architecto."], ["date", "2020-05-06 18:49:46.807592"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.808597"], ["updated_at", "2020-05-05 18:49:46.808597"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi facilis nihil quasi?"], ["description", "Quae molestiae aut autem."], ["date", "2020-05-06 18:49:46.810694"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.812566"], ["updated_at", "2020-05-05 18:49:46.812566"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugiat quas quo consequuntur?"], ["description", "Consequuntur nam repellendus id."], ["date", "2020-05-06 18:49:46.814205"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.815088"], ["updated_at", "2020-05-05 18:49:46.815088"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus est explicabo rerum?"], ["description", "Maiores deleniti ea voluptate."], ["date", "2020-05-06 18:49:46.816371"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.817077"], ["updated_at", "2020-05-05 18:49:46.817077"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut est deserunt non?"], ["description", "Ratione reiciendis aut nam."], ["date", "2020-05-06 18:49:46.818353"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.819047"], ["updated_at", "2020-05-05 18:49:46.819047"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In iste et molestiae?"], ["description", "Quis perspiciatis quia et."], ["date", "2020-05-06 18:49:46.820326"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.821015"], ["updated_at", "2020-05-05 18:49:46.821015"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta cupiditate perferendis eum?"], ["description", "Amet consequatur autem provident."], ["date", "2020-05-06 18:49:46.822306"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.823225"], ["updated_at", "2020-05-05 18:49:46.823225"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi ea adipisci quo?"], ["description", "Aut accusantium minima accusamus."], ["date", "2020-05-06 18:49:46.825276"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.826369"], ["updated_at", "2020-05-05 18:49:46.826369"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est debitis rerum qui?"], ["description", "Hic cum quos harum."], ["date", "2020-05-06 18:49:46.827651"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.828367"], ["updated_at", "2020-05-05 18:49:46.828367"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id nihil facilis quia?"], ["description", "Ab earum vitae animi."], ["date", "2020-05-06 18:49:46.829695"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.831110"], ["updated_at", "2020-05-05 18:49:46.831110"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui repudiandae minima nisi?"], ["description", "Sed in ut consequatur."], ["date", "2020-05-06 18:49:46.832726"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.833593"], ["updated_at", "2020-05-05 18:49:46.833593"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:49:46 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Charlie Dietrich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QzRKsu5vm6aD4W0iYMGXYO0Ac.pmJOKZvuPcmuHPzSELBNktzdwkK"], ["created_at", "2020-05-05 18:49:46.853293"], ["updated_at", "2020-05-05 18:49:46.853293"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Placeat officia nulla possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:46.857757"], ["updated_at", "2020-05-05 18:49:46.857757"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem voluptas est id?"], ["description", "In et nihil suscipit."], ["date", "2020-05-06 18:49:46.859728"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.860688"], ["updated_at", "2020-05-05 18:49:46.860688"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime sunt est adipisci?"], ["description", "Sequi quia consectetur corporis."], ["date", "2020-05-06 18:49:46.862098"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.862850"], ["updated_at", "2020-05-05 18:49:46.862850"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem sit quod et?"], ["description", "Saepe ipsum sapiente odio."], ["date", "2020-05-06 18:49:46.864119"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.864822"], ["updated_at", "2020-05-05 18:49:46.864822"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum voluptatem labore ab?"], ["description", "Neque similique molestiae cum."], ["date", "2020-05-06 18:49:46.865927"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.866620"], ["updated_at", "2020-05-05 18:49:46.866620"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam itaque nulla ut?"], ["description", "Assumenda at occaecati qui."], ["date", "2020-05-06 18:49:46.867769"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.868449"], ["updated_at", "2020-05-05 18:49:46.868449"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque cupiditate autem quaerat?"], ["description", "Ab aperiam porro quisquam."], ["date", "2020-05-06 18:49:46.869589"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.871147"], ["updated_at", "2020-05-05 18:49:46.871147"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore pariatur sed mollitia?"], ["description", "Possimus quo dolore nemo."], ["date", "2020-05-06 18:49:46.874748"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.876523"], ["updated_at", "2020-05-05 18:49:46.876523"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero optio veniam sed?"], ["description", "Nemo qui ipsam aut."], ["date", "2020-05-06 18:49:46.878126"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.879004"], ["updated_at", "2020-05-05 18:49:46.879004"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id aut quaerat molestiae?"], ["description", "Qui pariatur dolor vero."], ["date", "2020-05-06 18:49:46.880242"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.881126"], ["updated_at", "2020-05-05 18:49:46.881126"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi blanditiis perferendis sint?"], ["description", "Aut commodi qui molestiae."], ["date", "2020-05-06 18:49:46.883218"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.884097"], ["updated_at", "2020-05-05 18:49:46.884097"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque aut error ea?"], ["description", "Aut perspiciatis numquam qui."], ["date", "2020-05-06 18:49:46.885397"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.886159"], ["updated_at", "2020-05-05 18:49:46.886159"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem exercitationem cumque veritatis?"], ["description", "Quidem aliquam fuga ipsa."], ["date", "2020-05-06 18:49:46.887297"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.887977"], ["updated_at", "2020-05-05 18:49:46.887977"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora enim doloribus dolores?"], ["description", "Nobis praesentium quia voluptatem."], ["date", "2020-05-06 18:49:46.889160"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.890091"], ["updated_at", "2020-05-05 18:49:46.890091"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo delectus qui illo?"], ["description", "Rerum voluptates odit reiciendis."], ["date", "2020-05-06 18:49:46.893374"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.894458"], ["updated_at", "2020-05-05 18:49:46.894458"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste perspiciatis quia reprehenderit?"], ["description", "Non itaque perspiciatis omnis."], ["date", "2020-05-06 18:49:46.895855"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.896617"], ["updated_at", "2020-05-05 18:49:46.896617"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit eos unde eveniet?"], ["description", "Et quo architecto delectus."], ["date", "2020-05-06 18:49:46.897867"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.898595"], ["updated_at", "2020-05-05 18:49:46.898595"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam id blanditiis itaque?"], ["description", "Rerum explicabo autem et."], ["date", "2020-05-06 18:49:46.899777"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.900472"], ["updated_at", "2020-05-05 18:49:46.900472"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere nemo quod deleniti?"], ["description", "Quod enim corrupti voluptas."], ["date", "2020-05-06 18:49:46.902066"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.902927"], ["updated_at", "2020-05-05 18:49:46.902927"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequuntur totam incidunt omnis?"], ["description", "Ut ea ipsam occaecati."], ["date", "2020-05-06 18:49:46.904180"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.904879"], ["updated_at", "2020-05-05 18:49:46.904879"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem sint repellendus ut?"], ["description", "Non est ut atque."], ["date", "2020-05-06 18:49:46.906084"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.907642"], ["updated_at", "2020-05-05 18:49:46.907642"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:49:46 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.75ms) +Completed 200 OK in 4ms (Views: 1.2ms | ActiveRecord: 0.5ms | Allocations: 1085) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Qiana Jacobson IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xAGZYKBTLaYDhtcgXcM83e.lOnuMuEiA8y4UnHc47rLgWISYix596"], ["created_at", "2020-05-05 18:49:46.926297"], ["updated_at", "2020-05-05 18:49:46.926297"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nemo"], ["description", "Et quos omnis dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:46.929329"], ["updated_at", "2020-05-05 18:49:46.929329"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non consectetur nulla facilis?"], ["description", "Deleniti accusantium placeat quis."], ["date", "2020-05-06 18:49:46.931927"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.933793"], ["updated_at", "2020-05-05 18:49:46.933793"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id est iure temporibus?"], ["description", "Quis neque recusandae qui."], ["date", "2020-05-06 18:49:46.937579"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.938880"], ["updated_at", "2020-05-05 18:49:46.938880"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis labore rerum soluta?"], ["description", "Ut aut veniam eum."], ["date", "2020-05-06 18:49:46.940750"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.941818"], ["updated_at", "2020-05-05 18:49:46.941818"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Similique aliquid soluta inventore?"], ["description", "Nobis itaque ea aut."], ["date", "2020-05-06 18:49:46.943341"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.944192"], ["updated_at", "2020-05-05 18:49:46.944192"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto et blanditiis dicta?"], ["description", "Ab sed itaque odio."], ["date", "2020-05-06 18:49:46.945417"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.946157"], ["updated_at", "2020-05-05 18:49:46.946157"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia perspiciatis quis tempore?"], ["description", "Dolorum consectetur fugit nam."], ["date", "2020-05-06 18:49:46.947349"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.948190"], ["updated_at", "2020-05-05 18:49:46.948190"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum est in quia?"], ["description", "Et illum qui magnam."], ["date", "2020-05-06 18:49:46.949423"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.950185"], ["updated_at", "2020-05-05 18:49:46.950185"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem nihil ipsam natus?"], ["description", "Nobis totam aut quisquam."], ["date", "2020-05-06 18:49:46.952420"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.953680"], ["updated_at", "2020-05-05 18:49:46.953680"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda et beatae et?"], ["description", "Maiores voluptatem amet voluptates."], ["date", "2020-05-06 18:49:46.955907"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.957365"], ["updated_at", "2020-05-05 18:49:46.957365"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore iusto voluptatum aut?"], ["description", "Nulla ab et reiciendis."], ["date", "2020-05-06 18:49:46.960241"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.961173"], ["updated_at", "2020-05-05 18:49:46.961173"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere optio quo consequuntur?"], ["description", "Minima qui quia pariatur."], ["date", "2020-05-06 18:49:46.962749"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.963550"], ["updated_at", "2020-05-05 18:49:46.963550"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui dolorem veniam atque?"], ["description", "In sunt iusto ullam."], ["date", "2020-05-06 18:49:46.964882"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.965619"], ["updated_at", "2020-05-05 18:49:46.965619"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum ut illo maxime?"], ["description", "Impedit unde deserunt rerum."], ["date", "2020-05-06 18:49:46.966895"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.967667"], ["updated_at", "2020-05-05 18:49:46.967667"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Atque et optio cum?"], ["description", "Non consequatur distinctio facilis."], ["date", "2020-05-06 18:49:46.968840"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.969518"], ["updated_at", "2020-05-05 18:49:46.969518"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et nihil pariatur occaecati?"], ["description", "Minima fugit dolorem sed."], ["date", "2020-05-06 18:49:46.971241"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.972650"], ["updated_at", "2020-05-05 18:49:46.972650"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur dignissimos nesciunt numquam?"], ["description", "Fugiat dolorem eum quisquam."], ["date", "2020-05-06 18:49:46.974931"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.976163"], ["updated_at", "2020-05-05 18:49:46.976163"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus in similique beatae?"], ["description", "Id sapiente culpa deleniti."], ["date", "2020-05-06 18:49:46.977854"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.978774"], ["updated_at", "2020-05-05 18:49:46.978774"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut repudiandae dignissimos dolorum?"], ["description", "In sed ipsam reprehenderit."], ["date", "2020-05-06 18:49:46.980221"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.981027"], ["updated_at", "2020-05-05 18:49:46.981027"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio delectus dolorem ipsam?"], ["description", "Eveniet aliquid est commodi."], ["date", "2020-05-06 18:49:46.982622"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.983515"], ["updated_at", "2020-05-05 18:49:46.983515"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque deserunt est sequi?"], ["description", "Expedita et inventore quisquam."], ["date", "2020-05-06 18:49:46.984825"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:46.985569"], ["updated_at", "2020-05-05 18:49:46.985569"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:49:46 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (1.11ms) +Completed 200 OK in 4ms (Views: 2.0ms | ActiveRecord: 0.2ms | Allocations: 1058) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.9ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Suzy Orn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CH6oQjvFHo/WhlPp.50B..pAoXceyReJdmm3e0aOaN13suSfsURpi"], ["created_at", "2020-05-05 18:49:47.003590"], ["updated_at", "2020-05-05 18:49:47.003590"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "provident"], ["description", "Hic est deleniti eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.008823"], ["updated_at", "2020-05-05 18:49:47.008823"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta quam in corrupti?"], ["description", "Placeat sed velit dolor."], ["date", "2020-05-06 18:49:47.010639"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.012632"], ["updated_at", "2020-05-05 18:49:47.012632"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi voluptatem sit tempore?"], ["description", "Qui odio cum quisquam."], ["date", "2020-05-06 18:49:47.014522"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.016425"], ["updated_at", "2020-05-05 18:49:47.016425"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum et sint quos?"], ["description", "Dolore dolor commodi repellendus."], ["date", "2020-05-06 18:49:47.018174"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.019082"], ["updated_at", "2020-05-05 18:49:47.019082"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse omnis quis a?"], ["description", "Est fugit iure laboriosam."], ["date", "2020-05-06 18:49:47.020443"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.021297"], ["updated_at", "2020-05-05 18:49:47.021297"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odio fugit ab nihil?"], ["description", "Animi perferendis omnis pariatur."], ["date", "2020-05-06 18:49:47.022752"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.024133"], ["updated_at", "2020-05-05 18:49:47.024133"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi accusamus quo vitae?"], ["description", "Et harum esse quam."], ["date", "2020-05-06 18:49:47.025480"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.026257"], ["updated_at", "2020-05-05 18:49:47.026257"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem maiores sed blanditiis?"], ["description", "Vitae tempora sunt vero."], ["date", "2020-05-06 18:49:47.027422"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.028100"], ["updated_at", "2020-05-05 18:49:47.028100"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos et voluptatibus soluta?"], ["description", "Natus nihil deleniti necessitatibus."], ["date", "2020-05-06 18:49:47.029333"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.030120"], ["updated_at", "2020-05-05 18:49:47.030120"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et aut esse perspiciatis?"], ["description", "Iure quia sint voluptatum."], ["date", "2020-05-06 18:49:47.031654"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.033198"], ["updated_at", "2020-05-05 18:49:47.033198"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime eos dolorum vitae?"], ["description", "Qui ullam nesciunt odio."], ["date", "2020-05-06 18:49:47.035466"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.036467"], ["updated_at", "2020-05-05 18:49:47.036467"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Accusantium aut ipsum corrupti?"], ["description", "Tenetur exercitationem recusandae mollitia."], ["date", "2020-05-06 18:49:47.037859"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.038739"], ["updated_at", "2020-05-05 18:49:47.038739"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi velit praesentium culpa?"], ["description", "Alias incidunt molestiae voluptatum."], ["date", "2020-05-06 18:49:47.041184"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.042428"], ["updated_at", "2020-05-05 18:49:47.042428"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt adipisci quasi doloremque?"], ["description", "Voluptatum magni quo velit."], ["date", "2020-05-06 18:49:47.045326"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.047377"], ["updated_at", "2020-05-05 18:49:47.047377"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius aut consequuntur culpa?"], ["description", "Corrupti quos voluptatibus facilis."], ["date", "2020-05-06 18:49:47.050051"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.051069"], ["updated_at", "2020-05-05 18:49:47.051069"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id sint et dolor?"], ["description", "Assumenda dolor nihil labore."], ["date", "2020-05-06 18:49:47.053980"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.056004"], ["updated_at", "2020-05-05 18:49:47.056004"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis esse quasi voluptas?"], ["description", "Qui repellat quidem iusto."], ["date", "2020-05-06 18:49:47.058421"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.059659"], ["updated_at", "2020-05-05 18:49:47.059659"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero aut explicabo quibusdam?"], ["description", "Et optio enim rem."], ["date", "2020-05-06 18:49:47.061593"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.062821"], ["updated_at", "2020-05-05 18:49:47.062821"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero quidem voluptatem ut?"], ["description", "Incidunt officiis sapiente et."], ["date", "2020-05-06 18:49:47.065178"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.067178"], ["updated_at", "2020-05-05 18:49:47.067178"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus perferendis iure omnis?"], ["description", "Autem quo mollitia numquam."], ["date", "2020-05-06 18:49:47.070288"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.071983"], ["updated_at", "2020-05-05 18:49:47.071983"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos in dicta adipisci?"], ["description", "Est sapiente nam saepe."], ["date", "2020-05-06 18:49:47.075519"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.077531"], ["updated_at", "2020-05-05 18:49:47.077531"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:49:47 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.2ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 404 Not Found in 5ms (Views: 0.6ms | ActiveRecord: 0.6ms | Allocations: 884) +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (6.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shaquita Zboncak"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$okxm4VwP8TWt7BeK6Caa4.R6PNzq019TDFdecC2y5C7p2AhIl8Q8G"], ["created_at", "2020-05-05 18:49:47.102654"], ["updated_at", "2020-05-05 18:49:47.102654"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Ea culpa et beatae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.111941"], ["updated_at", "2020-05-05 18:49:47.111941"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt et debitis iure?"], ["description", "Quo assumenda exercitationem tenetur."], ["date", "2020-05-06 18:49:47.115058"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.116333"], ["updated_at", "2020-05-05 18:49:47.116333"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Necessitatibus voluptas velit a?"], ["description", "Quia explicabo autem quas."], ["date", "2020-05-06 18:49:47.118385"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.119937"], ["updated_at", "2020-05-05 18:49:47.119937"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime eum modi provident?"], ["description", "Delectus non quas odio."], ["date", "2020-05-06 18:49:47.146199"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.147380"], ["updated_at", "2020-05-05 18:49:47.147380"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At eum quis nisi?"], ["description", "Omnis magni dolorem deserunt."], ["date", "2020-05-06 18:49:47.148836"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.149520"], ["updated_at", "2020-05-05 18:49:47.149520"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem soluta perferendis aperiam?"], ["description", "Suscipit nihil qui ea."], ["date", "2020-05-06 18:49:47.150623"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.151777"], ["updated_at", "2020-05-05 18:49:47.151777"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente ratione eum eum?"], ["description", "Et ut porro est."], ["date", "2020-05-06 18:49:47.154218"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.155386"], ["updated_at", "2020-05-05 18:49:47.155386"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reiciendis distinctio corporis id?"], ["description", "Non occaecati possimus saepe."], ["date", "2020-05-06 18:49:47.157826"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.159277"], ["updated_at", "2020-05-05 18:49:47.159277"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt aperiam necessitatibus consequatur?"], ["description", "Eligendi esse quas nostrum."], ["date", "2020-05-06 18:49:47.160730"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.161552"], ["updated_at", "2020-05-05 18:49:47.161552"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non vero soluta quia?"], ["description", "Pariatur fuga inventore omnis."], ["date", "2020-05-06 18:49:47.162778"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.163484"], ["updated_at", "2020-05-05 18:49:47.163484"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia sint et et?"], ["description", "Assumenda qui beatae at."], ["date", "2020-05-06 18:49:47.165465"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.166322"], ["updated_at", "2020-05-05 18:49:47.166322"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi quis placeat odit?"], ["description", "Sunt qui nihil molestias."], ["date", "2020-05-06 18:49:47.167567"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.168289"], ["updated_at", "2020-05-05 18:49:47.168289"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad nihil et laborum?"], ["description", "Incidunt laudantium magni sint."], ["date", "2020-05-06 18:49:47.169534"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.170276"], ["updated_at", "2020-05-05 18:49:47.170276"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut dolores omnis repellat?"], ["description", "Incidunt sit vero ullam."], ["date", "2020-05-06 18:49:47.171787"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.173891"], ["updated_at", "2020-05-05 18:49:47.173891"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Possimus dolorum et sunt?"], ["description", "Aut minus assumenda architecto."], ["date", "2020-05-06 18:49:47.175985"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.176889"], ["updated_at", "2020-05-05 18:49:47.176889"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id nostrum et laborum?"], ["description", "Enim natus consequatur aliquam."], ["date", "2020-05-06 18:49:47.178113"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.178807"], ["updated_at", "2020-05-05 18:49:47.178807"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam asperiores totam iusto?"], ["description", "Corporis id qui delectus."], ["date", "2020-05-06 18:49:47.180087"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.180809"], ["updated_at", "2020-05-05 18:49:47.180809"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas necessitatibus eos voluptatem?"], ["description", "Aliquam sit quos neque."], ["date", "2020-05-06 18:49:47.182077"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.182862"], ["updated_at", "2020-05-05 18:49:47.182862"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel beatae error ex?"], ["description", "Vel id inventore eligendi."], ["date", "2020-05-06 18:49:47.184138"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.184855"], ["updated_at", "2020-05-05 18:49:47.184855"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto sed ea odit?"], ["description", "Qui culpa provident autem."], ["date", "2020-05-06 18:49:47.186031"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.186711"], ["updated_at", "2020-05-05 18:49:47.186711"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum corporis sequi sit?"], ["description", "Et aperiam dolor fuga."], ["date", "2020-05-06 18:49:47.187890"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.188581"], ["updated_at", "2020-05-05 18:49:47.188581"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:49:47 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 404 Not Found in 3ms (Views: 0.5ms | ActiveRecord: 0.3ms | Allocations: 867) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (10.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Desire Schowalter Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LFP6ZnVXJXKHCpteUg20FeyQ6tuzYi7uVcGzBGc0bdOnnjKmwWq.."], ["created_at", "2020-05-05 18:49:47.205687"], ["updated_at", "2020-05-05 18:49:47.205687"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Sunt magni omnis et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.218661"], ["updated_at", "2020-05-05 18:49:47.218661"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum voluptates qui omnis?"], ["description", "Fugiat eos quas iure."], ["date", "2020-05-06 18:49:47.220399"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.221348"], ["updated_at", "2020-05-05 18:49:47.221348"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae deserunt ipsam eveniet?"], ["description", "Architecto iusto labore molestiae."], ["date", "2020-05-06 18:49:47.222868"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.223978"], ["updated_at", "2020-05-05 18:49:47.223978"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo nihil aut rerum?"], ["description", "Autem consequatur et consequuntur."], ["date", "2020-05-06 18:49:47.225665"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.226531"], ["updated_at", "2020-05-05 18:49:47.226531"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut repellendus molestiae quibusdam?"], ["description", "Repellendus temporibus quae similique."], ["date", "2020-05-06 18:49:47.227659"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.228450"], ["updated_at", "2020-05-05 18:49:47.228450"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatum quia maiores voluptas?"], ["description", "Aliquam minus eos optio."], ["date", "2020-05-06 18:49:47.229535"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.230354"], ["updated_at", "2020-05-05 18:49:47.230354"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed quo illo voluptatibus?"], ["description", "Velit eum sit provident."], ["date", "2020-05-06 18:49:47.231914"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.233663"], ["updated_at", "2020-05-05 18:49:47.233663"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime vero quia consectetur?"], ["description", "Nam vero ipsa dicta."], ["date", "2020-05-06 18:49:47.235988"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.237771"], ["updated_at", "2020-05-05 18:49:47.237771"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor quaerat aut magni?"], ["description", "Delectus aut mollitia quia."], ["date", "2020-05-06 18:49:47.239627"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.241194"], ["updated_at", "2020-05-05 18:49:47.241194"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui voluptatum dolorem deleniti?"], ["description", "In ipsam quos eligendi."], ["date", "2020-05-06 18:49:47.242768"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.243660"], ["updated_at", "2020-05-05 18:49:47.243660"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem praesentium neque excepturi?"], ["description", "Ut cum sunt est."], ["date", "2020-05-06 18:49:47.245558"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.246398"], ["updated_at", "2020-05-05 18:49:47.246398"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea unde quidem qui?"], ["description", "Quo soluta minima distinctio."], ["date", "2020-05-06 18:49:47.247693"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.248397"], ["updated_at", "2020-05-05 18:49:47.248397"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda doloremque totam deleniti?"], ["description", "Illo dolores possimus rerum."], ["date", "2020-05-06 18:49:47.249511"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.250173"], ["updated_at", "2020-05-05 18:49:47.250173"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore debitis perferendis minima?"], ["description", "Est numquam enim perspiciatis."], ["date", "2020-05-06 18:49:47.251398"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.252338"], ["updated_at", "2020-05-05 18:49:47.252338"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo laboriosam officiis fugit?"], ["description", "Et hic ducimus vero."], ["date", "2020-05-06 18:49:47.254824"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.255833"], ["updated_at", "2020-05-05 18:49:47.255833"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Inventore saepe totam vero?"], ["description", "Tenetur ut eveniet ut."], ["date", "2020-05-06 18:49:47.257840"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.258811"], ["updated_at", "2020-05-05 18:49:47.258811"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus minus tempora eligendi?"], ["description", "Sed repudiandae distinctio cum."], ["date", "2020-05-06 18:49:47.260175"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.260895"], ["updated_at", "2020-05-05 18:49:47.260895"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint omnis reiciendis delectus?"], ["description", "Possimus provident reiciendis quia."], ["date", "2020-05-06 18:49:47.262159"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.262942"], ["updated_at", "2020-05-05 18:49:47.262942"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione cumque sit aspernatur?"], ["description", "Laborum sed at iusto."], ["date", "2020-05-06 18:49:47.264175"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.264896"], ["updated_at", "2020-05-05 18:49:47.264896"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia est optio sunt?"], ["description", "Ea maiores quas fugiat."], ["date", "2020-05-06 18:49:47.266142"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.266862"], ["updated_at", "2020-05-05 18:49:47.266862"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita ut ex beatae?"], ["description", "Pariatur mollitia quia possimus."], ["date", "2020-05-06 18:49:47.268053"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.268830"], ["updated_at", "2020-05-05 18:49:47.268830"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:49:47 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"title"=>"Visit Narnia", "description"=>"false", "date"=>"2020-05-06 15:49:47 -0300", "link"=>"https://zoom.com/fakelink", "meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Visit Narnia"], ["description", "false"], ["date", "2020-05-06 18:49:47"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.288780"], ["updated_at", "2020-05-05 18:49:47.288780"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.69ms) +Completed 201 Created in 6ms (Views: 1.3ms | ActiveRecord: 0.5ms | Allocations: 1693) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Julian Pollich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.RM216a99agUXFpnjXP5F.So/ksLzwCQ28WKOqpNvlNGC4bu7XYw6"], ["created_at", "2020-05-05 18:49:47.303479"], ["updated_at", "2020-05-05 18:49:47.303479"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "reprehenderit"], ["description", "Odio quae rerum quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.306609"], ["updated_at", "2020-05-05 18:49:47.306609"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dicta similique aut ducimus?"], ["description", "Inventore et qui asperiores."], ["date", "2020-05-06 18:49:47.309321"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.310430"], ["updated_at", "2020-05-05 18:49:47.310430"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae occaecati doloremque rerum?"], ["description", "Qui dolore ad iste."], ["date", "2020-05-06 18:49:47.312038"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.313504"], ["updated_at", "2020-05-05 18:49:47.313504"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam deleniti dolorum eligendi?"], ["description", "Exercitationem eligendi magnam eveniet."], ["date", "2020-05-06 18:49:47.315564"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.317258"], ["updated_at", "2020-05-05 18:49:47.317258"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga incidunt error nisi?"], ["description", "Repellendus voluptas aut tempora."], ["date", "2020-05-06 18:49:47.319265"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.320207"], ["updated_at", "2020-05-05 18:49:47.320207"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores praesentium pariatur magni?"], ["description", "Ut libero odio ea."], ["date", "2020-05-06 18:49:47.321533"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.322289"], ["updated_at", "2020-05-05 18:49:47.322289"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad rerum autem eum?"], ["description", "Cum reprehenderit dolores consequatur."], ["date", "2020-05-06 18:49:47.323538"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.324233"], ["updated_at", "2020-05-05 18:49:47.324233"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia esse iusto similique?"], ["description", "Quasi qui beatae omnis."], ["date", "2020-05-06 18:49:47.325469"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.326147"], ["updated_at", "2020-05-05 18:49:47.326147"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis non eius id?"], ["description", "Qui ipsa accusamus rem."], ["date", "2020-05-06 18:49:47.327379"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.328094"], ["updated_at", "2020-05-05 18:49:47.328094"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aperiam modi nam odit?"], ["description", "Maiores autem et voluptas."], ["date", "2020-05-06 18:49:47.329267"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.329919"], ["updated_at", "2020-05-05 18:49:47.329919"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem iste vel ab?"], ["description", "Nulla qui beatae repellat."], ["date", "2020-05-06 18:49:47.331832"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.333046"], ["updated_at", "2020-05-05 18:49:47.333046"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptate aut occaecati atque?"], ["description", "Sed fugiat possimus commodi."], ["date", "2020-05-06 18:49:47.335138"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.336083"], ["updated_at", "2020-05-05 18:49:47.336083"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos id ex nulla?"], ["description", "Ut unde ex est."], ["date", "2020-05-06 18:49:47.337452"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.338303"], ["updated_at", "2020-05-05 18:49:47.338303"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad est non consectetur?"], ["description", "Maxime repellat nihil est."], ["date", "2020-05-06 18:49:47.340186"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.341315"], ["updated_at", "2020-05-05 18:49:47.341315"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum nihil non temporibus?"], ["description", "Nisi est tenetur deserunt."], ["date", "2020-05-06 18:49:47.342763"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.343507"], ["updated_at", "2020-05-05 18:49:47.343507"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae et quis nisi?"], ["description", "Consequatur totam perspiciatis ut."], ["date", "2020-05-06 18:49:47.344681"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.345358"], ["updated_at", "2020-05-05 18:49:47.345358"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum quisquam rerum pariatur?"], ["description", "In autem voluptatibus voluptates."], ["date", "2020-05-06 18:49:47.346574"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.347323"], ["updated_at", "2020-05-05 18:49:47.347323"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim et odit sunt?"], ["description", "Consequatur et eos non."], ["date", "2020-05-06 18:49:47.348594"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.349280"], ["updated_at", "2020-05-05 18:49:47.349280"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui non dolores et?"], ["description", "Accusantium molestiae quis natus."], ["date", "2020-05-06 18:49:47.350573"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.351267"], ["updated_at", "2020-05-05 18:49:47.351267"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est voluptates aut qui?"], ["description", "Deleniti assumenda et neque."], ["date", "2020-05-06 18:49:47.352947"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.354247"], ["updated_at", "2020-05-05 18:49:47.354247"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum quidem qui amet?"], ["description", "Minus autem recusandae reiciendis."], ["date", "2020-05-06 18:49:47.355838"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.356764"], ["updated_at", "2020-05-05 18:49:47.356764"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:49:47 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 422 Unprocessable Entity in 4ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 2727) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tyree Hegmann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pxs/dI3jJ65hy/JeLom/peKGNqGARCfJTRp7uN7eUclTqQ87iqPNu"], ["created_at", "2020-05-05 18:49:47.375301"], ["updated_at", "2020-05-05 18:49:47.375301"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "placeat"], ["description", "Necessitatibus quod rerum hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.379845"], ["updated_at", "2020-05-05 18:49:47.379845"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A quia voluptatem cupiditate?"], ["description", "Dolorum qui doloribus qui."], ["date", "2020-05-06 18:49:47.381999"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.383021"], ["updated_at", "2020-05-05 18:49:47.383021"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vitae a explicabo et?"], ["description", "Ut quae delectus labore."], ["date", "2020-05-06 18:49:47.384509"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.385244"], ["updated_at", "2020-05-05 18:49:47.385244"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore quis facilis nemo?"], ["description", "Mollitia sed accusantium iusto."], ["date", "2020-05-06 18:49:47.386452"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.387140"], ["updated_at", "2020-05-05 18:49:47.387140"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi harum sint consequatur?"], ["description", "Veritatis eligendi eum rerum."], ["date", "2020-05-06 18:49:47.388294"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.389100"], ["updated_at", "2020-05-05 18:49:47.389100"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia facilis esse deserunt?"], ["description", "Vero sed incidunt non."], ["date", "2020-05-06 18:49:47.391003"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.392003"], ["updated_at", "2020-05-05 18:49:47.392003"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non ea sed inventore?"], ["description", "Nostrum ipsum fuga dignissimos."], ["date", "2020-05-06 18:49:47.393653"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.395262"], ["updated_at", "2020-05-05 18:49:47.395262"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta quas iusto enim?"], ["description", "Nostrum natus sunt necessitatibus."], ["date", "2020-05-06 18:49:47.420701"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.421807"], ["updated_at", "2020-05-05 18:49:47.421807"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis voluptate consequatur aut?"], ["description", "Temporibus quo inventore omnis."], ["date", "2020-05-06 18:49:47.424783"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.426508"], ["updated_at", "2020-05-05 18:49:47.426508"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis aut ratione voluptas?"], ["description", "Expedita delectus nobis omnis."], ["date", "2020-05-06 18:49:47.429190"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.430796"], ["updated_at", "2020-05-05 18:49:47.430796"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae quam sit quidem?"], ["description", "Voluptatem dicta deserunt qui."], ["date", "2020-05-06 18:49:47.435615"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.437607"], ["updated_at", "2020-05-05 18:49:47.437607"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non culpa dolor ex?"], ["description", "Aliquam ut vel officia."], ["date", "2020-05-06 18:49:47.440953"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.443131"], ["updated_at", "2020-05-05 18:49:47.443131"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Doloremque iure ea porro?"], ["description", "Voluptatem accusantium natus dolor."], ["date", "2020-05-06 18:49:47.446241"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.447862"], ["updated_at", "2020-05-05 18:49:47.447862"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident tenetur pariatur fugit?"], ["description", "Reprehenderit aut eligendi voluptates."], ["date", "2020-05-06 18:49:47.450491"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.451948"], ["updated_at", "2020-05-05 18:49:47.451948"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut ullam vero unde?"], ["description", "Tenetur dolor quasi et."], ["date", "2020-05-06 18:49:47.453632"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.455142"], ["updated_at", "2020-05-05 18:49:47.455142"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed eligendi beatae qui?"], ["description", "Consequatur aut delectus tenetur."], ["date", "2020-05-06 18:49:47.457243"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.458293"], ["updated_at", "2020-05-05 18:49:47.458293"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In doloremque rerum praesentium?"], ["description", "Fuga quos ducimus deserunt."], ["date", "2020-05-06 18:49:47.459701"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.460410"], ["updated_at", "2020-05-05 18:49:47.460410"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit quasi ratione dolor?"], ["description", "Quam et eveniet debitis."], ["date", "2020-05-06 18:49:47.461785"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.462661"], ["updated_at", "2020-05-05 18:49:47.462661"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis enim labore distinctio?"], ["description", "Dicta maxime rem eius."], ["date", "2020-05-06 18:49:47.464077"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.465086"], ["updated_at", "2020-05-05 18:49:47.465086"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium est qui ut?"], ["description", "Consequatur omnis at quae."], ["date", "2020-05-06 18:49:47.466630"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.467547"], ["updated_at", "2020-05-05 18:49:47.467547"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi maxime at voluptatem?"], ["description", "Corrupti sunt laborum nihil."], ["date", "2020-05-06 18:49:47.468947"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.469717"], ["updated_at", "2020-05-05 18:49:47.469717"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:49:47 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 422 Unprocessable Entity in 6ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 2705) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tessa Lindgren"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3a9kWu.6Adv4a6d6BWLxjeZFsoSXRiLSlvqoaX01VH/raEEA82Hcq"], ["created_at", "2020-05-05 18:49:47.488201"], ["updated_at", "2020-05-05 18:49:47.488201"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "suscipit"], ["description", "Cum necessitatibus voluptas debitis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.491957"], ["updated_at", "2020-05-05 18:49:47.491957"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit fuga fugiat ea?"], ["description", "Ipsum eaque quasi sit."], ["date", "2020-05-06 18:49:47.493656"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.495212"], ["updated_at", "2020-05-05 18:49:47.495212"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quidem reiciendis non possimus?"], ["description", "Numquam et consectetur ex."], ["date", "2020-05-06 18:49:47.497161"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.498813"], ["updated_at", "2020-05-05 18:49:47.498813"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis et blanditiis rerum?"], ["description", "Aut consequatur quos et."], ["date", "2020-05-06 18:49:47.500532"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.501429"], ["updated_at", "2020-05-05 18:49:47.501429"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione provident voluptate placeat?"], ["description", "Officiis odit quo incidunt."], ["date", "2020-05-06 18:49:47.502889"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.503637"], ["updated_at", "2020-05-05 18:49:47.503637"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat distinctio eius minima?"], ["description", "Dolore labore tempore culpa."], ["date", "2020-05-06 18:49:47.504862"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.505563"], ["updated_at", "2020-05-05 18:49:47.505563"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias praesentium aut alias?"], ["description", "Vel temporibus voluptatem assumenda."], ["date", "2020-05-06 18:49:47.506796"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.507869"], ["updated_at", "2020-05-05 18:49:47.507869"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non consequatur officiis nam?"], ["description", "Nulla et dolorem et."], ["date", "2020-05-06 18:49:47.509432"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.510221"], ["updated_at", "2020-05-05 18:49:47.510221"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste est nobis laboriosam?"], ["description", "Perspiciatis exercitationem minima officiis."], ["date", "2020-05-06 18:49:47.511514"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.512445"], ["updated_at", "2020-05-05 18:49:47.512445"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et et aspernatur sit?"], ["description", "Nobis quis sapiente iste."], ["date", "2020-05-06 18:49:47.513960"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.515816"], ["updated_at", "2020-05-05 18:49:47.515816"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit nisi et quam?"], ["description", "Facilis pariatur dolore error."], ["date", "2020-05-06 18:49:47.518527"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.519954"], ["updated_at", "2020-05-05 18:49:47.519954"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non exercitationem amet est?"], ["description", "Omnis accusantium at eveniet."], ["date", "2020-05-06 18:49:47.522522"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.525693"], ["updated_at", "2020-05-05 18:49:47.525693"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas cupiditate facilis non?"], ["description", "Aperiam non et placeat."], ["date", "2020-05-06 18:49:47.527451"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.528304"], ["updated_at", "2020-05-05 18:49:47.528304"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et nisi numquam quia?"], ["description", "Nobis ut quidem exercitationem."], ["date", "2020-05-06 18:49:47.529508"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.530187"], ["updated_at", "2020-05-05 18:49:47.530187"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse at dolor dolores?"], ["description", "Dolorum ducimus labore repellat."], ["date", "2020-05-06 18:49:47.531437"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.532214"], ["updated_at", "2020-05-05 18:49:47.532214"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non quaerat sed porro?"], ["description", "Eum eveniet consequatur ipsam."], ["date", "2020-05-06 18:49:47.533526"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.534683"], ["updated_at", "2020-05-05 18:49:47.534683"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa qui provident laborum?"], ["description", "Quia nobis autem tempora."], ["date", "2020-05-06 18:49:47.536585"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.537583"], ["updated_at", "2020-05-05 18:49:47.537583"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut nam rerum consequatur?"], ["description", "Iusto amet consequatur vel."], ["date", "2020-05-06 18:49:47.538923"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.539832"], ["updated_at", "2020-05-05 18:49:47.539832"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor magnam mollitia ut?"], ["description", "Ut et vel in."], ["date", "2020-05-06 18:49:47.541891"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.542916"], ["updated_at", "2020-05-05 18:49:47.542916"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam odit voluptatum voluptatem?"], ["description", "At aut temporibus dolore."], ["date", "2020-05-06 18:49:47.544372"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.545176"], ["updated_at", "2020-05-05 18:49:47.545176"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error voluptatem sapiente qui?"], ["description", "Tempore qui quia repudiandae."], ["date", "2020-05-06 18:49:47.546379"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.547063"], ["updated_at", "2020-05-05 18:49:47.547063"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:49:47 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.2ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:49:47.551430"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1378) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Patrick Hyatt PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$saHheb72g0s6m5sZGMOCZuk5Gdvyagjfots3UjdTlFdWXHem1p1Qy"], ["created_at", "2020-05-05 18:49:47.564067"], ["updated_at", "2020-05-05 18:49:47.564067"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Et dolore rerum minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.567077"], ["updated_at", "2020-05-05 18:49:47.567077"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat enim sint natus?"], ["description", "Esse porro sed dignissimos."], ["date", "2020-05-06 18:49:47.568507"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.569447"], ["updated_at", "2020-05-05 18:49:47.569447"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione harum voluptatem voluptas?"], ["description", "Et possimus natus labore."], ["date", "2020-05-06 18:49:47.571067"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.571884"], ["updated_at", "2020-05-05 18:49:47.571884"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui aut ea assumenda?"], ["description", "Quae rerum doloremque qui."], ["date", "2020-05-06 18:49:47.573724"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.574844"], ["updated_at", "2020-05-05 18:49:47.574844"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem est corrupti natus?"], ["description", "Rerum qui dignissimos distinctio."], ["date", "2020-05-06 18:49:47.576842"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.577905"], ["updated_at", "2020-05-05 18:49:47.577905"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere sit ex sit?"], ["description", "Perspiciatis autem id dolor."], ["date", "2020-05-06 18:49:47.580064"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.581130"], ["updated_at", "2020-05-05 18:49:47.581130"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea quia et ad?"], ["description", "Ipsa quasi non eaque."], ["date", "2020-05-06 18:49:47.582480"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.583281"], ["updated_at", "2020-05-05 18:49:47.583281"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ad libero ipsum quis?"], ["description", "Numquam est blanditiis enim."], ["date", "2020-05-06 18:49:47.584346"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.585036"], ["updated_at", "2020-05-05 18:49:47.585036"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi in dolor et?"], ["description", "Quia id eligendi assumenda."], ["date", "2020-05-06 18:49:47.586185"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.586950"], ["updated_at", "2020-05-05 18:49:47.586950"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae ipsum impedit aut?"], ["description", "Enim consectetur sed voluptas."], ["date", "2020-05-06 18:49:47.588123"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.588809"], ["updated_at", "2020-05-05 18:49:47.588809"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius sed tempora voluptates?"], ["description", "Aspernatur similique excepturi sint."], ["date", "2020-05-06 18:49:47.591593"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.592621"], ["updated_at", "2020-05-05 18:49:47.592621"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Minima laboriosam optio ipsam?"], ["description", "Voluptas est aliquid impedit."], ["date", "2020-05-06 18:49:47.594063"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.595277"], ["updated_at", "2020-05-05 18:49:47.595277"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis delectus laudantium quisquam?"], ["description", "Quo illum minima enim."], ["date", "2020-05-06 18:49:47.597109"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.598078"], ["updated_at", "2020-05-05 18:49:47.598078"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita quaerat sed consectetur?"], ["description", "Facilis nostrum dolores et."], ["date", "2020-05-06 18:49:47.599363"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.600111"], ["updated_at", "2020-05-05 18:49:47.600111"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et rerum labore laudantium?"], ["description", "Id eos maxime animi."], ["date", "2020-05-06 18:49:47.601375"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.602253"], ["updated_at", "2020-05-05 18:49:47.602253"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis rem cumque quia?"], ["description", "Aliquam sed earum numquam."], ["date", "2020-05-06 18:49:47.603602"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.604299"], ["updated_at", "2020-05-05 18:49:47.604299"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis quo ut et?"], ["description", "Consequatur praesentium doloribus cum."], ["date", "2020-05-06 18:49:47.605437"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.606102"], ["updated_at", "2020-05-05 18:49:47.606102"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et molestiae sed qui?"], ["description", "Eaque vel commodi provident."], ["date", "2020-05-06 18:49:47.607216"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.608033"], ["updated_at", "2020-05-05 18:49:47.608033"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero voluptatem sed similique?"], ["description", "Nihil est necessitatibus rerum."], ["date", "2020-05-06 18:49:47.609730"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.610627"], ["updated_at", "2020-05-05 18:49:47.610627"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut atque recusandae ut?"], ["description", "Enim eaque quam ullam."], ["date", "2020-05-06 18:49:47.611934"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.612717"], ["updated_at", "2020-05-05 18:49:47.612717"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus perspiciatis minus aut?"], ["description", "Saepe adipisci voluptatem ut."], ["date", "2020-05-06 18:49:47.614046"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.614955"], ["updated_at", "2020-05-05 18:49:47.614955"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:49:47 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.0ms) SAVEPOINT active_record_2 + Meeting Update (0.1ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:49:47.619626"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1321) + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Jule Cassin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$bYtOFAFa.sFtyrT6epzNEewE1veLkvTu6JOrbcrL8ZFIrmZKtcgTK"], ["created_at", "2020-05-05 18:49:47.632788"], ["updated_at", "2020-05-05 18:49:47.632788"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Rerum temporibus nemo dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.636683"], ["updated_at", "2020-05-05 18:49:47.636683"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut facere sit voluptatem?"], ["description", "Cumque facilis maxime occaecati."], ["date", "2020-05-06 18:49:47.638770"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.642131"], ["updated_at", "2020-05-05 18:49:47.642131"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corrupti pariatur harum laudantium?"], ["description", "Aliquam excepturi itaque quia."], ["date", "2020-05-06 18:49:47.644017"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.644865"], ["updated_at", "2020-05-05 18:49:47.644865"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem ut vitae eos?"], ["description", "Nemo magni nihil et."], ["date", "2020-05-06 18:49:47.645952"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.646633"], ["updated_at", "2020-05-05 18:49:47.646633"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum assumenda ratione molestiae?"], ["description", "Sed amet fugiat deserunt."], ["date", "2020-05-06 18:49:47.647665"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.648372"], ["updated_at", "2020-05-05 18:49:47.648372"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex qui deleniti dolores?"], ["description", "Vel possimus sed impedit."], ["date", "2020-05-06 18:49:47.649555"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.650285"], ["updated_at", "2020-05-05 18:49:47.650285"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Veritatis voluptas animi harum?"], ["description", "Non est exercitationem quo."], ["date", "2020-05-06 18:49:47.651357"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.652095"], ["updated_at", "2020-05-05 18:49:47.652095"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Unde dolores eum est?"], ["description", "Esse magnam voluptatum rerum."], ["date", "2020-05-06 18:49:47.653197"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.653869"], ["updated_at", "2020-05-05 18:49:47.653869"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Culpa magni qui voluptates?"], ["description", "Ea velit reprehenderit tempore."], ["date", "2020-05-06 18:49:47.655538"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.658271"], ["updated_at", "2020-05-05 18:49:47.658271"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum eaque distinctio in?"], ["description", "Sequi illo doloribus molestiae."], ["date", "2020-05-06 18:49:47.659850"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.661005"], ["updated_at", "2020-05-05 18:49:47.661005"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro nemo at quia?"], ["description", "Molestiae possimus beatae vel."], ["date", "2020-05-06 18:49:47.664441"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.665837"], ["updated_at", "2020-05-05 18:49:47.665837"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem quas ipsa doloribus?"], ["description", "Ullam nihil commodi quaerat."], ["date", "2020-05-06 18:49:47.667943"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.669055"], ["updated_at", "2020-05-05 18:49:47.669055"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae est dolorem aliquam?"], ["description", "Quidem consequatur aliquam consectetur."], ["date", "2020-05-06 18:49:47.670435"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.671139"], ["updated_at", "2020-05-05 18:49:47.671139"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas nemo et tempore?"], ["description", "Recusandae labore deleniti amet."], ["date", "2020-05-06 18:49:47.672310"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.673310"], ["updated_at", "2020-05-05 18:49:47.673310"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto odio dolorem consequatur?"], ["description", "Consequatur id esse eum."], ["date", "2020-05-06 18:49:47.675878"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.677373"], ["updated_at", "2020-05-05 18:49:47.677373"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus cupiditate ratione inventore?"], ["description", "Minus magni et quae."], ["date", "2020-05-06 18:49:47.678891"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.679696"], ["updated_at", "2020-05-05 18:49:47.679696"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur commodi facere et?"], ["description", "Nam libero ex placeat."], ["date", "2020-05-06 18:49:47.680780"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.681497"], ["updated_at", "2020-05-05 18:49:47.681497"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur qui non aut?"], ["description", "Est temporibus voluptate impedit."], ["date", "2020-05-06 18:49:47.682675"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.683386"], ["updated_at", "2020-05-05 18:49:47.683386"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non unde aut autem?"], ["description", "Id inventore et quia."], ["date", "2020-05-06 18:49:47.684501"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.685323"], ["updated_at", "2020-05-05 18:49:47.685323"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero officia quidem blanditiis?"], ["description", "Nisi reprehenderit cum dolorum."], ["date", "2020-05-06 18:49:47.686545"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.687262"], ["updated_at", "2020-05-05 18:49:47.687262"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et at consectetur sed?"], ["description", "Enim quaerat quis veritatis."], ["date", "2020-05-06 18:49:47.688352"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.689023"], ["updated_at", "2020-05-05 18:49:47.689023"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:49:47 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 868) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cesar Huel III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$cxehfOZZgOVL8kD0njQpbOcAeTUr1JvY2O1rnGLXf5j2Ditt8F/92"], ["created_at", "2020-05-05 18:49:47.704763"], ["updated_at", "2020-05-05 18:49:47.704763"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "excepturi"], ["description", "Possimus totam commodi vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.708256"], ["updated_at", "2020-05-05 18:49:47.708256"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro dignissimos ullam autem?"], ["description", "Aut doloribus omnis repellat."], ["date", "2020-05-06 18:49:47.709919"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.710927"], ["updated_at", "2020-05-05 18:49:47.710927"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente rem qui enim?"], ["description", "Voluptates nesciunt voluptatem earum."], ["date", "2020-05-06 18:49:47.712379"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.713166"], ["updated_at", "2020-05-05 18:49:47.713166"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum quos exercitationem velit?"], ["description", "Asperiores amet voluptas est."], ["date", "2020-05-06 18:49:47.714377"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.715223"], ["updated_at", "2020-05-05 18:49:47.715223"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi porro id aperiam?"], ["description", "Qui adipisci est dolorem."], ["date", "2020-05-06 18:49:47.717024"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.718073"], ["updated_at", "2020-05-05 18:49:47.718073"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem incidunt sequi saepe?"], ["description", "Aut excepturi reiciendis nulla."], ["date", "2020-05-06 18:49:47.719931"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.721273"], ["updated_at", "2020-05-05 18:49:47.721273"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse labore culpa autem?"], ["description", "Et dignissimos sit numquam."], ["date", "2020-05-06 18:49:47.723488"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.724768"], ["updated_at", "2020-05-05 18:49:47.724768"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo consequatur unde soluta?"], ["description", "Qui sint nostrum doloremque."], ["date", "2020-05-06 18:49:47.726131"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.726811"], ["updated_at", "2020-05-05 18:49:47.726811"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui blanditiis minus et?"], ["description", "Ducimus excepturi qui aperiam."], ["date", "2020-05-06 18:49:47.727977"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.728676"], ["updated_at", "2020-05-05 18:49:47.728676"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium illum officiis sequi?"], ["description", "Nulla quos aliquam recusandae."], ["date", "2020-05-06 18:49:47.729856"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.730526"], ["updated_at", "2020-05-05 18:49:47.730526"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias quia voluptatem dolores?"], ["description", "Accusamus illo omnis harum."], ["date", "2020-05-06 18:49:47.732461"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.733254"], ["updated_at", "2020-05-05 18:49:47.733254"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed non asperiores dicta?"], ["description", "Qui possimus dolorum voluptate."], ["date", "2020-05-06 18:49:47.734766"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.736716"], ["updated_at", "2020-05-05 18:49:47.736716"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Adipisci corrupti temporibus sunt?"], ["description", "Vitae est quidem dolorem."], ["date", "2020-05-06 18:49:47.738688"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.739604"], ["updated_at", "2020-05-05 18:49:47.739604"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Delectus culpa nihil sint?"], ["description", "Reiciendis et consectetur eos."], ["date", "2020-05-06 18:49:47.741405"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.742368"], ["updated_at", "2020-05-05 18:49:47.742368"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore aspernatur vitae dolor?"], ["description", "Temporibus iure alias impedit."], ["date", "2020-05-06 18:49:47.743568"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.744244"], ["updated_at", "2020-05-05 18:49:47.744244"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores facilis rerum ducimus?"], ["description", "Libero facere enim voluptatem."], ["date", "2020-05-06 18:49:47.745261"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.745931"], ["updated_at", "2020-05-05 18:49:47.745931"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Saepe consequuntur ut omnis?"], ["description", "Tempora rerum voluptatem voluptatem."], ["date", "2020-05-06 18:49:47.747073"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.747889"], ["updated_at", "2020-05-05 18:49:47.747889"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur qui qui alias?"], ["description", "Et error voluptas dolor."], ["date", "2020-05-06 18:49:47.749103"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.749790"], ["updated_at", "2020-05-05 18:49:47.749790"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente velit tenetur iste?"], ["description", "Eum consequatur commodi nulla."], ["date", "2020-05-06 18:49:47.751013"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.751757"], ["updated_at", "2020-05-05 18:49:47.751757"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae quia et quisquam?"], ["description", "Cumque aut nihil non."], ["date", "2020-05-06 18:49:47.753088"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.753816"], ["updated_at", "2020-05-05 18:49:47.753816"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque aliquid eos ullam?"], ["description", "Laboriosam qui rerum error."], ["date", "2020-05-06 18:49:47.755324"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.756713"], ["updated_at", "2020-05-05 18:49:47.756713"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:49:47 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + [1mMeeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ian Upton"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gVwVJt7aZCNBi.qZXuLF1eG4QHHO4M6z1zplVSOlKfuNl7fEQ8DTm"], ["created_at", "2020-05-05 18:49:47.771872"], ["updated_at", "2020-05-05 18:49:47.771872"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Illum voluptas ipsa in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.776018"], ["updated_at", "2020-05-05 18:49:47.776018"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia delectus beatae quis?"], ["description", "Autem unde est qui."], ["date", "2020-05-06 18:49:47.779837"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.781675"], ["updated_at", "2020-05-05 18:49:47.781675"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet exercitationem est a?"], ["description", "Animi odio nemo ab."], ["date", "2020-05-06 18:49:47.783627"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.784610"], ["updated_at", "2020-05-05 18:49:47.784610"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia est minima maxime?"], ["description", "Molestias nobis soluta provident."], ["date", "2020-05-06 18:49:47.785821"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.786575"], ["updated_at", "2020-05-05 18:49:47.786575"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et consequatur hic aut?"], ["description", "Voluptates aut possimus illo."], ["date", "2020-05-06 18:49:47.787641"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.788325"], ["updated_at", "2020-05-05 18:49:47.788325"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit est voluptatum voluptas?"], ["description", "Architecto aliquam fuga non."], ["date", "2020-05-06 18:49:47.789482"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.790166"], ["updated_at", "2020-05-05 18:49:47.790166"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In corrupti optio ea?"], ["description", "Quisquam minus cumque voluptas."], ["date", "2020-05-06 18:49:47.791412"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.792163"], ["updated_at", "2020-05-05 18:49:47.792163"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Soluta dolorem neque qui?"], ["description", "Est at eum vel."], ["date", "2020-05-06 18:49:47.793324"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.793998"], ["updated_at", "2020-05-05 18:49:47.793998"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quae iure blanditiis corrupti?"], ["description", "Blanditiis reiciendis aliquid quod."], ["date", "2020-05-06 18:49:47.795123"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.797020"], ["updated_at", "2020-05-05 18:49:47.797020"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Unde incidunt dignissimos aspernatur?"], ["description", "Itaque quam quo qui."], ["date", "2020-05-06 18:49:47.799091"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.800674"], ["updated_at", "2020-05-05 18:49:47.800674"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum et distinctio nostrum?"], ["description", "Nemo commodi rerum est."], ["date", "2020-05-06 18:49:47.803298"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.804230"], ["updated_at", "2020-05-05 18:49:47.804230"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam ut delectus iusto?"], ["description", "Exercitationem eveniet odit recusandae."], ["date", "2020-05-06 18:49:47.805460"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.806129"], ["updated_at", "2020-05-05 18:49:47.806129"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At beatae aliquam in?"], ["description", "Impedit enim maiores fuga."], ["date", "2020-05-06 18:49:47.808173"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.809215"], ["updated_at", "2020-05-05 18:49:47.809215"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis labore minus unde?"], ["description", "Rem est nihil cum."], ["date", "2020-05-06 18:49:47.810592"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.811343"], ["updated_at", "2020-05-05 18:49:47.811343"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquid reprehenderit et nobis?"], ["description", "Molestiae eos cum sunt."], ["date", "2020-05-06 18:49:47.812563"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.813265"], ["updated_at", "2020-05-05 18:49:47.813265"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia aut rerum in?"], ["description", "Dolores illo laudantium dolorem."], ["date", "2020-05-06 18:49:47.814457"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.815145"], ["updated_at", "2020-05-05 18:49:47.815145"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est ipsam non qui?"], ["description", "Cum dolor pariatur est."], ["date", "2020-05-06 18:49:47.817000"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.818451"], ["updated_at", "2020-05-05 18:49:47.818451"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil illum a sed?"], ["description", "Molestias adipisci accusantium accusamus."], ["date", "2020-05-06 18:49:47.819913"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.820776"], ["updated_at", "2020-05-05 18:49:47.820776"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias placeat non dolor?"], ["description", "Necessitatibus et omnis aut."], ["date", "2020-05-06 18:49:47.822446"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.823786"], ["updated_at", "2020-05-05 18:49:47.823786"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi autem incidunt commodi?"], ["description", "Adipisci sapiente suscipit veritatis."], ["date", "2020-05-06 18:49:47.825148"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.825904"], ["updated_at", "2020-05-05 18:49:47.825904"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur eius voluptas adipisci?"], ["description", "Rerum dolorem vero fuga."], ["date", "2020-05-06 18:49:47.827059"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:49:47.827733"], ["updated_at", "2020-05-05 18:49:47.827733"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:49:47 -0300 +Processing by MeetingsController#destroy as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + UserMeeting Load (0.1ms) SELECT "user_meetings".* FROM "user_meetings" WHERE "user_meetings"."meeting_id" = ? [["meeting_id", 1]] + Meeting Destroy (0.2ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1357) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sapiente"], ["description", "Consectetur tempora sequi tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.844251"], ["updated_at", "2020-05-05 18:49:47.844251"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Aut tenetur mollitia distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.847287"], ["updated_at", "2020-05-05 18:49:47.847287"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quos"], ["description", "Id neque nemo provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.848750"], ["updated_at", "2020-05-05 18:49:47.848750"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officia"], ["description", "Dolorem autem quia consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.850016"], ["updated_at", "2020-05-05 18:49:47.850016"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Et ducimus nisi sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.851476"], ["updated_at", "2020-05-05 18:49:47.851476"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Dolorem soluta eveniet doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.852855"], ["updated_at", "2020-05-05 18:49:47.852855"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Voluptate dolorum aspernatur rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.854205"], ["updated_at", "2020-05-05 18:49:47.854205"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Molestias quia eum ratione."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.855549"], ["updated_at", "2020-05-05 18:49:47.855549"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quae"], ["description", "Quos rerum minus earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.859043"], ["updated_at", "2020-05-05 18:49:47.859043"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Culpa optio illo labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.861754"], ["updated_at", "2020-05-05 18:49:47.861754"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Florence Marks"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jNRBgVpDRXQacIzuq.yNsOMVsWosVZw9BFxmWetNXHVGL.HhJp7Dm"], ["created_at", "2020-05-05 18:49:47.865042"], ["updated_at", "2020-05-05 18:49:47.865042"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:49:47 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.06ms) +Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms | Allocations: 2914) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Nulla labore quibusdam nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.883696"], ["updated_at", "2020-05-05 18:49:47.883696"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "excepturi"], ["description", "Est voluptas repudiandae aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.886477"], ["updated_at", "2020-05-05 18:49:47.886477"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Et ipsa voluptatem blanditiis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.887892"], ["updated_at", "2020-05-05 18:49:47.887892"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "earum"], ["description", "Asperiores fuga enim excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.889187"], ["updated_at", "2020-05-05 18:49:47.889187"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Rerum et omnis excepturi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.890991"], ["updated_at", "2020-05-05 18:49:47.890991"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "officiis"], ["description", "Maiores reprehenderit tempore vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.892850"], ["updated_at", "2020-05-05 18:49:47.892850"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Nostrum tempore dignissimos doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.894112"], ["updated_at", "2020-05-05 18:49:47.894112"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repudiandae"], ["description", "Porro quos cumque deleniti."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.895557"], ["updated_at", "2020-05-05 18:49:47.895557"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Distinctio quis eum et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.897631"], ["updated_at", "2020-05-05 18:49:47.897631"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "Ad suscipit sed repellat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.899448"], ["updated_at", "2020-05-05 18:49:47.899448"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sharyl Grady"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2id62/S9HkOFTCtItd9GU.pX4YZ6VTfSKVhe0hh.FWEBQ/58DR7DG"], ["created_at", "2020-05-05 18:49:47.903198"], ["updated_at", "2020-05-05 18:49:47.903198"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:49:47 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.16ms) +Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2845) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (29.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorum"], ["description", "Quis nesciunt eaque sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.945032"], ["updated_at", "2020-05-05 18:49:47.945032"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Praesentium eaque possimus necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.947792"], ["updated_at", "2020-05-05 18:49:47.947792"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Aliquam consequatur aperiam nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.949336"], ["updated_at", "2020-05-05 18:49:47.949336"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Ducimus accusantium temporibus tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.950609"], ["updated_at", "2020-05-05 18:49:47.950609"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ex"], ["description", "Voluptatem iusto quia non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.952067"], ["updated_at", "2020-05-05 18:49:47.952067"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aperiam"], ["description", "Ut velit et qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.953393"], ["updated_at", "2020-05-05 18:49:47.953393"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "labore"], ["description", "Incidunt ducimus minus doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.954670"], ["updated_at", "2020-05-05 18:49:47.954670"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.9ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Architecto dignissimos aut sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.956151"], ["updated_at", "2020-05-05 18:49:47.956151"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "accusamus"], ["description", "Magnam ut modi velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.960104"], ["updated_at", "2020-05-05 18:49:47.960104"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "similique"], ["description", "Repellendus possimus ratione et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.963000"], ["updated_at", "2020-05-05 18:49:47.963000"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lorinda Kling"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mc8rsaT3mu6ikuLwyMSzRO6mb..GW.uunaOmbh9nYZkRQ0WcIvzZ2"], ["created_at", "2020-05-05 18:49:47.966222"], ["updated_at", "2020-05-05 18:49:47.966222"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:49:47 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.72ms) +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 15:49:47 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.26ms) +Completed 200 OK in 4ms (Views: 1.6ms | ActiveRecord: 0.4ms | Allocations: 1242) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (12.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.6ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Eligendi quas aut cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.995590"], ["updated_at", "2020-05-05 18:49:47.995590"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "animi"], ["description", "Quasi ut dignissimos sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:47.999144"], ["updated_at", "2020-05-05 18:49:47.999144"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odit"], ["description", "Sit cumque ipsa minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.001314"], ["updated_at", "2020-05-05 18:49:48.001314"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Fugiat saepe voluptatem doloremque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.004558"], ["updated_at", "2020-05-05 18:49:48.004558"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minus"], ["description", "Rerum quos esse rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.006788"], ["updated_at", "2020-05-05 18:49:48.006788"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odit"], ["description", "Unde sed enim laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.008505"], ["updated_at", "2020-05-05 18:49:48.008505"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perspiciatis"], ["description", "Modi velit magnam perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.009790"], ["updated_at", "2020-05-05 18:49:48.009790"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Quisquam itaque pariatur molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.030308"], ["updated_at", "2020-05-05 18:49:48.030308"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Aut ut est cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.032096"], ["updated_at", "2020-05-05 18:49:48.032096"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Vel expedita qui at."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.033483"], ["updated_at", "2020-05-05 18:49:48.033483"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Thao Considine"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3Qc1nk/vYu518NrDnvT2Ge3/7tNvLgbj2qFAK9Tm1Fbilic4QODOa"], ["created_at", "2020-05-05 18:49:48.036105"], ["updated_at", "2020-05-05 18:49:48.036105"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.2ms) +Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.3ms | Allocations: 2842) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["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: 1240) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Vel voluptates dolores voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.061604"], ["updated_at", "2020-05-05 18:49:48.061604"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Omnis corrupti facilis explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.064347"], ["updated_at", "2020-05-05 18:49:48.064347"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Et omnis qui ducimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.065806"], ["updated_at", "2020-05-05 18:49:48.065806"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "incidunt"], ["description", "Enim quo reprehenderit magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.067234"], ["updated_at", "2020-05-05 18:49:48.067234"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Iusto iure voluptatum nostrum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.068715"], ["updated_at", "2020-05-05 18:49:48.068715"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptate"], ["description", "Fuga expedita et rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.070053"], ["updated_at", "2020-05-05 18:49:48.070053"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorum"], ["description", "Ut aspernatur numquam dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.071397"], ["updated_at", "2020-05-05 18:49:48.071397"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptate"], ["description", "Qui dolorem ut praesentium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.073387"], ["updated_at", "2020-05-05 18:49:48.073387"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Facere iure accusamus ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.074857"], ["updated_at", "2020-05-05 18:49:48.074857"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "saepe"], ["description", "Architecto id sequi perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.076178"], ["updated_at", "2020-05-05 18:49:48.076178"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Vernon Casper"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Zafnj4Yu3pDCfjn5EkKJY.mCRbG/EitRglxhngpkPCb5iitDYbQ3."], ["created_at", "2020-05-05 18:49:48.079333"], ["updated_at", "2020-05-05 18:49:48.079333"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.3ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (2.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestiae"], ["description", "Laborum nam repudiandae asperiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.101926"], ["updated_at", "2020-05-05 18:49:48.101926"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Voluptas sapiente fugit recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.106229"], ["updated_at", "2020-05-05 18:49:48.106229"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Ducimus minus at sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.108239"], ["updated_at", "2020-05-05 18:49:48.108239"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloremque"], ["description", "Ullam harum officia voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.109652"], ["updated_at", "2020-05-05 18:49:48.109652"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "necessitatibus"], ["description", "Sed ratione perferendis dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.111170"], ["updated_at", "2020-05-05 18:49:48.111170"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cupiditate"], ["description", "Corrupti itaque voluptas autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.112537"], ["updated_at", "2020-05-05 18:49:48.112537"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Dolores odio et est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.113867"], ["updated_at", "2020-05-05 18:49:48.113867"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Velit qui sint ipsum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.115192"], ["updated_at", "2020-05-05 18:49:48.115192"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestias"], ["description", "Minus et aut id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.116670"], ["updated_at", "2020-05-05 18:49:48.116670"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolores"], ["description", "Tenetur deserunt quis numquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.118572"], ["updated_at", "2020-05-05 18:49:48.118572"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jay Carroll"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Q3kF53kftAFtlcgJVqTuZ.aiwJGDsvuXko2B.HT9AgxPw1SvSFBTO"], ["created_at", "2020-05-05 18:49:48.123296"], ["updated_at", "2020-05-05 18:49:48.123296"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.74ms) +Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Deserunt officiis optio recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.144598"], ["updated_at", "2020-05-05 18:49:48.144598"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "labore"], ["description", "Est qui accusamus quaerat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.148555"], ["updated_at", "2020-05-05 18:49:48.148555"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "beatae"], ["description", "Voluptatem sed dolores velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.150521"], ["updated_at", "2020-05-05 18:49:48.150521"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veritatis"], ["description", "Quibusdam deleniti et illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.152690"], ["updated_at", "2020-05-05 18:49:48.152690"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Officia id nobis omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.154106"], ["updated_at", "2020-05-05 18:49:48.154106"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Doloribus et excepturi laboriosam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.155417"], ["updated_at", "2020-05-05 18:49:48.155417"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Iusto officiis aut sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.156879"], ["updated_at", "2020-05-05 18:49:48.156879"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Fuga saepe sit dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.159659"], ["updated_at", "2020-05-05 18:49:48.159659"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quam"], ["description", "Nam nostrum in enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.162248"], ["updated_at", "2020-05-05 18:49:48.162248"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Voluptatem optio ut nihil."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.164739"], ["updated_at", "2020-05-05 18:49:48.164739"], ["created_by", "1"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Clyde Nolan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$btGqr.GBYCL6lIDTa8wPtOMWSYrvlPO5/5Uoux1.8kphJxRNLXb8y"], ["created_at", "2020-05-05 18:49:48.170497"], ["updated_at", "2020-05-05 18:49:48.170497"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.85ms) +Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:49:48 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:49:48.193426"], ["updated_at", "2020-05-05 18:49:48.193426"], ["created_by", "1"]] +  (0.2ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.3ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.52ms) +Completed 201 Created in 19ms (Views: 1.0ms | ActiveRecord: 1.1ms | Allocations: 5083) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "omnis"], ["description", "Nemo ut aut repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.211714"], ["updated_at", "2020-05-05 18:49:48.211714"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Consequuntur quod asperiores omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.214518"], ["updated_at", "2020-05-05 18:49:48.214518"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Veritatis delectus suscipit sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.215885"], ["updated_at", "2020-05-05 18:49:48.215885"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "provident"], ["description", "Aliquid dolor hic nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.217106"], ["updated_at", "2020-05-05 18:49:48.217106"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "inventore"], ["description", "Minima quia et sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.218931"], ["updated_at", "2020-05-05 18:49:48.218931"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Consequatur incidunt distinctio maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.221720"], ["updated_at", "2020-05-05 18:49:48.221720"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facere"], ["description", "Nulla sit quaerat rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.225564"], ["updated_at", "2020-05-05 18:49:48.225564"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quibusdam"], ["description", "Ratione dolores architecto eius."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.227247"], ["updated_at", "2020-05-05 18:49:48.227247"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Quos ducimus quas maiores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.228465"], ["updated_at", "2020-05-05 18:49:48.228465"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Non molestiae magni reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.229661"], ["updated_at", "2020-05-05 18:49:48.229661"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Maddie Heller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$MUyE6lMlQsheJWmibe7NiOhIuRgiy7n6EJ1Dc397RF.eiC4979jLi"], ["created_at", "2020-05-05 18:49:48.232339"], ["updated_at", "2020-05-05 18:49:48.232339"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.24ms) +Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.2ms | Allocations: 2845) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:49:48 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:49:48.246128"], ["updated_at", "2020-05-05 18:49:48.246128"], ["created_by", "1"]] +  (0.2ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.45ms) +Completed 201 Created in 6ms (Views: 0.9ms | ActiveRecord: 0.7ms | Allocations: 2251) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "animi"], ["description", "Consequatur qui dolorum cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.268879"], ["updated_at", "2020-05-05 18:49:48.268879"], ["created_by", "1"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Sed laudantium expedita distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.275898"], ["updated_at", "2020-05-05 18:49:48.275898"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Est est doloribus quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.278456"], ["updated_at", "2020-05-05 18:49:48.278456"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odio"], ["description", "Consequatur aut minima facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.281201"], ["updated_at", "2020-05-05 18:49:48.281201"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "id"], ["description", "Ea delectus fugiat qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.284883"], ["updated_at", "2020-05-05 18:49:48.284883"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempora"], ["description", "Ut aliquam necessitatibus maxime."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.286916"], ["updated_at", "2020-05-05 18:49:48.286916"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugit"], ["description", "Rerum officia ea aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.288343"], ["updated_at", "2020-05-05 18:49:48.288343"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "explicabo"], ["description", "In pariatur rem ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.290270"], ["updated_at", "2020-05-05 18:49:48.290270"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Labore voluptatem quae similique."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.291724"], ["updated_at", "2020-05-05 18:49:48.291724"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Aspernatur minus consectetur distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.293056"], ["updated_at", "2020-05-05 18:49:48.293056"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kimberlie Weber DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CAjYGvauyRi3mr09v48tnOf1dUmUVWTWeThN4FtgnFz13IJZWnVYK"], ["created_at", "2020-05-05 18:49:48.295702"], ["updated_at", "2020-05-05 18:49:48.295702"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.36ms) +Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 3697) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Voluptatibus voluptatem at magnam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.321753"], ["updated_at", "2020-05-05 18:49:48.321753"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minus"], ["description", "Similique rerum qui labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.326636"], ["updated_at", "2020-05-05 18:49:48.326636"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Cupiditate sed velit in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.329160"], ["updated_at", "2020-05-05 18:49:48.329160"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Vero accusamus quia vitae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.330752"], ["updated_at", "2020-05-05 18:49:48.330752"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Est impedit sunt eos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.332091"], ["updated_at", "2020-05-05 18:49:48.332091"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "illo"], ["description", "Est sed reiciendis animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.333351"], ["updated_at", "2020-05-05 18:49:48.333351"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "iste"], ["description", "Quae voluptate excepturi hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.334620"], ["updated_at", "2020-05-05 18:49:48.334620"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quaerat"], ["description", "Sapiente maiores nulla voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.335863"], ["updated_at", "2020-05-05 18:49:48.335863"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eaque"], ["description", "Temporibus minus modi unde."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.337173"], ["updated_at", "2020-05-05 18:49:48.337173"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Itaque qui est occaecati."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.338553"], ["updated_at", "2020-05-05 18:49:48.338553"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Winston Quitzon"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/Ftz0oy9iAk3cSKnQJKz1eyxmeHwCBT4vGFjDL1UfYVpruZfdMHDq"], ["created_at", "2020-05-05 18:49:48.343822"], ["updated_at", "2020-05-05 18:49:48.343822"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 3697) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "earum"], ["description", "Deleniti quia eum expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.369314"], ["updated_at", "2020-05-05 18:49:48.369314"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Qui et eos dignissimos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.373422"], ["updated_at", "2020-05-05 18:49:48.373422"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Qui distinctio quam impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.377119"], ["updated_at", "2020-05-05 18:49:48.377119"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "neque"], ["description", "Accusamus ducimus in itaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.379183"], ["updated_at", "2020-05-05 18:49:48.379183"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ex"], ["description", "Non quasi libero modi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.383180"], ["updated_at", "2020-05-05 18:49:48.383180"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Tenetur similique id labore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.385401"], ["updated_at", "2020-05-05 18:49:48.385401"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Aut animi quis veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.387011"], ["updated_at", "2020-05-05 18:49:48.387011"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "libero"], ["description", "Odit quidem itaque enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.388292"], ["updated_at", "2020-05-05 18:49:48.388292"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Cupiditate sequi blanditiis totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.389576"], ["updated_at", "2020-05-05 18:49:48.389576"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Enim ab aut distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.390847"], ["updated_at", "2020-05-05 18:49:48.390847"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Randal Rempel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$n41.rhU4q8E4UaAXRco86.zjkWwKFXe7lD6RCnqDsfXOVMXkF03eK"], ["created_at", "2020-05-05 18:49:48.393507"], ["updated_at", "2020-05-05 18:49:48.393507"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.67ms) +Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.1ms | Allocations: 2842) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:49:48.404573"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 1044) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "necessitatibus"], ["description", "Vero reiciendis consequatur dolorum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.414931"], ["updated_at", "2020-05-05 18:49:48.414931"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deleniti"], ["description", "Laboriosam et consectetur qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.418653"], ["updated_at", "2020-05-05 18:49:48.418653"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Magnam asperiores et aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.422264"], ["updated_at", "2020-05-05 18:49:48.422264"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "exercitationem"], ["description", "Quam non inventore necessitatibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.424981"], ["updated_at", "2020-05-05 18:49:48.424981"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ad"], ["description", "Velit voluptatem tenetur voluptates."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.427185"], ["updated_at", "2020-05-05 18:49:48.427185"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rem"], ["description", "Et iure consequatur quasi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.429927"], ["updated_at", "2020-05-05 18:49:48.429927"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "at"], ["description", "Commodi dolorum qui nam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.431815"], ["updated_at", "2020-05-05 18:49:48.431815"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Aliquid praesentium aut qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.433151"], ["updated_at", "2020-05-05 18:49:48.433151"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatum"], ["description", "Dolor voluptas nihil quam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.434434"], ["updated_at", "2020-05-05 18:49:48.434434"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempora"], ["description", "Dolorum eum et cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.435719"], ["updated_at", "2020-05-05 18:49:48.435719"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Arthur Marks"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xEIIJBeo97Jxown3zCKugeaRZwEWq.7KZAfCmjeWLp.N1ieE6iQCe"], ["created_at", "2020-05-05 18:49:48.438341"], ["updated_at", "2020-05-05 18:49:48.438341"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | Allocations: 2845) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:49:48.450949"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 2ms (ActiveRecord: 0.4ms | Allocations: 999) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eos"], ["description", "Sit voluptas qui quod."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.462479"], ["updated_at", "2020-05-05 18:49:48.462479"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Iusto magnam est eaque."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.465378"], ["updated_at", "2020-05-05 18:49:48.465378"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "excepturi"], ["description", "Consequuntur omnis optio laudantium."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.466846"], ["updated_at", "2020-05-05 18:49:48.466846"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Est labore quo saepe."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.468108"], ["updated_at", "2020-05-05 18:49:48.468108"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quos"], ["description", "Quia qui sunt molestias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.469388"], ["updated_at", "2020-05-05 18:49:48.469388"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corporis"], ["description", "Aut labore sint molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.470846"], ["updated_at", "2020-05-05 18:49:48.470846"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "praesentium"], ["description", "Voluptatem quas ut delectus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.472703"], ["updated_at", "2020-05-05 18:49:48.472703"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "itaque"], ["description", "Fuga et neque mollitia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.475017"], ["updated_at", "2020-05-05 18:49:48.475017"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Et magni natus cupiditate."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.476586"], ["updated_at", "2020-05-05 18:49:48.476586"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "beatae"], ["description", "Aliquam commodi iusto fugiat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:49:48.478038"], ["updated_at", "2020-05-05 18:49:48.478038"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alberto Schamberger IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4mUZLOh9lcrd8QZ4yM0heeh6zcOeVBhwLBIJV5DTRRkwX.RNnbl2i"], ["created_at", "2020-05-05 18:49:48.481331"], ["updated_at", "2020-05-05 18:49:48.481331"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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: 2842) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1201) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Benny Bosco I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BXppoPGcIXnQfOOFtp3JyeMcwppGth/qkJtMx8gcKjBN6ZmFQhh/6"], ["created_at", "2020-05-05 18:49:48.507146"], ["updated_at", "2020-05-05 18:49:48.507146"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mora Fritsch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vhppRoN/3j95nI4zZ.RojuS7PkROET9VtZnxmFMh0cjAFseOO8fcm"], ["created_at", "2020-05-05 18:49:48.511490"], ["updated_at", "2020-05-05 18:49:48.511490"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Georgiana Parker"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$exDLtBIGKIGd4a/49V6NHeMGz85kKPGoeE.2wccD1G/w0XyNOp4ou"], ["created_at", "2020-05-05 18:49:48.514446"], ["updated_at", "2020-05-05 18:49:48.514446"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nelson Hilll"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tRfxKZzjt2tbzdoNQSJxmu6Wf4MxE8JDUdLpDaqnGpTnpd6ASiZ1G"], ["created_at", "2020-05-05 18:49:48.516893"], ["updated_at", "2020-05-05 18:49:48.516893"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Karren Kihn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DWbTg.yM6IRTd.qHVFLjOeIs3NpeuQckGtsJofvIXW4VEWxFFDgFK"], ["created_at", "2020-05-05 18:49:48.519399"], ["updated_at", "2020-05-05 18:49:48.519399"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jere Rempel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$AfysC9GADi6KfioVezXTsuKRiyayM04sEREKzaKef9macb/TDvVz."], ["created_at", "2020-05-05 18:49:48.523038"], ["updated_at", "2020-05-05 18:49:48.523038"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Oliver Jerde"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4z62K2obVXRhj8Vwgq3q/eM0SoKgwc8mh3k0MwbjNx2YooydpeIci"], ["created_at", "2020-05-05 18:49:48.527686"], ["updated_at", "2020-05-05 18:49:48.527686"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Stephenie Howell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$E.WI1jdyiF0wAbbF6pfaeutkD6Vv3tq5AxpQiop5BY9IzIfiDRz0u"], ["created_at", "2020-05-05 18:49:48.530579"], ["updated_at", "2020-05-05 18:49:48.530579"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Quincy Towne"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QwTe2VPflECgbdhs7qEnB.VmjS4skvbUdfSUim438ks3sLkn..97C"], ["created_at", "2020-05-05 18:49:48.533136"], ["updated_at", "2020-05-05 18:49:48.533136"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mitch Grant"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fH7BNIehkqwIVsLRJP5Jp.gxv7QisWiUpGrX.opzQOb0Ae5eScAVO"], ["created_at", "2020-05-05 18:49:48.535585"], ["updated_at", "2020-05-05 18:49:48.535585"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (4.17ms) +Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.1ms | Allocations: 2345) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.9ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Migdalia Hahn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xqUVEaUFcfysn.Nuy..vaO/x6wzuOBcGF0mFjUPr.FIid5sv.sMei"], ["created_at", "2020-05-05 18:49:48.554337"], ["updated_at", "2020-05-05 18:49:48.554337"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Joie Kovacek"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.AKoE74xz9TrwBPfjR0c1u.5sNSu9RmeWp.Zkn3hLeCtFWHp0HBNm"], ["created_at", "2020-05-05 18:49:48.560768"], ["updated_at", "2020-05-05 18:49:48.560768"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Brian Mohr"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$sIatpINkxzGSSoGLprkiU.mspgFTw/Pvj9/3i7NU7BnZiRWfNM5Bi"], ["created_at", "2020-05-05 18:49:48.564308"], ["updated_at", "2020-05-05 18:49:48.564308"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Maryrose Hagenes PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VwHlcFNkVUMe7rmbMZbZheLxd10/P92jT25j7eOxK4PrIrrKy6ZVy"], ["created_at", "2020-05-05 18:49:48.567790"], ["updated_at", "2020-05-05 18:49:48.567790"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dee Beatty"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.AicpRfSUForCJk8z0Lkye7q222CtMHyfcXiGa3oejVKySY4umv8C"], ["created_at", "2020-05-05 18:49:48.572336"], ["updated_at", "2020-05-05 18:49:48.572336"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Shavonda Green"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WF7EFVjcGxImB5j0uAsYJuGdW0b/hHwtW.RWGF9PTduaevNG66Gau"], ["created_at", "2020-05-05 18:49:48.575780"], ["updated_at", "2020-05-05 18:49:48.575780"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ricky Paucek"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$x/TlvjnxACXDRx2tAEWqf.NaUi.JnDzSW8PbJSRFMXtWdlehsSQoO"], ["created_at", "2020-05-05 18:49:48.578242"], ["updated_at", "2020-05-05 18:49:48.578242"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sammy Kutch I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$58nMCK1L4XcJXCq4SNP3jes9./pnLhHDHshsNeH7G6XNQPusnOqAm"], ["created_at", "2020-05-05 18:49:48.580930"], ["updated_at", "2020-05-05 18:49:48.580930"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Renato Flatley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$E13WQS2bSxV.0uFIUPjVDOctjPc8kCu6vZVW34VFm/KNhS7.Z/Idq"], ["created_at", "2020-05-05 18:49:48.584369"], ["updated_at", "2020-05-05 18:49:48.584369"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ariel Wolff Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Z2W27WXyjfbzAHbucUCg2eV.5MGpSGUIqpaupgv8/6KWNF2SGgewK"], ["created_at", "2020-05-05 18:49:48.586936"], ["updated_at", "2020-05-05 18:49:48.586936"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.08ms) +Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms | Allocations: 2203) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Emerson O'Connell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$s9MhlyY2iaxB2AhASuopeeoKidGJcWwLwb/iBKhI3X5j7Z8iwyzne"], ["created_at", "2020-05-05 18:49:48.604713"], ["updated_at", "2020-05-05 18:49:48.604713"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Elvin Hoppe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HLfU5JsyH87q7DwXjf3qpOhljeYWlonCo9KMr.9vtVNkL.MIQZw12"], ["created_at", "2020-05-05 18:49:48.609758"], ["updated_at", "2020-05-05 18:49:48.609758"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Franklyn Morissette"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TJA9JilfHknOMnzmXzrL9OyG3IMebyXyFYD0hrjxTAJqRNS.d8iW."], ["created_at", "2020-05-05 18:49:48.612678"], ["updated_at", "2020-05-05 18:49:48.612678"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Eliseo Schinner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$lp9PqLpCXjreoMe8tGGevOYQv/729beyHZ2FbXQz7XDrU2EeDXUji"], ["created_at", "2020-05-05 18:49:48.615248"], ["updated_at", "2020-05-05 18:49:48.615248"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Joye Sanford"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JCIxd7u9BBakokVl6NARqeWUcTGrg2GEs1ECn3jlLDkixrj65FAJS"], ["created_at", "2020-05-05 18:49:48.617668"], ["updated_at", "2020-05-05 18:49:48.617668"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Larry Stamm"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HwdlF7HvrulazhTMgULPqeNM/.ZhtTjfG4oKXXbagQZB9IUoP.a36"], ["created_at", "2020-05-05 18:49:48.620197"], ["updated_at", "2020-05-05 18:49:48.620197"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Florentino Russel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$bbgMhi9dgteB.rc3QyrEZegA0dbVrcQX0AOTF23kmgOVwkwDMRum6"], ["created_at", "2020-05-05 18:49:48.624228"], ["updated_at", "2020-05-05 18:49:48.624228"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Madlyn Flatley"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kNwfrb5PIY6JfJjBHqCbBOubmp6v5A5lJbnCzqt5hcgYrEaAKlPt6"], ["created_at", "2020-05-05 18:49:48.627300"], ["updated_at", "2020-05-05 18:49:48.627300"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Maryrose West DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$b9dMsttbbxcwR82JEOyN8O4CN/HrMpPWy3EEHrY3VjbGcZWI7mrXO"], ["created_at", "2020-05-05 18:49:48.630030"], ["updated_at", "2020-05-05 18:49:48.630030"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Forrest Konopelski I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Lufv12HSRn8exQsQbtxSru3m4n.2ljaeJb/3mPVFL0Bst2YmN8w.i"], ["created_at", "2020-05-05 18:49:48.633112"], ["updated_at", "2020-05-05 18:49:48.633112"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by UsersController#index as HTML + User Load (0.5ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.18ms) +Completed 200 OK in 9ms (Views: 7.9ms | ActiveRecord: 0.5ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.56ms) +Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (36.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Luciano Gottlieb"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$uJHmUDY7My5PFba7Piz2y.ywwgdthY.ImZnuoKQ6ZyLHiGyxenWAC"], ["created_at", "2020-05-05 18:49:48.692516"], ["updated_at", "2020-05-05 18:49:48.692516"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Milford Bogisich"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oR16a7hjFBeKrC3r.DF9DOy74yE2XKqG/3zlL48x4gX0nutMkAAuS"], ["created_at", "2020-05-05 18:49:48.696940"], ["updated_at", "2020-05-05 18:49:48.696940"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rubin King"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$bVmeNKLL.lN2n.kIzyy09uoxlZ3Ikc55HWiPCfknP89w7I4qReHBu"], ["created_at", "2020-05-05 18:49:48.700155"], ["updated_at", "2020-05-05 18:49:48.700155"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.4ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Neely Bahringer III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NSU8R7TrymUxcMISV/uE8ewB3yadmScUcMsYpdR1Km.P/xnhoSLeG"], ["created_at", "2020-05-05 18:49:48.705233"], ["updated_at", "2020-05-05 18:49:48.705233"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.4ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Samuel Okuneva"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xBJ0ycWy3aIhCVFW0UQCdOHlYxSVZG6QpREKRld8dB4Pn1IQ2FjJO"], ["created_at", "2020-05-05 18:49:48.711168"], ["updated_at", "2020-05-05 18:49:48.711168"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lloyd Legros"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TtwOLyX0irS9mr3ZW.d1B.1AL/JDpT.jFbxih2P5ACZfuBDAh4mlS"], ["created_at", "2020-05-05 18:49:48.714140"], ["updated_at", "2020-05-05 18:49:48.714140"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rolf Bernier"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$vyqeQ2v6twHuaKK/kRW6Y.xK2MeOrErDRyF3JJEBg5w0WhFcdKtA6"], ["created_at", "2020-05-05 18:49:48.716998"], ["updated_at", "2020-05-05 18:49:48.716998"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Walton Thiel II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$v5GI.AQgMPiMT0n7ALRxBunKDQDmPrkZwYnD1gIqdn6Sa5EXgD7Ri"], ["created_at", "2020-05-05 18:49:48.720704"], ["updated_at", "2020-05-05 18:49:48.720704"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Patricia Bode"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$w18XbNAnqo3G0n24JhPRuOe11FAINJPcH9v1/1qolcNvlq6pJsruC"], ["created_at", "2020-05-05 18:49:48.727192"], ["updated_at", "2020-05-05 18:49:48.727192"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kyoko Hermann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tdu09ER06ZZQ34NywcpL9.zuw81EjyVwkEVkYnvIXzb0TU4PjjEPq"], ["created_at", "2020-05-05 18:49:48.730062"], ["updated_at", "2020-05-05 18:49:48.730062"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.99ms) +Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.62ms) +Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.2ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (13.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ivan Goodwin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$G2Yt6pCOKa2MMAVh3Ilv6Oqk1wmYrREbOEtsJfSXylLNymVSYrGEW"], ["created_at", "2020-05-05 18:49:48.761494"], ["updated_at", "2020-05-05 18:49:48.761494"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Alonzo Bechtelar"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OdIG9RUS/wWa1i45Kivj2.4rE74ZgepORj7CwWkBZADmaqBDwTs4i"], ["created_at", "2020-05-05 18:49:48.766903"], ["updated_at", "2020-05-05 18:49:48.766903"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sari Robel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YSSeF3dc8cXO2fBCavuygexJNk4UE4pY5b4ntcv8Px/lN7GY28kI2"], ["created_at", "2020-05-05 18:49:48.770354"], ["updated_at", "2020-05-05 18:49:48.770354"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Krystal Senger DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GShVlbNKWak0rf.b7bp3x.XKBGfKpXlg2CGlXxh6MwajiNDrZfPwe"], ["created_at", "2020-05-05 18:49:48.773669"], ["updated_at", "2020-05-05 18:49:48.773669"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sergio Hilpert II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$G08hpJGdTqiNwXRRMpLzf..gyp4U72ufq9ra3a8eOEVI1Hg95g3dS"], ["created_at", "2020-05-05 18:49:48.777069"], ["updated_at", "2020-05-05 18:49:48.777069"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mallie Beier"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CMvVq2AsqTfKkYiz8GgNROYpd3Oe8EetNGRarrDYf0fm76HNT38tG"], ["created_at", "2020-05-05 18:49:48.779945"], ["updated_at", "2020-05-05 18:49:48.779945"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Quentin Rempel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LuNV9ykNiHUqmljgAPBlzuet3LbdvLp4YMkXjhlmY3hmLSqbWqNcW"], ["created_at", "2020-05-05 18:49:48.784844"], ["updated_at", "2020-05-05 18:49:48.784844"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leilani Sanford IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kLLyfqPYRYfNJBnIp6syN.H2MmOm8ZelRhk3Gf4MW2ZH3EGf7eSkm"], ["created_at", "2020-05-05 18:49:48.789897"], ["updated_at", "2020-05-05 18:49:48.789897"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Christopher Gulgowski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$blfnFKV9haW4.wiJk2o5Uup08kQTeaDvKvsffVLXZblgwQf6YyQKC"], ["created_at", "2020-05-05 18:49:48.793623"], ["updated_at", "2020-05-05 18:49:48.793623"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Elvin Parisian"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kvEhaSq5aE88aEzz9.Ab2OL05U35wxwEHqyVwyIZ2JE06hFeAm3XK"], ["created_at", "2020-05-05 18:49:48.797020"], ["updated_at", "2020-05-05 18:49:48.797020"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (4.58ms) +Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.1ms | Allocations: 2204) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms) +Completed 404 Not Found in 2ms (Views: 0.7ms | ActiveRecord: 0.2ms | Allocations: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kaylene Hilpert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ITBjNhB3HmuBue3.mEOv/ul3EW5e/.DsEqu2TwXbwUEIChPvd90pG"], ["created_at", "2020-05-05 18:49:48.844030"], ["updated_at", "2020-05-05 18:49:48.844030"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Karleen Russel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WrWYbPeUZThULKhjJFX.G.DzEt6ii5OLBYEQVH1c/6cqgoRvkQW/G"], ["created_at", "2020-05-05 18:49:48.852158"], ["updated_at", "2020-05-05 18:49:48.852158"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Florida Ruecker"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$oDR3aflovs8S9J1sBclcGezkjMdCoxuzA6.QOchsIo1GAakiEIQc2"], ["created_at", "2020-05-05 18:49:48.855419"], ["updated_at", "2020-05-05 18:49:48.855419"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jene Herzog DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4pME5AlG54kE4RFKXpDz1OrlSrBJ6XGRIkG2fLiUkemNjK4nc6Lfa"], ["created_at", "2020-05-05 18:49:48.859392"], ["updated_at", "2020-05-05 18:49:48.859392"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tangela Green IV"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rsbVmghCC8fzMIagktZ0qeixxgoV/ujGZsEgCMtHfqq1a5ZBS3WXq"], ["created_at", "2020-05-05 18:49:48.863723"], ["updated_at", "2020-05-05 18:49:48.863723"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mario Bayer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5eTtRrqpakDnAESte8Bcqu6Najho3lcocH0F5FhqCEhAvxHaBhCu6"], ["created_at", "2020-05-05 18:49:48.870660"], ["updated_at", "2020-05-05 18:49:48.870660"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Garnett Bartoletti"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NFyTTF9r/FGUrpZmNQ9gke8IqUWYCuH1hU.uUb0EDX1acJka5mOPi"], ["created_at", "2020-05-05 18:49:48.875135"], ["updated_at", "2020-05-05 18:49:48.875135"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dee White"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Yhs.WEbZr1c/AIPclZNhA.7bD5Hus6d7HqtOTAOAVpiaAfCjZbsWa"], ["created_at", "2020-05-05 18:49:48.878466"], ["updated_at", "2020-05-05 18:49:48.878466"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Denisse Keebler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$j4Gmnk9/5uhiY6XjuoJnlu7AYnPa/wSSrEh69huhDPYus7RNDUYDC"], ["created_at", "2020-05-05 18:49:48.882596"], ["updated_at", "2020-05-05 18:49:48.882596"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Shane Bergnaum"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$c9BGayqWUj4WTd7OUKFAZ.8n4ZFwS8Whfcakb0IyQLuYlhCo4RqZa"], ["created_at", "2020-05-05 18:49:48.887273"], ["updated_at", "2020-05-05 18:49:48.887273"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.29ms) +Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.15ms) +Completed 404 Not Found in 3ms (Views: 1.2ms | ActiveRecord: 0.2ms | Allocations: 524) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Jamison Hartmann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gg/IwjDwlZjQ5H9mf8GJ/ezSpFcm61LHcV1.r150F84K6pkuJBwya"], ["created_at", "2020-05-05 18:49:48.916810"], ["updated_at", "2020-05-05 18:49:48.916810"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Abdul Harvey"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$94qBsHDx/VjOTST/a9xZVu4k88xlCthWC7i7PBK3tVz9w4c0BD9im"], ["created_at", "2020-05-05 18:49:48.923187"], ["updated_at", "2020-05-05 18:49:48.923187"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Freeman Cremin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$stXrf3S.ViZ7nZUErT26x.nnY5fVnc2ihdqyaYnRvkAoOK7ADG.BK"], ["created_at", "2020-05-05 18:49:48.928778"], ["updated_at", "2020-05-05 18:49:48.928778"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rolando Reinger"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ME0W6rAU8KPhoh1WhmdxzO6Cex/aev8R3NzRXqUVOrjlQWxRFiQS6"], ["created_at", "2020-05-05 18:49:48.935092"], ["updated_at", "2020-05-05 18:49:48.935092"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Javier Langosh"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0O.i8nWBAEiYBzffhOEdseLKGnBhYCHi6/ZM6ZgkJgviRojWnGwru"], ["created_at", "2020-05-05 18:49:48.938967"], ["updated_at", "2020-05-05 18:49:48.938967"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Irwin Klocko"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$06k91dEAl9OY.FPYHRCWY.3DrOCTvYZeMaKErHQgdOKHTVV3ngth6"], ["created_at", "2020-05-05 18:49:48.943992"], ["updated_at", "2020-05-05 18:49:48.943992"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jacinto Kutch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aBxC3djBrQla90y65.1xEOOb71AEQOY12koy9Jv2l30segcQO/rG."], ["created_at", "2020-05-05 18:49:48.947705"], ["updated_at", "2020-05-05 18:49:48.947705"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Mercy Halvorson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DhzfilzbEZfnxmgRb6ohZu8vvCnclPmNChp27/rzI/JbzD5Jnk/aO"], ["created_at", "2020-05-05 18:49:48.950670"], ["updated_at", "2020-05-05 18:49:48.950670"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Xochitl Schoen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WA.Zp49OyFi3vGuiR6EwFO6Fd4maaCm.mgTepXlPpCwjRr2Tjh9cy"], ["created_at", "2020-05-05 18:49:48.953840"], ["updated_at", "2020-05-05 18:49:48.953840"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Germaine Miller"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$yZM6hocqYxhuckCNL8VMTurGjyg5MS9HqwV6MMMWUFPce3Xd7BYba"], ["created_at", "2020-05-05 18:49:48.957426"], ["updated_at", "2020-05-05 18:49:48.957426"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.74ms) +Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:49:48 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Sheyla", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "email"=>"shey@mail.com"} +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sheyla"], ["email", "shey@mail.com"], ["password_digest", "$2a$04$7LDJhJcjyuXLwzliNRk1vek5Mj2xfHeUOQzovxSfRwWQDPNOGU.mG"], ["created_at", "2020-05-05 18:49:48.970704"], ["updated_at", "2020-05-05 18:49:48.970704"], ["picture", "https://joeschmoe.io/api/v1/jacques"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.43ms) +Completed 201 Created in 11ms (Views: 0.9ms | ActiveRecord: 0.5ms | Allocations: 1680) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Vannesa Howe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$xnSlJ69FbjJU9g7rBK4NpO5iMV/vJ/WSqOcToVVa4.DSlEa7rl7Zm"], ["created_at", "2020-05-05 18:49:48.995030"], ["updated_at", "2020-05-05 18:49:48.995030"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Zachary Lueilwitz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6a7V70WrXAnt5tzTnA9NK.in4o7a4amfU2m34DPY0/nZnQNtzk8i2"], ["created_at", "2020-05-05 18:49:49.000216"], ["updated_at", "2020-05-05 18:49:49.000216"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Lynn Carroll"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$my/w2uY.2XASU1XscDsbCux/mgmUJcnWRWm22AJLH304gCnrOXpkm"], ["created_at", "2020-05-05 18:49:49.005509"], ["updated_at", "2020-05-05 18:49:49.005509"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dion Mosciski III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DdFEM7rWZ1VSsmcKYX88zuJiW4QlMk8aFccWie1udDyne2xjMrGkO"], ["created_at", "2020-05-05 18:49:49.012317"], ["updated_at", "2020-05-05 18:49:49.012317"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Hong Cartwright"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mJTkLEPJf.53qwe0.3L9.uF2YZV6pQVQYVn7UQjH9INM.HUztBLle"], ["created_at", "2020-05-05 18:49:49.016175"], ["updated_at", "2020-05-05 18:49:49.016175"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kandra Hintz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Bt6S0ZoAG3hsbG9PzSOr1.ez7/gQUm4CWjZ7OdU4CR1ldYvNUSbY2"], ["created_at", "2020-05-05 18:49:49.019608"], ["updated_at", "2020-05-05 18:49:49.019608"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Thora Greenfelder"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pwvmP4.deSmmF1kEnJEOTuymdwm9PSfBi0IRPQZv9KWHhBUMY6mIy"], ["created_at", "2020-05-05 18:49:49.024600"], ["updated_at", "2020-05-05 18:49:49.024600"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rocky Adams"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$dKM/p0/gTD.xVvca8xaOneb4TGpX.Rh6S4ff5Lwb4bb1JbmnTU2yK"], ["created_at", "2020-05-05 18:49:49.029734"], ["updated_at", "2020-05-05 18:49:49.029734"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Barry Ebert"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$EuSYsu1DyWLwopD.viHqHu1Pd.pSZly/MItwx67nQ6TbT2L9TFuha"], ["created_at", "2020-05-05 18:49:49.033814"], ["updated_at", "2020-05-05 18:49:49.033814"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nguyet Borer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Mp.f0dOVAKYcdikfZf.jd.lzCP5f7l54cHyhCjPq2aN6jZg9cQfmG"], ["created_at", "2020-05-05 18:49:49.037946"], ["updated_at", "2020-05-05 18:49:49.037946"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:49:49 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (5.8ms) +Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.2ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:49:49 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Sheyla", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "email"=>"shey@mail.com"} +  (0.4ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sheyla"], ["email", "shey@mail.com"], ["password_digest", "$2a$04$MeDUaIt5TfTd1OUJCNagUOiB7MBo8Kb/.TrcVLP6CU55qCLQ1N0nu"], ["created_at", "2020-05-05 18:49:49.053887"], ["updated_at", "2020-05-05 18:49:49.053887"], ["picture", "https://joeschmoe.io/api/v1/jordan"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.38ms) +Completed 201 Created in 9ms (Views: 0.8ms | ActiveRecord: 1.0ms | Allocations: 1329) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mechelle Murphy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$wR0/NCumGYDkwI5ltlBsGucuLB5dR.trA.QBp1uAXQCb4OxnQCfga"], ["created_at", "2020-05-05 18:49:49.075650"], ["updated_at", "2020-05-05 18:49:49.075650"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kasi Ritchie"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZSobyBi79WEFt2.D4RO5NekjsslY4N84dYBl.qo/wWZrsXqLWsBCu"], ["created_at", "2020-05-05 18:49:49.081178"], ["updated_at", "2020-05-05 18:49:49.081178"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leighann Nolan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YvVN82C92XxOTO8xeJhzZ.xll4oq5/02QvPClFTebQ//p4vvzsUgS"], ["created_at", "2020-05-05 18:49:49.086346"], ["updated_at", "2020-05-05 18:49:49.086346"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.4ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sirena Jacobson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VWmIFA.RZvLM26HW3AXUo./5XZXKuNbJKv6D0iovr2dxtHihjYRzO"], ["created_at", "2020-05-05 18:49:49.094016"], ["updated_at", "2020-05-05 18:49:49.094016"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Herbert Kerluke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0RD0c0ccQDbJ4qAHDpx41e4gmmspXXJSe6bC89hDW8qTzx8/ZowJG"], ["created_at", "2020-05-05 18:49:49.098462"], ["updated_at", "2020-05-05 18:49:49.098462"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.4ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dillon Auer V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$S50exfT8ro6k784JnrtE7.CTRdEvY3yUJy3sLyWsWYaSAFPQBeTim"], ["created_at", "2020-05-05 18:49:49.102188"], ["updated_at", "2020-05-05 18:49:49.102188"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Wade Reichel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2UHvJ61iuNh43clh26OMmO74YhlcD4XUnitdjAq7Jo4SdrA/vzklO"], ["created_at", "2020-05-05 18:49:49.107995"], ["updated_at", "2020-05-05 18:49:49.107995"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Ty Becker"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZAQx9AEUzUnOvR9.3Hmy0OmD2luvfsdpOFemRdw3qzfSdgUr0jzXi"], ["created_at", "2020-05-05 18:49:49.112726"], ["updated_at", "2020-05-05 18:49:49.112726"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tomeka Gibson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mNa2Z8ZtjKbt3wBmwE2Un.XrU3tH/W.JDHAb2gs7y.EBQSkQbOWhe"], ["created_at", "2020-05-05 18:49:49.116183"], ["updated_at", "2020-05-05 18:49:49.116183"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kary Shields"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$PecHnN8AomzqliN/lJlYwO0fViPh69k.003ngyszvZiBSq5wWkKwK"], ["created_at", "2020-05-05 18:49:49.119521"], ["updated_at", "2020-05-05 18:49:49.119521"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:49:49 -0300 +Processing by UsersController#index as HTML + User Load (0.3ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (4.96ms) +Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.3ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:49:49 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Foobar"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 401 Unauthorized in 24ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 1622) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nena Parker III"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YIKJfXNcCFiSxZ2spBZY7.4BRn8pXSeYN88MMWCscjZmQ9vOgPw1i"], ["created_at", "2020-05-05 18:49:49.172954"], ["updated_at", "2020-05-05 18:49:49.172954"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kaitlin Little"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aNgHwXSAvzROBuhctEjy.O440iEyu.5PQU7R4jQ74PfFsDbdgb.lu"], ["created_at", "2020-05-05 18:49:49.177546"], ["updated_at", "2020-05-05 18:49:49.177546"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Markita Nicolas"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$zTXHalMsb4K7ZFYbQBMQ1OsnYfOIPF5RKRoTEYrxqDCwHbOAWg4By"], ["created_at", "2020-05-05 18:49:49.180244"], ["updated_at", "2020-05-05 18:49:49.180244"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Nickie Gottlieb"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$QfiTG9ilYdwORU18MIyhIux.ZBQZr6jnmH1ukjRRDGmG7ZFpzxXSG"], ["created_at", "2020-05-05 18:49:49.182820"], ["updated_at", "2020-05-05 18:49:49.182820"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dan Keeling"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VgxcQ8/ISDB59NkRhkr/5Ofz3NyIZUFc.JE/JdC2a.CxLz7G93Twm"], ["created_at", "2020-05-05 18:49:49.185900"], ["updated_at", "2020-05-05 18:49:49.185900"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jude Schmitt"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$YV2B0MxHbWJpKwAvhOJL4OOsF9AtNWJ54usSRLwK1Afvwtb3m7EBu"], ["created_at", "2020-05-05 18:49:49.190332"], ["updated_at", "2020-05-05 18:49:49.190332"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Charlyn Fadel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SqZLtsNFTNI4/1VdDBJHo.uvF/hOL9WoTyEzujA.UB5/5VNXuGKhK"], ["created_at", "2020-05-05 18:49:49.194387"], ["updated_at", "2020-05-05 18:49:49.194387"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Chandra Koelpin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ykUFmT6yWF.G5uVArDrBi.zOR6lYpnoOwDklnbJ3Dwnn3kdNwejOK"], ["created_at", "2020-05-05 18:49:49.196758"], ["updated_at", "2020-05-05 18:49:49.196758"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jewel Breitenberg"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$R1q5Rl1qHDzUaiIUZoiOAef16MIpyJkcMzmrUOGVamsbmg85DEjWO"], ["created_at", "2020-05-05 18:49:49.199106"], ["updated_at", "2020-05-05 18:49:49.199106"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Maryanna Weber"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JV7fTSRZIt85YVgs0Zvca.nfc4KvbqXxtdYfpqWtxI2PaGRNZQtry"], ["created_at", "2020-05-05 18:49:49.201538"], ["updated_at", "2020-05-05 18:49:49.201538"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:49:49 -0300 +Processing by UsersController#index as HTML + User Load (0.4ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.52ms) +Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.4ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:49:49 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.05ms) +Completed 401 Unauthorized in 3ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 1597) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.0ms) rollback transaction +  (4.8ms) SELECT sqlite_version(*) +  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "schema_sha1"]] +  (0.1ms) SELECT sqlite_version(*) +  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.2ms) PRAGMA foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys +  (0.0ms) PRAGMA defer_foreign_keys = ON +  (0.0ms) PRAGMA foreign_keys = OFF +  (107.6ms) DELETE FROM "meetings"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'meetings'; +  (87.9ms) DELETE FROM "user_meets"; +  (0.3ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.2ms) DELETE FROM sqlite_sequence where name = 'user_meets'; +  (84.6ms) DELETE FROM "user_meetings"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.4ms) DELETE FROM sqlite_sequence where name = 'user_meetings'; +  (66.5ms) DELETE FROM "meets"; +  (0.5ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'meets'; +  (113.1ms) DELETE FROM "conversations"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'conversations'; +  (105.4ms) DELETE FROM "messagems"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.7ms) DELETE FROM sqlite_sequence where name = 'messagems'; +  (97.1ms) DELETE FROM "users"; +  (0.6ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence'; +  (0.5ms) DELETE FROM sqlite_sequence where name = 'users'; +  (0.2ms) PRAGMA defer_foreign_keys = 0 +  (0.2ms) PRAGMA foreign_keys = 1 +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.0ms) begin transaction +  (0.0ms) SAVEPOINT active_record_1 +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (0.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (4.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Clinton Langworth"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OHsosSd.yYRzi5qezW4i1OeQSO.Kw4.7mxFtBrZoyLsolgXs51FEa"], ["created_at", "2020-05-05 18:52:07.534621"], ["updated_at", "2020-05-05 18:52:07.534621"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dignissimos"], ["description", "Inventore amet perspiciatis et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:07.542176"], ["updated_at", "2020-05-05 18:52:07.542176"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem quidem libero cum?"], ["description", "Qui ut porro vel."], ["date", "2020-05-06 18:52:07.544166"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.556052"], ["updated_at", "2020-05-05 18:52:07.556052"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis minima et neque?"], ["description", "Quasi et soluta perferendis."], ["date", "2020-05-06 18:52:07.557843"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.558686"], ["updated_at", "2020-05-05 18:52:07.558686"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur hic eos sapiente?"], ["description", "Nostrum adipisci velit omnis."], ["date", "2020-05-06 18:52:07.559885"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.560590"], ["updated_at", "2020-05-05 18:52:07.560590"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit dolorem aspernatur molestiae?"], ["description", "Et vel assumenda modi."], ["date", "2020-05-06 18:52:07.561804"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.562587"], ["updated_at", "2020-05-05 18:52:07.562587"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt odit aliquid non?"], ["description", "Odio ipsa iure rerum."], ["date", "2020-05-06 18:52:07.563973"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.564834"], ["updated_at", "2020-05-05 18:52:07.564834"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et ea alias est?"], ["description", "Ut quaerat voluptas laudantium."], ["date", "2020-05-06 18:52:07.566606"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.567879"], ["updated_at", "2020-05-05 18:52:07.567879"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia tempore ullam magnam?"], ["description", "Debitis quae placeat sit."], ["date", "2020-05-06 18:52:07.569311"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.570025"], ["updated_at", "2020-05-05 18:52:07.570025"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati ducimus excepturi reprehenderit?"], ["description", "Id culpa laboriosam placeat."], ["date", "2020-05-06 18:52:07.571469"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.572628"], ["updated_at", "2020-05-05 18:52:07.572628"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores recusandae perspiciatis maiores?"], ["description", "Explicabo ullam magni accusamus."], ["date", "2020-05-06 18:52:07.573961"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.574669"], ["updated_at", "2020-05-05 18:52:07.574669"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatibus laboriosam omnis omnis?"], ["description", "Est facilis eos magni."], ["date", "2020-05-06 18:52:07.576760"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.577647"], ["updated_at", "2020-05-05 18:52:07.577647"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui impedit consequatur consequuntur?"], ["description", "Quia dolor inventore pariatur."], ["date", "2020-05-06 18:52:07.578938"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.579737"], ["updated_at", "2020-05-05 18:52:07.579737"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam qui rerum voluptatem?"], ["description", "Expedita minima officiis ducimus."], ["date", "2020-05-06 18:52:07.581030"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.581812"], ["updated_at", "2020-05-05 18:52:07.581812"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit aliquid ut qui?"], ["description", "Quaerat dolores quisquam ipsam."], ["date", "2020-05-06 18:52:07.583191"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.583959"], ["updated_at", "2020-05-05 18:52:07.583959"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorum ipsam natus labore?"], ["description", "Modi voluptatem non voluptas."], ["date", "2020-05-06 18:52:07.585169"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.585957"], ["updated_at", "2020-05-05 18:52:07.585957"]] +  (0.3ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea tempora aliquid est?"], ["description", "Illum esse veniam omnis."], ["date", "2020-05-06 18:52:07.589076"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.590122"], ["updated_at", "2020-05-05 18:52:07.590122"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem repellendus et sint?"], ["description", "Quisquam esse est omnis."], ["date", "2020-05-06 18:52:07.591742"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.592543"], ["updated_at", "2020-05-05 18:52:07.592543"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae aut corrupti vitae?"], ["description", "Voluptatem mollitia rerum et."], ["date", "2020-05-06 18:52:07.593770"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.594471"], ["updated_at", "2020-05-05 18:52:07.594471"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Explicabo asperiores dolores exercitationem?"], ["description", "Dolorem eum rerum vel."], ["date", "2020-05-06 18:52:07.595674"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.596486"], ["updated_at", "2020-05-05 18:52:07.596486"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet ullam sequi sed?"], ["description", "Modi ducimus est sequi."], ["date", "2020-05-06 18:52:07.597823"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.598574"], ["updated_at", "2020-05-05 18:52:07.598574"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum laudantium adipisci et?"], ["description", "Accusamus culpa magnam qui."], ["date", "2020-05-06 18:52:07.599747"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.600496"], ["updated_at", "2020-05-05 18:52:07.600496"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:52:07 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (7.9ms) +Completed 200 OK in 35ms (Views: 16.2ms | ActiveRecord: 0.5ms | Allocations: 8581) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Gil Kohler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$XBWItIc3aPbmxXgkFW2EG.rNwxtOlJ1wkiDdiB87/z/OPsq83J69C"], ["created_at", "2020-05-05 18:52:07.672671"], ["updated_at", "2020-05-05 18:52:07.672671"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Perspiciatis reprehenderit sed illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:07.676679"], ["updated_at", "2020-05-05 18:52:07.676679"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur sed odio quia?"], ["description", "Ut laboriosam inventore aliquid."], ["date", "2020-05-06 18:52:07.678326"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.679300"], ["updated_at", "2020-05-05 18:52:07.679300"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam quis ea eos?"], ["description", "Et minus fugiat eius."], ["date", "2020-05-06 18:52:07.680635"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.681430"], ["updated_at", "2020-05-05 18:52:07.681430"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est quia aspernatur temporibus?"], ["description", "Quis laudantium est in."], ["date", "2020-05-06 18:52:07.682668"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.683379"], ["updated_at", "2020-05-05 18:52:07.683379"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At laborum vitae quisquam?"], ["description", "Ratione omnis et est."], ["date", "2020-05-06 18:52:07.684508"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.685210"], ["updated_at", "2020-05-05 18:52:07.685210"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores odio soluta ut?"], ["description", "Tempora quia cupiditate velit."], ["date", "2020-05-06 18:52:07.686738"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.689180"], ["updated_at", "2020-05-05 18:52:07.689180"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laudantium atque aliquam laborum?"], ["description", "Magni labore aut nesciunt."], ["date", "2020-05-06 18:52:07.691838"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.692774"], ["updated_at", "2020-05-05 18:52:07.692774"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem quia odio vel?"], ["description", "Cum rerum ea aperiam."], ["date", "2020-05-06 18:52:07.694074"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.694847"], ["updated_at", "2020-05-05 18:52:07.694847"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum molestiae esse dicta?"], ["description", "Ducimus ut dignissimos earum."], ["date", "2020-05-06 18:52:07.696115"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.696841"], ["updated_at", "2020-05-05 18:52:07.696841"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "A et tempore voluptatem?"], ["description", "Non sed explicabo veniam."], ["date", "2020-05-06 18:52:07.698358"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.699128"], ["updated_at", "2020-05-05 18:52:07.699128"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus ratione quia reiciendis?"], ["description", "Fugit et quo enim."], ["date", "2020-05-06 18:52:07.701461"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.702363"], ["updated_at", "2020-05-05 18:52:07.702363"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Optio quisquam voluptatem autem?"], ["description", "Et et et fugiat."], ["date", "2020-05-06 18:52:07.703847"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.704641"], ["updated_at", "2020-05-05 18:52:07.704641"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellendus nam pariatur eos?"], ["description", "Dicta doloribus exercitationem voluptatem."], ["date", "2020-05-06 18:52:07.706743"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.707997"], ["updated_at", "2020-05-05 18:52:07.707997"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magnam ad necessitatibus reiciendis?"], ["description", "Et nihil ex neque."], ["date", "2020-05-06 18:52:07.709722"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.710577"], ["updated_at", "2020-05-05 18:52:07.710577"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fuga alias vel earum?"], ["description", "Omnis aut et sit."], ["date", "2020-05-06 18:52:07.712170"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.712981"], ["updated_at", "2020-05-05 18:52:07.712981"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et fugiat consequatur et?"], ["description", "Magni vel saepe qui."], ["date", "2020-05-06 18:52:07.714365"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.715065"], ["updated_at", "2020-05-05 18:52:07.715065"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius ratione sed cumque?"], ["description", "Nesciunt id quisquam a."], ["date", "2020-05-06 18:52:07.716349"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.717032"], ["updated_at", "2020-05-05 18:52:07.717032"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia deleniti quia voluptatibus?"], ["description", "Ut quibusdam laborum repellat."], ["date", "2020-05-06 18:52:07.718341"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.719020"], ["updated_at", "2020-05-05 18:52:07.719020"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptate et quo architecto?"], ["description", "Ratione aspernatur ut dolorem."], ["date", "2020-05-06 18:52:07.720259"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.721751"], ["updated_at", "2020-05-05 18:52:07.721751"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eligendi voluptatibus molestiae quaerat?"], ["description", "Optio repellat expedita dolores."], ["date", "2020-05-06 18:52:07.723460"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.724439"], ["updated_at", "2020-05-05 18:52:07.724439"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates iure rerum sit?"], ["description", "Dolorum voluptas architecto minima."], ["date", "2020-05-06 18:52:07.725852"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.726763"], ["updated_at", "2020-05-05 18:52:07.726763"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:52:07 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meeting::ActiveRecord_Associations_CollectionProxy (8.0ms) +Completed 200 OK in 11ms (Views: 9.9ms | ActiveRecord: 0.3ms | Allocations: 5511) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.7ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Octavio Boyle"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GJpl62mt0r5wcRFLxEo1u.OyV/1pUnb8wIl/t8FlGhn/BMMN7A6lG"], ["created_at", "2020-05-05 18:52:07.756187"], ["updated_at", "2020-05-05 18:52:07.756187"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sint"], ["description", "Incidunt numquam laborum placeat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:07.760046"], ["updated_at", "2020-05-05 18:52:07.760046"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum adipisci rerum reiciendis?"], ["description", "Voluptatem accusamus non non."], ["date", "2020-05-06 18:52:07.761815"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.762801"], ["updated_at", "2020-05-05 18:52:07.762801"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Delectus voluptas harum quia?"], ["description", "Sequi aut suscipit quia."], ["date", "2020-05-06 18:52:07.764162"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.764866"], ["updated_at", "2020-05-05 18:52:07.764866"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Numquam temporibus laboriosam voluptates?"], ["description", "In sed vel et."], ["date", "2020-05-06 18:52:07.765987"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.766737"], ["updated_at", "2020-05-05 18:52:07.766737"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi velit magni occaecati?"], ["description", "Tempora accusantium amet earum."], ["date", "2020-05-06 18:52:07.768682"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.769914"], ["updated_at", "2020-05-05 18:52:07.769914"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem culpa blanditiis et?"], ["description", "Qui et perferendis accusantium."], ["date", "2020-05-06 18:52:07.772091"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.773618"], ["updated_at", "2020-05-05 18:52:07.773618"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi odio consectetur nulla?"], ["description", "Et molestiae id voluptas."], ["date", "2020-05-06 18:52:07.775071"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.775831"], ["updated_at", "2020-05-05 18:52:07.775831"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia et dicta esse?"], ["description", "Aspernatur ex ea non."], ["date", "2020-05-06 18:52:07.776998"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.777712"], ["updated_at", "2020-05-05 18:52:07.777712"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos alias nulla aut?"], ["description", "Iste enim dolorem corporis."], ["date", "2020-05-06 18:52:07.778886"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.779584"], ["updated_at", "2020-05-05 18:52:07.779584"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum corrupti tenetur voluptas?"], ["description", "Quia tempora voluptatum eos."], ["date", "2020-05-06 18:52:07.780780"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.781532"], ["updated_at", "2020-05-05 18:52:07.781532"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident expedita voluptatem nemo?"], ["description", "Sed tempora omnis sunt."], ["date", "2020-05-06 18:52:07.783395"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.784164"], ["updated_at", "2020-05-05 18:52:07.784164"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laborum beatae ullam optio?"], ["description", "Distinctio harum eius soluta."], ["date", "2020-05-06 18:52:07.785601"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.786445"], ["updated_at", "2020-05-05 18:52:07.786445"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi dolores cupiditate dolor?"], ["description", "Exercitationem explicabo adipisci ipsam."], ["date", "2020-05-06 18:52:07.787977"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.789557"], ["updated_at", "2020-05-05 18:52:07.789557"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius adipisci consequatur ea?"], ["description", "Eum dicta temporibus quaerat."], ["date", "2020-05-06 18:52:07.791372"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.792243"], ["updated_at", "2020-05-05 18:52:07.792243"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum distinctio vero quas?"], ["description", "Et voluptatem ut aut."], ["date", "2020-05-06 18:52:07.793517"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.794245"], ["updated_at", "2020-05-05 18:52:07.794245"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non totam consequatur tempore?"], ["description", "Sint non rem quibusdam."], ["date", "2020-05-06 18:52:07.795496"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.796199"], ["updated_at", "2020-05-05 18:52:07.796199"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere error qui quibusdam?"], ["description", "Autem suscipit eum rerum."], ["date", "2020-05-06 18:52:07.797418"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.798142"], ["updated_at", "2020-05-05 18:52:07.798142"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequuntur cupiditate sapiente veniam?"], ["description", "Voluptas alias dignissimos illo."], ["date", "2020-05-06 18:52:07.799385"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.800125"], ["updated_at", "2020-05-05 18:52:07.800125"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reiciendis distinctio est dolorem?"], ["description", "Esse nemo illum eveniet."], ["date", "2020-05-06 18:52:07.801766"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.802598"], ["updated_at", "2020-05-05 18:52:07.802598"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut voluptas aut molestiae?"], ["description", "Velit facilis aut voluptatibus."], ["date", "2020-05-06 18:52:07.803752"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.804510"], ["updated_at", "2020-05-05 18:52:07.804510"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptate et maxime rerum?"], ["description", "Corporis accusamus atque eaque."], ["date", "2020-05-06 18:52:07.806338"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.807278"], ["updated_at", "2020-05-05 18:52:07.807278"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:52:07 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 6ms (Views: 4.6ms | ActiveRecord: 0.1ms | Allocations: 865) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (3.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lorenzo Morissette"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ZgO7xm5ILroFMVfGODzpI.h3v9Mu.5wsW1pvfUyiEoGt6Dck9S1aO"], ["created_at", "2020-05-05 18:52:07.827992"], ["updated_at", "2020-05-05 18:52:07.827992"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Voluptatem architecto et magni."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:07.833659"], ["updated_at", "2020-05-05 18:52:07.833659"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem assumenda quas facere?"], ["description", "Temporibus inventore doloremque odio."], ["date", "2020-05-06 18:52:07.835452"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.836503"], ["updated_at", "2020-05-05 18:52:07.836503"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis vel quia placeat?"], ["description", "Iure vel est fugit."], ["date", "2020-05-06 18:52:07.837957"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.838874"], ["updated_at", "2020-05-05 18:52:07.838874"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Odit in illo et?"], ["description", "Cupiditate officia nihil fugiat."], ["date", "2020-05-06 18:52:07.841010"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.842076"], ["updated_at", "2020-05-05 18:52:07.842076"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quaerat est qui quod?"], ["description", "Non vitae neque aut."], ["date", "2020-05-06 18:52:07.843573"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.844394"], ["updated_at", "2020-05-05 18:52:07.844394"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eveniet a vitae non?"], ["description", "Dolor occaecati ea quidem."], ["date", "2020-05-06 18:52:07.845585"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.846294"], ["updated_at", "2020-05-05 18:52:07.846294"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est ab cumque perferendis?"], ["description", "Corporis ut beatae est."], ["date", "2020-05-06 18:52:07.847920"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.849581"], ["updated_at", "2020-05-05 18:52:07.849581"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque nulla accusamus et?"], ["description", "Maxime aut ut quidem."], ["date", "2020-05-06 18:52:07.851568"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.852552"], ["updated_at", "2020-05-05 18:52:07.852552"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Natus qui veritatis quibusdam?"], ["description", "Quo accusantium enim ratione."], ["date", "2020-05-06 18:52:07.853945"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.854726"], ["updated_at", "2020-05-05 18:52:07.854726"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Beatae inventore nobis consectetur?"], ["description", "Harum quam explicabo voluptate."], ["date", "2020-05-06 18:52:07.855839"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.856539"], ["updated_at", "2020-05-05 18:52:07.856539"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officia excepturi sequi est?"], ["description", "Eligendi nam minus cumque."], ["date", "2020-05-06 18:52:07.858339"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.859115"], ["updated_at", "2020-05-05 18:52:07.859115"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam quo quia unde?"], ["description", "Alias qui sit rerum."], ["date", "2020-05-06 18:52:07.860422"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.861174"], ["updated_at", "2020-05-05 18:52:07.861174"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eum sunt rem esse?"], ["description", "Iste eveniet quibusdam est."], ["date", "2020-05-06 18:52:07.862473"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.863208"], ["updated_at", "2020-05-05 18:52:07.863208"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea provident ad dolorum?"], ["description", "Eos est quo velit."], ["date", "2020-05-06 18:52:07.864405"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.865123"], ["updated_at", "2020-05-05 18:52:07.865123"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vero consequuntur atque architecto?"], ["description", "Sit voluptas voluptatibus corporis."], ["date", "2020-05-06 18:52:07.866354"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.867090"], ["updated_at", "2020-05-05 18:52:07.867090"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium odit facilis error?"], ["description", "Voluptatibus aliquid et nemo."], ["date", "2020-05-06 18:52:07.869134"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.870331"], ["updated_at", "2020-05-05 18:52:07.870331"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Corporis eum est hic?"], ["description", "Doloremque consequatur doloribus aspernatur."], ["date", "2020-05-06 18:52:07.872006"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.873896"], ["updated_at", "2020-05-05 18:52:07.873896"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laudantium modi et reiciendis?"], ["description", "Omnis et enim impedit."], ["date", "2020-05-06 18:52:07.875650"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.876638"], ["updated_at", "2020-05-05 18:52:07.876638"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem culpa vel illum?"], ["description", "Deserunt quae similique vel."], ["date", "2020-05-06 18:52:07.877983"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.878764"], ["updated_at", "2020-05-05 18:52:07.878764"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facilis omnis sed adipisci?"], ["description", "Architecto quibusdam fugit consequatur."], ["date", "2020-05-06 18:52:07.879921"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.880677"], ["updated_at", "2020-05-05 18:52:07.880677"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed suscipit ipsum commodi?"], ["description", "Natus aliquam a provident."], ["date", "2020-05-06 18:52:07.881909"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.882640"], ["updated_at", "2020-05-05 18:52:07.882640"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/0/meetings" for 127.0.0.1 at 2020-05-05 15:52:07 -0300 +Processing by MeetingsController#index as HTML + Parameters: {"meet_id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.4ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alden Aufderhar DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$4ZdTZMZFzySRImJBIrklZupUp9wJcFEaL7x9yH/0Z4o7.jRS1pNF."], ["created_at", "2020-05-05 18:52:07.902709"], ["updated_at", "2020-05-05 18:52:07.902709"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Dolores sint aut qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:07.906205"], ["updated_at", "2020-05-05 18:52:07.906205"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit vel nesciunt molestiae?"], ["description", "Repellat ipsam eos est."], ["date", "2020-05-06 18:52:07.908211"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.910023"], ["updated_at", "2020-05-05 18:52:07.910023"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tempora dolor et nihil?"], ["description", "Ut cumque rem eaque."], ["date", "2020-05-06 18:52:07.912067"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.913429"], ["updated_at", "2020-05-05 18:52:07.913429"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quo ut ad tempora?"], ["description", "Similique temporibus labore quasi."], ["date", "2020-05-06 18:52:07.914859"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.915609"], ["updated_at", "2020-05-05 18:52:07.915609"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quas iusto natus blanditiis?"], ["description", "Iste eaque incidunt corrupti."], ["date", "2020-05-06 18:52:07.916773"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.917461"], ["updated_at", "2020-05-05 18:52:07.917461"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sequi non natus ipsam?"], ["description", "Perferendis enim quia laborum."], ["date", "2020-05-06 18:52:07.918720"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.919422"], ["updated_at", "2020-05-05 18:52:07.919422"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi illo cum omnis?"], ["description", "Amet vitae repellendus omnis."], ["date", "2020-05-06 18:52:07.920817"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.921978"], ["updated_at", "2020-05-05 18:52:07.921978"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Expedita neque ut eos?"], ["description", "Consectetur quos molestiae doloribus."], ["date", "2020-05-06 18:52:07.923714"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.924566"], ["updated_at", "2020-05-05 18:52:07.924566"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa est recusandae fugiat?"], ["description", "Unde culpa ipsum voluptatem."], ["date", "2020-05-06 18:52:07.925742"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.926426"], ["updated_at", "2020-05-05 18:52:07.926426"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.0ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptates enim dolore molestiae?"], ["description", "Inventore pariatur quidem tenetur."], ["date", "2020-05-06 18:52:07.927599"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.928521"], ["updated_at", "2020-05-05 18:52:07.928521"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id natus dolorum officia?"], ["description", "Et et quo minus."], ["date", "2020-05-06 18:52:07.931297"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.932669"], ["updated_at", "2020-05-05 18:52:07.932669"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis commodi voluptatem et?"], ["description", "Eius id nihil ab."], ["date", "2020-05-06 18:52:07.934233"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.935030"], ["updated_at", "2020-05-05 18:52:07.935030"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut excepturi vero est?"], ["description", "Excepturi repellat et dicta."], ["date", "2020-05-06 18:52:07.936204"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.936911"], ["updated_at", "2020-05-05 18:52:07.936911"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla quisquam a quis?"], ["description", "Eius iusto est animi."], ["date", "2020-05-06 18:52:07.938100"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.938978"], ["updated_at", "2020-05-05 18:52:07.938978"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam adipisci iste ut?"], ["description", "Et voluptatibus eos voluptatem."], ["date", "2020-05-06 18:52:07.941009"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.941942"], ["updated_at", "2020-05-05 18:52:07.941942"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et est praesentium molestias?"], ["description", "Et ab nobis est."], ["date", "2020-05-06 18:52:07.943133"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.943830"], ["updated_at", "2020-05-05 18:52:07.943830"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis incidunt eligendi eos?"], ["description", "Perspiciatis aut ducimus doloribus."], ["date", "2020-05-06 18:52:07.945006"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.945806"], ["updated_at", "2020-05-05 18:52:07.945806"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente quos et blanditiis?"], ["description", "Odit in autem quibusdam."], ["date", "2020-05-06 18:52:07.947236"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.948355"], ["updated_at", "2020-05-05 18:52:07.948355"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nostrum iste natus in?"], ["description", "Dolorem culpa hic aut."], ["date", "2020-05-06 18:52:07.950616"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.951668"], ["updated_at", "2020-05-05 18:52:07.951668"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni corporis reiciendis enim?"], ["description", "Sunt cumque nobis odit."], ["date", "2020-05-06 18:52:07.953254"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.954793"], ["updated_at", "2020-05-05 18:52:07.954793"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Amet ad ut id?"], ["description", "Et ipsa aut ipsum."], ["date", "2020-05-06 18:52:07.956936"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.957952"], ["updated_at", "2020-05-05 18:52:07.957952"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:52:07 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.3ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.74ms) +Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.4ms | Allocations: 1085) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Song Hansen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JHOVzlsTlbhyKj5pu/taXu1F1rMZzVbwPofHBUHuQqVPbF7WFa.VC"], ["created_at", "2020-05-05 18:52:07.977412"], ["updated_at", "2020-05-05 18:52:07.977412"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatibus"], ["description", "Dolorem debitis perferendis ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:07.980285"], ["updated_at", "2020-05-05 18:52:07.980285"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugiat eos totam iusto?"], ["description", "Ut accusantium est officiis."], ["date", "2020-05-06 18:52:07.981960"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.983032"], ["updated_at", "2020-05-05 18:52:07.983032"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam velit commodi quod?"], ["description", "Voluptas non accusamus aperiam."], ["date", "2020-05-06 18:52:07.984398"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.985143"], ["updated_at", "2020-05-05 18:52:07.985143"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem iure magnam laborum?"], ["description", "Provident et ipsum eos."], ["date", "2020-05-06 18:52:07.986350"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.987074"], ["updated_at", "2020-05-05 18:52:07.987074"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nulla non in velit?"], ["description", "Officiis distinctio dolorum odio."], ["date", "2020-05-06 18:52:07.988365"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.990236"], ["updated_at", "2020-05-05 18:52:07.990236"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id et voluptatum blanditiis?"], ["description", "Enim excepturi et quam."], ["date", "2020-05-06 18:52:07.992421"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.993348"], ["updated_at", "2020-05-05 18:52:07.993348"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sint maxime libero saepe?"], ["description", "Voluptatem iusto quas ea."], ["date", "2020-05-06 18:52:07.994665"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.995589"], ["updated_at", "2020-05-05 18:52:07.995589"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est est eos corrupti?"], ["description", "Sapiente quis quidem nostrum."], ["date", "2020-05-06 18:52:07.997051"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:07.997962"], ["updated_at", "2020-05-05 18:52:07.997962"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut velit sed quis?"], ["description", "Expedita quas sapiente sed."], ["date", "2020-05-06 18:52:07.999512"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.000860"], ["updated_at", "2020-05-05 18:52:08.000860"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem voluptatem sint et?"], ["description", "Soluta similique fugit deserunt."], ["date", "2020-05-06 18:52:08.003136"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.004622"], ["updated_at", "2020-05-05 18:52:08.004622"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis quis et quia?"], ["description", "Soluta deserunt ullam ut."], ["date", "2020-05-06 18:52:08.009256"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.010915"], ["updated_at", "2020-05-05 18:52:08.010915"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem aut ipsa consequuntur?"], ["description", "Assumenda numquam quas minima."], ["date", "2020-05-06 18:52:08.012590"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.013553"], ["updated_at", "2020-05-05 18:52:08.013553"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est similique autem ad?"], ["description", "Impedit ad aspernatur aperiam."], ["date", "2020-05-06 18:52:08.014954"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.015829"], ["updated_at", "2020-05-05 18:52:08.015829"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque laudantium necessitatibus non?"], ["description", "Ex ratione dignissimos corrupti."], ["date", "2020-05-06 18:52:08.017321"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.018259"], ["updated_at", "2020-05-05 18:52:08.018259"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure quis ut inventore?"], ["description", "Et ipsum omnis porro."], ["date", "2020-05-06 18:52:08.019783"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.020969"], ["updated_at", "2020-05-05 18:52:08.020969"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Laudantium culpa quo voluptatibus?"], ["description", "Voluptate odio saepe consequatur."], ["date", "2020-05-06 18:52:08.023409"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.025690"], ["updated_at", "2020-05-05 18:52:08.025690"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.2ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Modi alias quo aut?"], ["description", "Quis ab cupiditate voluptatum."], ["date", "2020-05-06 18:52:08.027936"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.029660"], ["updated_at", "2020-05-05 18:52:08.029660"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere veritatis ea similique?"], ["description", "Voluptatibus quibusdam voluptatem aut."], ["date", "2020-05-06 18:52:08.031950"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.032936"], ["updated_at", "2020-05-05 18:52:08.032936"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et ullam non laudantium?"], ["description", "Porro voluptates eos in."], ["date", "2020-05-06 18:52:08.034657"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.035777"], ["updated_at", "2020-05-05 18:52:08.035777"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem nam non alias?"], ["description", "Ex iste facere tempora."], ["date", "2020-05-06 18:52:08.037403"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.038257"], ["updated_at", "2020-05-05 18:52:08.038257"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis atque qui molestiae?"], ["description", "Saepe blanditiis sed cumque."], ["date", "2020-05-06 18:52:08.040403"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.041421"], ["updated_at", "2020-05-05 18:52:08.041421"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:52:08 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meeting (0.71ms) +Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.2ms | Allocations: 1057) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (8.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jorge Bode"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$iAeH3piuYBtxEho1QeDWIeQ3FvM/RpCexpsql/cvHzdLJek4wtJG."], ["created_at", "2020-05-05 18:52:08.060156"], ["updated_at", "2020-05-05 18:52:08.060156"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "explicabo"], ["description", "Deleniti dolorem aut quidem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.063078"], ["updated_at", "2020-05-05 18:52:08.063078"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut consequatur recusandae asperiores?"], ["description", "Est ut quaerat fugiat."], ["date", "2020-05-06 18:52:08.064588"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.065542"], ["updated_at", "2020-05-05 18:52:08.065542"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur quia rerum aspernatur?"], ["description", "Eius impedit id saepe."], ["date", "2020-05-06 18:52:08.067126"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.067934"], ["updated_at", "2020-05-05 18:52:08.067934"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam labore non distinctio?"], ["description", "Enim fugit minus officiis."], ["date", "2020-05-06 18:52:08.069765"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.071727"], ["updated_at", "2020-05-05 18:52:08.071727"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit natus ab ratione?"], ["description", "Excepturi ut consequatur fugit."], ["date", "2020-05-06 18:52:08.074693"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.076317"], ["updated_at", "2020-05-05 18:52:08.076317"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores voluptatibus vero aut?"], ["description", "Ex unde quis at."], ["date", "2020-05-06 18:52:08.077974"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.079153"], ["updated_at", "2020-05-05 18:52:08.079153"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum dolores laboriosam molestias?"], ["description", "Mollitia dolorum in voluptatum."], ["date", "2020-05-06 18:52:08.081439"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.082791"], ["updated_at", "2020-05-05 18:52:08.082791"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur asperiores cum quasi?"], ["description", "Non facere illum consequatur."], ["date", "2020-05-06 18:52:08.084596"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.085516"], ["updated_at", "2020-05-05 18:52:08.085516"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Officiis facere est nam?"], ["description", "Aliquam aut doloribus animi."], ["date", "2020-05-06 18:52:08.086794"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.087523"], ["updated_at", "2020-05-05 18:52:08.087523"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.9ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quis fuga eaque dolores?"], ["description", "Omnis sit sed dolorem."], ["date", "2020-05-06 18:52:08.088717"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.090463"], ["updated_at", "2020-05-05 18:52:08.090463"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est inventore corporis consequatur?"], ["description", "Corporis consequatur id dolore."], ["date", "2020-05-06 18:52:08.093229"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.094223"], ["updated_at", "2020-05-05 18:52:08.094223"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perspiciatis nemo voluptatem molestias?"], ["description", "Id voluptates adipisci ipsum."], ["date", "2020-05-06 18:52:08.095937"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.096967"], ["updated_at", "2020-05-05 18:52:08.096967"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem quae nesciunt eius?"], ["description", "Rerum maiores quia deleniti."], ["date", "2020-05-06 18:52:08.098393"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.099142"], ["updated_at", "2020-05-05 18:52:08.099142"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Harum quo doloremque fugiat?"], ["description", "Culpa ut consequuntur hic."], ["date", "2020-05-06 18:52:08.100336"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.101086"], ["updated_at", "2020-05-05 18:52:08.101086"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis reprehenderit autem quibusdam?"], ["description", "Qui non impedit aut."], ["date", "2020-05-06 18:52:08.102417"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.103160"], ["updated_at", "2020-05-05 18:52:08.103160"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maxime minima nisi accusantium?"], ["description", "Ipsa ut omnis amet."], ["date", "2020-05-06 18:52:08.104385"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.105104"], ["updated_at", "2020-05-05 18:52:08.105104"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Enim deleniti illum quasi?"], ["description", "Ea sint quis reprehenderit."], ["date", "2020-05-06 18:52:08.106863"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.107790"], ["updated_at", "2020-05-05 18:52:08.107790"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non iure consequatur animi?"], ["description", "Est suscipit sequi et."], ["date", "2020-05-06 18:52:08.109433"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.110692"], ["updated_at", "2020-05-05 18:52:08.110692"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui distinctio vel voluptates?"], ["description", "Aut placeat quia illo."], ["date", "2020-05-06 18:52:08.112441"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.113385"], ["updated_at", "2020-05-05 18:52:08.113385"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reiciendis voluptas molestias quis?"], ["description", "Accusantium consectetur iure voluptas."], ["date", "2020-05-06 18:52:08.114663"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.115418"], ["updated_at", "2020-05-05 18:52:08.115418"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eos laudantium eos pariatur?"], ["description", "Consequuntur ut tenetur alias."], ["date", "2020-05-06 18:52:08.116771"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.117587"], ["updated_at", "2020-05-05 18:52:08.117587"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:52:08 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 404 Not Found in 3ms (Views: 0.7ms | ActiveRecord: 0.2ms | Allocations: 884) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Rudolph Kirlin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OKJdRSeHkKAnJHDMyJ/EhePjkjhu72qZUb1X8t0v6sB8xU.dK8dji"], ["created_at", "2020-05-05 18:52:08.133588"], ["updated_at", "2020-05-05 18:52:08.133588"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "impedit"], ["description", "Asperiores fugiat nihil assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.137271"], ["updated_at", "2020-05-05 18:52:08.137271"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui itaque eos similique?"], ["description", "Ducimus autem optio praesentium."], ["date", "2020-05-06 18:52:08.139422"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.140712"], ["updated_at", "2020-05-05 18:52:08.140712"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Labore placeat veniam soluta?"], ["description", "Id aperiam ipsa accusantium."], ["date", "2020-05-06 18:52:08.142382"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.143204"], ["updated_at", "2020-05-05 18:52:08.143204"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias vel similique et?"], ["description", "Ut iste rem inventore."], ["date", "2020-05-06 18:52:08.163951"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.164880"], ["updated_at", "2020-05-05 18:52:08.164880"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem eos aut maxime?"], ["description", "Illum nihil rerum vero."], ["date", "2020-05-06 18:52:08.166128"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.166875"], ["updated_at", "2020-05-05 18:52:08.166875"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium incidunt nemo labore?"], ["description", "Sed quia omnis repellendus."], ["date", "2020-05-06 18:52:08.168052"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.168748"], ["updated_at", "2020-05-05 18:52:08.168748"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut ut deleniti delectus?"], ["description", "Voluptas totam hic eos."], ["date", "2020-05-06 18:52:08.170252"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.171842"], ["updated_at", "2020-05-05 18:52:08.171842"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Mollitia hic et aut?"], ["description", "Quas delectus et provident."], ["date", "2020-05-06 18:52:08.173684"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.174617"], ["updated_at", "2020-05-05 18:52:08.174617"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut quia assumenda et?"], ["description", "Distinctio repellat eligendi voluptatem."], ["date", "2020-05-06 18:52:08.175893"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.176611"], ["updated_at", "2020-05-05 18:52:08.176611"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit eum reiciendis enim?"], ["description", "Totam sed ex ut."], ["date", "2020-05-06 18:52:08.177771"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.178495"], ["updated_at", "2020-05-05 18:52:08.178495"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Incidunt in ea omnis?"], ["description", "Magni nihil illum et."], ["date", "2020-05-06 18:52:08.180422"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.181316"], ["updated_at", "2020-05-05 18:52:08.181316"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Commodi voluptatem qui nam?"], ["description", "Qui repudiandae earum pariatur."], ["date", "2020-05-06 18:52:08.182638"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.183406"], ["updated_at", "2020-05-05 18:52:08.183406"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ratione qui voluptatem architecto?"], ["description", "Ut ut quibusdam error."], ["date", "2020-05-06 18:52:08.184576"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.185272"], ["updated_at", "2020-05-05 18:52:08.185272"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam rerum et earum?"], ["description", "Totam autem minus accusantium."], ["date", "2020-05-06 18:52:08.186439"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.187103"], ["updated_at", "2020-05-05 18:52:08.187103"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et quibusdam numquam rerum?"], ["description", "Minus et unde fuga."], ["date", "2020-05-06 18:52:08.188328"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.189194"], ["updated_at", "2020-05-05 18:52:08.189194"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore et sequi distinctio?"], ["description", "Unde et esse maiores."], ["date", "2020-05-06 18:52:08.192197"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.193209"], ["updated_at", "2020-05-05 18:52:08.193209"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut dolorem laborum accusamus?"], ["description", "Corporis qui autem sint."], ["date", "2020-05-06 18:52:08.194559"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.195265"], ["updated_at", "2020-05-05 18:52:08.195265"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut quod vel et?"], ["description", "Ab sit facilis nam."], ["date", "2020-05-06 18:52:08.196432"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.197155"], ["updated_at", "2020-05-05 18:52:08.197155"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illum qui consequuntur sed?"], ["description", "Possimus rerum nisi expedita."], ["date", "2020-05-06 18:52:08.198432"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.199149"], ["updated_at", "2020-05-05 18:52:08.199149"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis nisi quibusdam natus?"], ["description", "Soluta nulla praesentium odit."], ["date", "2020-05-06 18:52:08.200312"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.201248"], ["updated_at", "2020-05-05 18:52:08.201248"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere iste quis et?"], ["description", "Atque placeat sed vero."], ["date", "2020-05-06 18:52:08.202525"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.203258"], ["updated_at", "2020-05-05 18:52:08.203258"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:52:08 -0300 +Processing by MeetingsController#show as HTML + Parameters: {"meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 867) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.8ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Quinn Turcotte PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mX4HGnI85zy.Vnk6sf1dSOI1mB9kZVcw17bwa8F1XCDy4Tvm1wFlO"], ["created_at", "2020-05-05 18:52:08.220260"], ["updated_at", "2020-05-05 18:52:08.220260"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsam"], ["description", "Asperiores sunt sunt quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.224450"], ["updated_at", "2020-05-05 18:52:08.224450"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Deserunt repudiandae dignissimos omnis?"], ["description", "Qui at est soluta."], ["date", "2020-05-06 18:52:08.226257"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.227315"], ["updated_at", "2020-05-05 18:52:08.227315"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.6ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit quis nisi tempore?"], ["description", "Ullam in non quia."], ["date", "2020-05-06 18:52:08.228647"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.229918"], ["updated_at", "2020-05-05 18:52:08.229918"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sunt fugit eveniet occaecati?"], ["description", "Sapiente esse suscipit iusto."], ["date", "2020-05-06 18:52:08.232369"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.233743"], ["updated_at", "2020-05-05 18:52:08.233743"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut qui magnam cupiditate?"], ["description", "Molestiae aliquid veritatis et."], ["date", "2020-05-06 18:52:08.235253"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.236031"], ["updated_at", "2020-05-05 18:52:08.236031"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Cumque incidunt repudiandae qui?"], ["description", "Omnis libero nam rerum."], ["date", "2020-05-06 18:52:08.237241"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.237966"], ["updated_at", "2020-05-05 18:52:08.237966"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae ut voluptas et?"], ["description", "Unde non totam voluptatem."], ["date", "2020-05-06 18:52:08.239652"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.240653"], ["updated_at", "2020-05-05 18:52:08.240653"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia unde officiis quia?"], ["description", "Et officiis et vel."], ["date", "2020-05-06 18:52:08.241960"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.242696"], ["updated_at", "2020-05-05 18:52:08.242696"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Architecto numquam et sapiente?"], ["description", "Voluptatibus eum et sint."], ["date", "2020-05-06 18:52:08.243858"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.244564"], ["updated_at", "2020-05-05 18:52:08.244564"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Itaque iure quis aut?"], ["description", "Quidem perferendis sint repudiandae."], ["date", "2020-05-06 18:52:08.245739"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.246580"], ["updated_at", "2020-05-05 18:52:08.246580"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ut nihil ducimus similique?"], ["description", "Enim inventore sit vel."], ["date", "2020-05-06 18:52:08.248365"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.249188"], ["updated_at", "2020-05-05 18:52:08.249188"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea eaque quae voluptas?"], ["description", "Itaque pariatur repellendus veritatis."], ["date", "2020-05-06 18:52:08.251330"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.252431"], ["updated_at", "2020-05-05 18:52:08.252431"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Velit qui dolores officiis?"], ["description", "Eaque fugiat animi voluptatum."], ["date", "2020-05-06 18:52:08.253996"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.255321"], ["updated_at", "2020-05-05 18:52:08.255321"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel atque corporis aliquam?"], ["description", "Dolores nam animi doloremque."], ["date", "2020-05-06 18:52:08.256893"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.257710"], ["updated_at", "2020-05-05 18:52:08.257710"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia accusantium nemo ut?"], ["description", "Ullam reiciendis qui sit."], ["date", "2020-05-06 18:52:08.259000"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.259687"], ["updated_at", "2020-05-05 18:52:08.259687"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro ut qui vel?"], ["description", "Sunt quia labore voluptatem."], ["date", "2020-05-06 18:52:08.260961"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.261680"], ["updated_at", "2020-05-05 18:52:08.261680"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Alias nemo dolores sed?"], ["description", "Odio fuga sint ratione."], ["date", "2020-05-06 18:52:08.262875"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.263563"], ["updated_at", "2020-05-05 18:52:08.263563"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure et molestias nam?"], ["description", "Numquam nostrum vel inventore."], ["date", "2020-05-06 18:52:08.264680"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.265413"], ["updated_at", "2020-05-05 18:52:08.265413"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repudiandae quo consequatur adipisci?"], ["description", "Blanditiis optio similique eligendi."], ["date", "2020-05-06 18:52:08.266623"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.267304"], ["updated_at", "2020-05-05 18:52:08.267304"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel totam consequatur error?"], ["description", "Dolorem expedita molestiae et."], ["date", "2020-05-06 18:52:08.268527"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.269244"], ["updated_at", "2020-05-05 18:52:08.269244"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor molestias laudantium recusandae?"], ["description", "Voluptatum aspernatur ab corrupti."], ["date", "2020-05-06 18:52:08.271692"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.273630"], ["updated_at", "2020-05-05 18:52:08.273630"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:52:08 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"title"=>"Visit Narnia", "description"=>"false", "date"=>"2020-05-06 15:52:08 -0300", "link"=>"https://zoom.com/fakelink", "meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Visit Narnia"], ["description", "false"], ["date", "2020-05-06 18:52:08"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.293424"], ["updated_at", "2020-05-05 18:52:08.293424"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.57ms) +Completed 201 Created in 5ms (Views: 1.2ms | ActiveRecord: 0.4ms | Allocations: 1694) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.9ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mohammad Huel Jr."], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$E5SlBEITHydfX/T/XADbau8uZi0OLA6.k/.QURLuKWfmQFRtkXQXy"], ["created_at", "2020-05-05 18:52:08.307865"], ["updated_at", "2020-05-05 18:52:08.307865"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "temporibus"], ["description", "Esse itaque suscipit voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.312009"], ["updated_at", "2020-05-05 18:52:08.312009"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quibusdam perferendis natus doloremque?"], ["description", "Qui sed quaerat non."], ["date", "2020-05-06 18:52:08.313803"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.314771"], ["updated_at", "2020-05-05 18:52:08.314771"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Porro est libero quaerat?"], ["description", "Laborum fugit animi magni."], ["date", "2020-05-06 18:52:08.316144"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.316931"], ["updated_at", "2020-05-05 18:52:08.316931"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Illo ut alias rerum?"], ["description", "Quibusdam at sint autem."], ["date", "2020-05-06 18:52:08.318391"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.319685"], ["updated_at", "2020-05-05 18:52:08.319685"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam et vero libero?"], ["description", "Amet delectus adipisci et."], ["date", "2020-05-06 18:52:08.321160"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.322035"], ["updated_at", "2020-05-05 18:52:08.322035"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi placeat non ea?"], ["description", "Tempore magni minus rerum."], ["date", "2020-05-06 18:52:08.323899"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.324874"], ["updated_at", "2020-05-05 18:52:08.324874"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure vel tenetur sed?"], ["description", "Dolorem voluptatibus sed numquam."], ["date", "2020-05-06 18:52:08.326105"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.326944"], ["updated_at", "2020-05-05 18:52:08.326944"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Repellat numquam esse odit?"], ["description", "Facere omnis reiciendis enim."], ["date", "2020-05-06 18:52:08.328211"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.328984"], ["updated_at", "2020-05-05 18:52:08.328984"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut sequi repellat itaque?"], ["description", "Et ipsum impedit molestias."], ["date", "2020-05-06 18:52:08.330212"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.331297"], ["updated_at", "2020-05-05 18:52:08.331297"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Adipisci qui illo ut?"], ["description", "Dolorem quis omnis aut."], ["date", "2020-05-06 18:52:08.332883"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.333737"], ["updated_at", "2020-05-05 18:52:08.333737"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iusto cumque vel quaerat?"], ["description", "Iste quis amet qui."], ["date", "2020-05-06 18:52:08.335481"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.336229"], ["updated_at", "2020-05-05 18:52:08.336229"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui consequatur et explicabo?"], ["description", "Sint at esse vero."], ["date", "2020-05-06 18:52:08.337407"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.338095"], ["updated_at", "2020-05-05 18:52:08.338095"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sapiente aut neque saepe?"], ["description", "Ut impedit autem maiores."], ["date", "2020-05-06 18:52:08.339280"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.340593"], ["updated_at", "2020-05-05 18:52:08.340593"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem eos praesentium sunt?"], ["description", "Eos laboriosam commodi dolorem."], ["date", "2020-05-06 18:52:08.342149"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.342964"], ["updated_at", "2020-05-05 18:52:08.342964"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quam molestiae sit similique?"], ["description", "Commodi autem provident cumque."], ["date", "2020-05-06 18:52:08.344128"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.344808"], ["updated_at", "2020-05-05 18:52:08.344808"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur aut autem unde?"], ["description", "Autem omnis eos ad."], ["date", "2020-05-06 18:52:08.346061"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.346738"], ["updated_at", "2020-05-05 18:52:08.346738"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem et eaque vel?"], ["description", "Rerum dolores impedit sed."], ["date", "2020-05-06 18:52:08.347930"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.348605"], ["updated_at", "2020-05-05 18:52:08.348605"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam provident pariatur sed?"], ["description", "Consectetur laborum eligendi dignissimos."], ["date", "2020-05-06 18:52:08.349742"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.350817"], ["updated_at", "2020-05-05 18:52:08.350817"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui enim eos ipsa?"], ["description", "Dolorem possimus beatae mollitia."], ["date", "2020-05-06 18:52:08.352777"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.353743"], ["updated_at", "2020-05-05 18:52:08.353743"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit fugit voluptatem nobis?"], ["description", "Cumque qui fugit possimus."], ["date", "2020-05-06 18:52:08.355051"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.356067"], ["updated_at", "2020-05-05 18:52:08.356067"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et delectus ut est?"], ["description", "Ducimus eos consequatur sit."], ["date", "2020-05-06 18:52:08.357740"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.358574"], ["updated_at", "2020-05-05 18:52:08.358574"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:52:08 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 422 Unprocessable Entity in 4ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 2727) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Homer Sporer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7YHuVJbEZnTbIOQfTQvbwelhKRI9svuGJV9SQel385jcHJQuEIh6u"], ["created_at", "2020-05-05 18:52:08.377204"], ["updated_at", "2020-05-05 18:52:08.377204"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corrupti"], ["description", "Consequuntur laboriosam nam voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.380929"], ["updated_at", "2020-05-05 18:52:08.380929"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestiae dicta aut et?"], ["description", "Amet dolorum ut culpa."], ["date", "2020-05-06 18:52:08.382509"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.383456"], ["updated_at", "2020-05-05 18:52:08.383456"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Distinctio maxime maiores reiciendis?"], ["description", "Voluptate vel possimus sequi."], ["date", "2020-05-06 18:52:08.384661"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.385372"], ["updated_at", "2020-05-05 18:52:08.385372"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et placeat est voluptatum?"], ["description", "Aut dolorem labore quis."], ["date", "2020-05-06 18:52:08.386419"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.387101"], ["updated_at", "2020-05-05 18:52:08.387101"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rem ipsum officiis ea?"], ["description", "Voluptas corrupti consequuntur reiciendis."], ["date", "2020-05-06 18:52:08.388110"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.388805"], ["updated_at", "2020-05-05 18:52:08.388805"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum et incidunt aut?"], ["description", "Corporis ea labore minima."], ["date", "2020-05-06 18:52:08.390630"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.392151"], ["updated_at", "2020-05-05 18:52:08.392151"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dignissimos assumenda dolores atque?"], ["description", "Laudantium quia eum libero."], ["date", "2020-05-06 18:52:08.393963"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.395035"], ["updated_at", "2020-05-05 18:52:08.395035"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "In ipsa asperiores ut?"], ["description", "Sed delectus distinctio ut."], ["date", "2020-05-06 18:52:08.396637"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.397467"], ["updated_at", "2020-05-05 18:52:08.397467"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptate aut atque consequatur?"], ["description", "Iste adipisci pariatur placeat."], ["date", "2020-05-06 18:52:08.398639"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.399369"], ["updated_at", "2020-05-05 18:52:08.399369"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non odio est repellendus?"], ["description", "Dolorem voluptatem voluptatem similique."], ["date", "2020-05-06 18:52:08.400438"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.401321"], ["updated_at", "2020-05-05 18:52:08.401321"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere odit culpa consectetur?"], ["description", "Nemo sit ea et."], ["date", "2020-05-06 18:52:08.403296"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.404204"], ["updated_at", "2020-05-05 18:52:08.404204"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugit error sit rerum?"], ["description", "Maiores ut distinctio et."], ["date", "2020-05-06 18:52:08.406074"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.406973"], ["updated_at", "2020-05-05 18:52:08.406973"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sed ipsam voluptatum voluptas?"], ["description", "Totam quia eius sed."], ["date", "2020-05-06 18:52:08.408277"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.408970"], ["updated_at", "2020-05-05 18:52:08.408970"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quos pariatur quia sunt?"], ["description", "Autem minima assumenda impedit."], ["date", "2020-05-06 18:52:08.410174"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.411111"], ["updated_at", "2020-05-05 18:52:08.411111"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis dolor qui magni?"], ["description", "Quia cum rerum sed."], ["date", "2020-05-06 18:52:08.413182"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.414261"], ["updated_at", "2020-05-05 18:52:08.414261"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Reprehenderit est sapiente quis?"], ["description", "Rerum et autem excepturi."], ["date", "2020-05-06 18:52:08.415542"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.416257"], ["updated_at", "2020-05-05 18:52:08.416257"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea quis quaerat dolore?"], ["description", "Earum ipsa nulla possimus."], ["date", "2020-05-06 18:52:08.417330"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.418008"], ["updated_at", "2020-05-05 18:52:08.418008"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iste iusto ut nemo?"], ["description", "Aliquam nisi velit iure."], ["date", "2020-05-06 18:52:08.419079"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.419750"], ["updated_at", "2020-05-05 18:52:08.419750"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nihil aspernatur vel nihil?"], ["description", "Autem officiis eligendi a."], ["date", "2020-05-06 18:52:08.421049"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.421990"], ["updated_at", "2020-05-05 18:52:08.421990"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur et et architecto?"], ["description", "Atque et velit magnam."], ["date", "2020-05-06 18:52:08.423797"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.424703"], ["updated_at", "2020-05-05 18:52:08.424703"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Error voluptatibus occaecati earum?"], ["description", "Fugiat blanditiis aliquam commodi."], ["date", "2020-05-06 18:52:08.426105"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.426924"], ["updated_at", "2020-05-05 18:52:08.426924"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started POST "/meets/1/meetings" for 127.0.0.1 at 2020-05-05 15:52:08 -0300 +Processing by MeetingsController#create as HTML + Parameters: {"meet_id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :meet_id +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 422 Unprocessable Entity in 5ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 2705) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Monserrate Bauch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gXG9n.EkQBToesSydexRzutmCY77xnQmSycJrwBjWEx8YDMUjacw."], ["created_at", "2020-05-05 18:52:08.444576"], ["updated_at", "2020-05-05 18:52:08.444576"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "blanditiis"], ["description", "Harum omnis reprehenderit rerum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.447436"], ["updated_at", "2020-05-05 18:52:08.447436"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum consequatur ea consequatur?"], ["description", "Sed officia fuga doloremque."], ["date", "2020-05-06 18:52:08.448959"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.449888"], ["updated_at", "2020-05-05 18:52:08.449888"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Libero ut quia dolor?"], ["description", "Animi ut quasi autem."], ["date", "2020-05-06 18:52:08.451680"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.453357"], ["updated_at", "2020-05-05 18:52:08.453357"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius soluta iure consectetur?"], ["description", "Sapiente assumenda animi autem."], ["date", "2020-05-06 18:52:08.455137"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.457109"], ["updated_at", "2020-05-05 18:52:08.457109"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Magni vitae et perferendis?"], ["description", "Qui voluptatum qui sit."], ["date", "2020-05-06 18:52:08.458553"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.459354"], ["updated_at", "2020-05-05 18:52:08.459354"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur molestiae ipsum sit?"], ["description", "Quis quae qui impedit."], ["date", "2020-05-06 18:52:08.460499"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.461211"], ["updated_at", "2020-05-05 18:52:08.461211"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi et soluta est?"], ["description", "Optio quisquam aut est."], ["date", "2020-05-06 18:52:08.462376"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.463143"], ["updated_at", "2020-05-05 18:52:08.463143"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ex atque quia velit?"], ["description", "Vel eum ut enim."], ["date", "2020-05-06 18:52:08.464354"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.465040"], ["updated_at", "2020-05-05 18:52:08.465040"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolore fugiat sed similique?"], ["description", "Sint sit modi rerum."], ["date", "2020-05-06 18:52:08.466196"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.466863"], ["updated_at", "2020-05-05 18:52:08.466863"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Impedit est omnis consequatur?"], ["description", "Enim assumenda excepturi et."], ["date", "2020-05-06 18:52:08.467994"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.468651"], ["updated_at", "2020-05-05 18:52:08.468651"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Suscipit sit voluptas delectus?"], ["description", "Magni voluptatem dolorum est."], ["date", "2020-05-06 18:52:08.470620"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.471976"], ["updated_at", "2020-05-05 18:52:08.471976"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Unde eos libero non?"], ["description", "Aut sequi recusandae ipsa."], ["date", "2020-05-06 18:52:08.475652"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.477030"], ["updated_at", "2020-05-05 18:52:08.477030"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Perferendis aut commodi iure?"], ["description", "Cupiditate expedita illum est."], ["date", "2020-05-06 18:52:08.479000"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.480342"], ["updated_at", "2020-05-05 18:52:08.480342"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ab occaecati et rerum?"], ["description", "Ipsa quam earum est."], ["date", "2020-05-06 18:52:08.482264"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.483553"], ["updated_at", "2020-05-05 18:52:08.483553"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Pariatur eos consequatur iure?"], ["description", "Quas eveniet aut et."], ["date", "2020-05-06 18:52:08.485006"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.485770"], ["updated_at", "2020-05-05 18:52:08.485770"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Fugiat minus blanditiis sit?"], ["description", "Voluptates mollitia et quod."], ["date", "2020-05-06 18:52:08.487037"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.487774"], ["updated_at", "2020-05-05 18:52:08.487774"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse molestiae eum qui?"], ["description", "Eveniet hic aspernatur totam."], ["date", "2020-05-06 18:52:08.489085"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.489942"], ["updated_at", "2020-05-05 18:52:08.489942"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Totam qui at vero?"], ["description", "Id nemo quasi atque."], ["date", "2020-05-06 18:52:08.491765"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.493338"], ["updated_at", "2020-05-05 18:52:08.493338"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptatem recusandae nam ullam?"], ["description", "Id aut in officia."], ["date", "2020-05-06 18:52:08.494865"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.495701"], ["updated_at", "2020-05-05 18:52:08.495701"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam tempore odit quisquam?"], ["description", "Ut officia quis autem."], ["date", "2020-05-06 18:52:08.496880"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.497558"], ["updated_at", "2020-05-05 18:52:08.497558"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Voluptas delectus consequatur rerum?"], ["description", "Quo omnis et distinctio."], ["date", "2020-05-06 18:52:08.498711"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.499429"], ["updated_at", "2020-05-05 18:52:08.499429"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:52:08 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.3ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:52:08.504184"], ["id", 1]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 4ms (ActiveRecord: 0.6ms | Allocations: 1397) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.2ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Antonio Smith V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$By0xX0keiWSnT1YkRDxL1OSXCZvSO9HZJ1e778ed.pmlSnCrePhjC"], ["created_at", "2020-05-05 18:52:08.517767"], ["updated_at", "2020-05-05 18:52:08.517767"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Commodi velit omnis sunt."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.520618"], ["updated_at", "2020-05-05 18:52:08.520618"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam fugit saepe eaque?"], ["description", "Sit nostrum optio consequuntur."], ["date", "2020-05-06 18:52:08.523096"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.524272"], ["updated_at", "2020-05-05 18:52:08.524272"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem veritatis harum corrupti?"], ["description", "Quam officia assumenda eos."], ["date", "2020-05-06 18:52:08.525830"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.526620"], ["updated_at", "2020-05-05 18:52:08.526620"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis aut harum voluptas?"], ["description", "Saepe consequatur architecto voluptates."], ["date", "2020-05-06 18:52:08.527763"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.528452"], ["updated_at", "2020-05-05 18:52:08.528452"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Animi et delectus id?"], ["description", "Esse qui velit cupiditate."], ["date", "2020-05-06 18:52:08.529697"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.530396"], ["updated_at", "2020-05-05 18:52:08.530396"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem odit quaerat facilis?"], ["description", "Et ut nemo suscipit."], ["date", "2020-05-06 18:52:08.531734"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.533397"], ["updated_at", "2020-05-05 18:52:08.533397"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quod perferendis vel optio?"], ["description", "Est suscipit velit eius."], ["date", "2020-05-06 18:52:08.535352"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.537874"], ["updated_at", "2020-05-05 18:52:08.537874"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor porro voluptates id?"], ["description", "Mollitia eos iusto repellendus."], ["date", "2020-05-06 18:52:08.540367"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.541763"], ["updated_at", "2020-05-05 18:52:08.541763"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Vel et necessitatibus laborum?"], ["description", "Consequatur voluptatum consequatur nam."], ["date", "2020-05-06 18:52:08.543185"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.543952"], ["updated_at", "2020-05-05 18:52:08.543952"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eius consequatur enim ratione?"], ["description", "Cumque neque alias sit."], ["date", "2020-05-06 18:52:08.545123"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.545824"], ["updated_at", "2020-05-05 18:52:08.545824"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut est incidunt eveniet?"], ["description", "Quisquam unde assumenda perspiciatis."], ["date", "2020-05-06 18:52:08.547630"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.548383"], ["updated_at", "2020-05-05 18:52:08.548383"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Maiores ipsum eum fugit?"], ["description", "Totam quas placeat dolores."], ["date", "2020-05-06 18:52:08.549767"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.550583"], ["updated_at", "2020-05-05 18:52:08.550583"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nisi laboriosam velit sint?"], ["description", "Officia aliquam esse eveniet."], ["date", "2020-05-06 18:52:08.552157"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.553735"], ["updated_at", "2020-05-05 18:52:08.553735"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aut sed sunt dolores?"], ["description", "Quos ipsa odit qui."], ["date", "2020-05-06 18:52:08.555803"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.556743"], ["updated_at", "2020-05-05 18:52:08.556743"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia aliquam est dolores?"], ["description", "Maiores enim sint repellat."], ["date", "2020-05-06 18:52:08.558079"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.558775"], ["updated_at", "2020-05-05 18:52:08.558775"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et fuga illo consequuntur?"], ["description", "Reprehenderit aliquam perferendis qui."], ["date", "2020-05-06 18:52:08.560004"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.560740"], ["updated_at", "2020-05-05 18:52:08.560740"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Placeat quia nihil ut?"], ["description", "Earum a delectus ducimus."], ["date", "2020-05-06 18:52:08.562214"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.563041"], ["updated_at", "2020-05-05 18:52:08.563041"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "At accusantium sit autem?"], ["description", "Quia est tenetur vitae."], ["date", "2020-05-06 18:52:08.564263"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.564937"], ["updated_at", "2020-05-05 18:52:08.564937"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ea ipsa consequatur exercitationem?"], ["description", "Aut sed sunt ex."], ["date", "2020-05-06 18:52:08.566104"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.566825"], ["updated_at", "2020-05-05 18:52:08.566825"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nesciunt quos earum voluptatem?"], ["description", "Sed fugiat dolores incidunt."], ["date", "2020-05-06 18:52:08.567947"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.568634"], ["updated_at", "2020-05-05 18:52:08.568634"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolorem porro beatae inventore?"], ["description", "Et eum odio perspiciatis."], ["date", "2020-05-06 18:52:08.569794"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.570486"], ["updated_at", "2020-05-05 18:52:08.570486"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:52:08 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +Unpermitted parameters: :meet_id, :id +  (0.1ms) SAVEPOINT active_record_2 + Meeting Update (0.2ms) UPDATE "meetings" SET "title" = ?, "updated_at" = ? WHERE "meetings"."id" = ? [["title", "Mozart"], ["updated_at", "2020-05-05 18:52:08.576619"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1320) + Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cletus Abbott"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Xwe/GAiPnUHSljcxpWtzm.nwPfgH3rvavYMxHC1AJzmziXtqLIeJa"], ["created_at", "2020-05-05 18:52:08.589723"], ["updated_at", "2020-05-05 18:52:08.589723"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Eius quam accusantium quae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.593485"], ["updated_at", "2020-05-05 18:52:08.593485"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aliquam ducimus eos qui?"], ["description", "Eaque beatae laboriosam facere."], ["date", "2020-05-06 18:52:08.595644"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.597090"], ["updated_at", "2020-05-05 18:52:08.597090"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et alias labore a?"], ["description", "Eum qui laboriosam laborum."], ["date", "2020-05-06 18:52:08.598616"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.599421"], ["updated_at", "2020-05-05 18:52:08.599421"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequatur ipsum aspernatur officiis?"], ["description", "Aliquid sapiente dolore cumque."], ["date", "2020-05-06 18:52:08.600706"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.601519"], ["updated_at", "2020-05-05 18:52:08.601519"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Asperiores numquam et ducimus?"], ["description", "Repellendus sequi doloremque aut."], ["date", "2020-05-06 18:52:08.602682"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.603377"], ["updated_at", "2020-05-05 18:52:08.603377"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui earum deleniti deserunt?"], ["description", "Sint odit voluptas facilis."], ["date", "2020-05-06 18:52:08.604513"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.605395"], ["updated_at", "2020-05-05 18:52:08.605395"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsam libero tempora et?"], ["description", "Quis consequatur accusantium corrupti."], ["date", "2020-05-06 18:52:08.607028"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.607872"], ["updated_at", "2020-05-05 18:52:08.607872"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Omnis ullam officia rerum?"], ["description", "Aut et odio magnam."], ["date", "2020-05-06 18:52:08.609022"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.609722"], ["updated_at", "2020-05-05 18:52:08.609722"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Provident ad doloribus quaerat?"], ["description", "Nulla consequatur tempora molestias."], ["date", "2020-05-06 18:52:08.610881"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.611654"], ["updated_at", "2020-05-05 18:52:08.611654"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (1.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Recusandae at sed sunt?"], ["description", "Sunt assumenda ut sequi."], ["date", "2020-05-06 18:52:08.613545"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.614890"], ["updated_at", "2020-05-05 18:52:08.614890"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque facere sunt et?"], ["description", "Repudiandae sint earum voluptates."], ["date", "2020-05-06 18:52:08.617597"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.618531"], ["updated_at", "2020-05-05 18:52:08.618531"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Qui odit id quas?"], ["description", "Mollitia doloremque quo fugiat."], ["date", "2020-05-06 18:52:08.619828"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.620613"], ["updated_at", "2020-05-05 18:52:08.620613"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Unde et quasi enim?"], ["description", "Et natus nostrum odio."], ["date", "2020-05-06 18:52:08.622112"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.623405"], ["updated_at", "2020-05-05 18:52:08.623405"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ducimus dolorum fugiat ut?"], ["description", "Atque quidem praesentium et."], ["date", "2020-05-06 18:52:08.624832"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.625577"], ["updated_at", "2020-05-05 18:52:08.625577"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id perspiciatis fuga et?"], ["description", "Quos ullam quod mollitia."], ["date", "2020-05-06 18:52:08.626717"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.627409"], ["updated_at", "2020-05-05 18:52:08.627409"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit architecto molestiae qui?"], ["description", "Iste quia non reiciendis."], ["date", "2020-05-06 18:52:08.628612"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.629300"], ["updated_at", "2020-05-05 18:52:08.629300"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nobis molestiae consequatur ipsa?"], ["description", "Et cumque deleniti at."], ["date", "2020-05-06 18:52:08.630524"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.631235"], ["updated_at", "2020-05-05 18:52:08.631235"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Facere sit quibusdam eum?"], ["description", "Enim voluptatibus nihil placeat."], ["date", "2020-05-06 18:52:08.632720"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.633948"], ["updated_at", "2020-05-05 18:52:08.633948"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est est explicabo voluptas?"], ["description", "Aut sit omnis optio."], ["date", "2020-05-06 18:52:08.635538"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.636344"], ["updated_at", "2020-05-05 18:52:08.636344"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quia nihil molestiae cupiditate?"], ["description", "Omnis velit soluta dolore."], ["date", "2020-05-06 18:52:08.637634"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.638906"], ["updated_at", "2020-05-05 18:52:08.638906"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Esse in veritatis voluptatem?"], ["description", "Repellendus et eos reprehenderit."], ["date", "2020-05-06 18:52:08.640530"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.641406"], ["updated_at", "2020-05-05 18:52:08.641406"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:52:08 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["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: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Humberto Stanton"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Vgm/63Sa3Iee/PDDxM9boOEj9TmBN3SkwJj3rDxm0drhyRaVqZuYq"], ["created_at", "2020-05-05 18:52:08.659753"], ["updated_at", "2020-05-05 18:52:08.659753"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odio"], ["description", "Deserunt eligendi consequatur ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.662807"], ["updated_at", "2020-05-05 18:52:08.662807"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Occaecati est in corrupti?"], ["description", "Voluptatem omnis laborum amet."], ["date", "2020-05-06 18:52:08.664203"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.665139"], ["updated_at", "2020-05-05 18:52:08.665139"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Unde et perferendis facere?"], ["description", "Quae similique asperiores est."], ["date", "2020-05-06 18:52:08.666754"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.667472"], ["updated_at", "2020-05-05 18:52:08.667472"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi iusto nihil mollitia?"], ["description", "Dolorum consequatur necessitatibus nam."], ["date", "2020-05-06 18:52:08.668608"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.669298"], ["updated_at", "2020-05-05 18:52:08.669298"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores quis minima ipsa?"], ["description", "Voluptatem aliquid tenetur porro."], ["date", "2020-05-06 18:52:08.670480"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.671801"], ["updated_at", "2020-05-05 18:52:08.671801"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.3ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor aut ut rerum?"], ["description", "Nam autem saepe facere."], ["date", "2020-05-06 18:52:08.674740"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.676190"], ["updated_at", "2020-05-05 18:52:08.676190"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor deleniti deserunt odit?"], ["description", "Omnis fuga dolor enim."], ["date", "2020-05-06 18:52:08.678202"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.679099"], ["updated_at", "2020-05-05 18:52:08.679099"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Earum aut qui magni?"], ["description", "Omnis repudiandae qui commodi."], ["date", "2020-05-06 18:52:08.680276"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.681012"], ["updated_at", "2020-05-05 18:52:08.681012"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Neque earum quos non?"], ["description", "Ab possimus a sed."], ["date", "2020-05-06 18:52:08.682252"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.682979"], ["updated_at", "2020-05-05 18:52:08.682979"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.7ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Iure perspiciatis recusandae rem?"], ["description", "Debitis minus quia assumenda."], ["date", "2020-05-06 18:52:08.684161"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.684876"], ["updated_at", "2020-05-05 18:52:08.684876"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Id qui libero excepturi?"], ["description", "Eligendi deleniti necessitatibus sint."], ["date", "2020-05-06 18:52:08.686736"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.687492"], ["updated_at", "2020-05-05 18:52:08.687492"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Quasi iusto cumque esse?"], ["description", "Et blanditiis ab maiores."], ["date", "2020-05-06 18:52:08.688699"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.689450"], ["updated_at", "2020-05-05 18:52:08.689450"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsum qui numquam sunt?"], ["description", "Reprehenderit quod corporis libero."], ["date", "2020-05-06 18:52:08.690677"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.691432"], ["updated_at", "2020-05-05 18:52:08.691432"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi cupiditate ducimus dolorem?"], ["description", "Ut ab quo quod."], ["date", "2020-05-06 18:52:08.692808"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.694001"], ["updated_at", "2020-05-05 18:52:08.694001"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est incidunt occaecati ratione?"], ["description", "Aut sapiente voluptatum non."], ["date", "2020-05-06 18:52:08.695555"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.696374"], ["updated_at", "2020-05-05 18:52:08.696374"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Aspernatur numquam deserunt in?"], ["description", "Aut perferendis ipsa nesciunt."], ["date", "2020-05-06 18:52:08.697680"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.698402"], ["updated_at", "2020-05-05 18:52:08.698402"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Molestias reiciendis asperiores dolores?"], ["description", "Facere voluptatem sit labore."], ["date", "2020-05-06 18:52:08.699639"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.700378"], ["updated_at", "2020-05-05 18:52:08.700378"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Assumenda aut animi molestiae?"], ["description", "Possimus nesciunt illo commodi."], ["date", "2020-05-06 18:52:08.701714"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.702436"], ["updated_at", "2020-05-05 18:52:08.702436"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Autem porro ratione qui?"], ["description", "Et nobis voluptates aut."], ["date", "2020-05-06 18:52:08.703549"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.704228"], ["updated_at", "2020-05-05 18:52:08.704228"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Consequuntur et maxime quae?"], ["description", "Et minima repellat voluptatibus."], ["date", "2020-05-06 18:52:08.705804"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.706956"], ["updated_at", "2020-05-05 18:52:08.706956"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolor saepe quis deleniti?"], ["description", "Deleniti voluptas voluptatum sed."], ["date", "2020-05-06 18:52:08.708370"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.709286"], ["updated_at", "2020-05-05 18:52:08.709286"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started PUT "/meets/1/meetings/0" for 127.0.0.1 at 2020-05-05 15:52:08 -0300 +Processing by MeetingsController#update as HTML + Parameters: {"title"=>"Mozart", "meet_id"=>"1", "id"=>"0"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 0], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.1ms) +Completed 404 Not Found in 2ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 868) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Drew Goodwin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$DEJkan4x/QZ48KRqUyHszuR3fH8o9yGHKOZ.GyKDNOy5lFjKMKgj2"], ["created_at", "2020-05-05 18:52:08.726205"], ["updated_at", "2020-05-05 18:52:08.726205"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "perferendis"], ["description", "Similique a ut dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.729004"], ["updated_at", "2020-05-05 18:52:08.729004"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit nesciunt aut error?"], ["description", "Voluptatem est quia commodi."], ["date", "2020-05-06 18:52:08.730629"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.731602"], ["updated_at", "2020-05-05 18:52:08.731602"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Tenetur quia dolore numquam?"], ["description", "Omnis fuga libero corrupti."], ["date", "2020-05-06 18:52:08.733251"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.735163"], ["updated_at", "2020-05-05 18:52:08.735163"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit saepe repudiandae provident?"], ["description", "Nemo et quis eos."], ["date", "2020-05-06 18:52:08.737205"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.738197"], ["updated_at", "2020-05-05 18:52:08.738197"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Excepturi error eos qui?"], ["description", "Aperiam ducimus recusandae rem."], ["date", "2020-05-06 18:52:08.740069"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.741184"], ["updated_at", "2020-05-05 18:52:08.741184"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Dolores similique iure aut?"], ["description", "Perferendis consequuntur est asperiores."], ["date", "2020-05-06 18:52:08.742541"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.743242"], ["updated_at", "2020-05-05 18:52:08.743242"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Praesentium vel labore laborum?"], ["description", "Accusamus quasi omnis qui."], ["date", "2020-05-06 18:52:08.744391"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.745075"], ["updated_at", "2020-05-05 18:52:08.745075"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Blanditiis sit deserunt non?"], ["description", "Non nisi modi optio."], ["date", "2020-05-06 18:52:08.746228"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.746933"], ["updated_at", "2020-05-05 18:52:08.746933"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Sit autem cupiditate asperiores?"], ["description", "Qui minus odit natus."], ["date", "2020-05-06 18:52:08.748079"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.748750"], ["updated_at", "2020-05-05 18:52:08.748750"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.8ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ipsa mollitia autem et?"], ["description", "Explicabo aut sint voluptatem."], ["date", "2020-05-06 18:52:08.749857"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.750586"], ["updated_at", "2020-05-05 18:52:08.750586"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.5ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Exercitationem qui repellat temporibus?"], ["description", "Dignissimos ipsa maxime qui."], ["date", "2020-05-06 18:52:08.752682"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.754790"], ["updated_at", "2020-05-05 18:52:08.754790"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Adipisci officia et ratione?"], ["description", "Repellendus veniam voluptatum dolor."], ["date", "2020-05-06 18:52:08.757564"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.758582"], ["updated_at", "2020-05-05 18:52:08.758582"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nemo modi est id?"], ["description", "Aut soluta non pariatur."], ["date", "2020-05-06 18:52:08.760018"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.760801"], ["updated_at", "2020-05-05 18:52:08.760801"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Est et repellendus quam?"], ["description", "Nihil neque eum repellat."], ["date", "2020-05-06 18:52:08.762042"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.762738"], ["updated_at", "2020-05-05 18:52:08.762738"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Nam sapiente et dolorum?"], ["description", "Molestiae ut ducimus ipsum."], ["date", "2020-05-06 18:52:08.764016"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.764703"], ["updated_at", "2020-05-05 18:52:08.764703"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Eaque minima sit porro?"], ["description", "Ipsum nostrum optio voluptatem."], ["date", "2020-05-06 18:52:08.765882"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.766558"], ["updated_at", "2020-05-05 18:52:08.766558"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.1ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et aut qui sunt?"], ["description", "Dicta aut nihil veritatis."], ["date", "2020-05-06 18:52:08.767722"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.768420"], ["updated_at", "2020-05-05 18:52:08.768420"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Ullam mollitia totam blanditiis?"], ["description", "Ea soluta et in."], ["date", "2020-05-06 18:52:08.769551"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.770244"], ["updated_at", "2020-05-05 18:52:08.770244"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.4ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Non aspernatur temporibus et?"], ["description", "Assumenda quis illo libero."], ["date", "2020-05-06 18:52:08.771566"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.772610"], ["updated_at", "2020-05-05 18:52:08.772610"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Rerum expedita a atque?"], ["description", "Labore dicta ducimus placeat."], ["date", "2020-05-06 18:52:08.775258"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.776306"], ["updated_at", "2020-05-05 18:52:08.776306"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Create (0.2ms) INSERT INTO "meetings" ("title", "description", "date", "meet_id", "link", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["title", "Et ipsa excepturi consectetur?"], ["description", "Pariatur deserunt quaerat sunt."], ["date", "2020-05-06 18:52:08.777741"], ["meet_id", 1], ["link", "https://zoom.com/fakelink"], ["created_at", "2020-05-05 18:52:08.778441"], ["updated_at", "2020-05-05 18:52:08.778441"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started DELETE "/meets/1/meetings/1" for 127.0.0.1 at 2020-05-05 15:52:08 -0300 +Processing by MeetingsController#destroy as HTML + Parameters: {"meet_id"=>"1", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? AND "meetings"."id" = ? LIMIT ? [["meet_id", 1], ["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + UserMeeting Load (0.1ms) SELECT "user_meetings".* FROM "user_meetings" WHERE "user_meetings"."meeting_id" = ? [["meeting_id", 1]] + Meeting Destroy (0.2ms) DELETE FROM "meetings" WHERE "meetings"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.6ms | Allocations: 1357) +  (0.3ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "harum"], ["description", "Officia eos dicta doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.795293"], ["updated_at", "2020-05-05 18:52:08.795293"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quaerat"], ["description", "Repellat sed totam perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.798778"], ["updated_at", "2020-05-05 18:52:08.798778"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Officiis temporibus quas veniam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.800953"], ["updated_at", "2020-05-05 18:52:08.800953"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "error"], ["description", "Repudiandae explicabo ipsam laborum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.802629"], ["updated_at", "2020-05-05 18:52:08.802629"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Ipsa repellat aliquid dolor."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.803996"], ["updated_at", "2020-05-05 18:52:08.803996"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nihil"], ["description", "Minima eum qui error."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.805440"], ["updated_at", "2020-05-05 18:52:08.805440"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Quam earum quisquam animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.807379"], ["updated_at", "2020-05-05 18:52:08.807379"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "saepe"], ["description", "Quia error vel iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.808743"], ["updated_at", "2020-05-05 18:52:08.808743"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Cum doloremque voluptas et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.809997"], ["updated_at", "2020-05-05 18:52:08.809997"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Corrupti aliquam ut reiciendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.811284"], ["updated_at", "2020-05-05 18:52:08.811284"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Yasuko Mosciski II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0Ru.M2JwAe15mLjIPeBOY.kssGcBmvQzjy8CJA7fIDj2CqThZ06aW"], ["created_at", "2020-05-05 18:52:08.814268"], ["updated_at", "2020-05-05 18:52:08.814268"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:52:08 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.2ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.58ms) +Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.3ms | Allocations: 2914) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquam"], ["description", "Ut est fugiat consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.833374"], ["updated_at", "2020-05-05 18:52:08.833374"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sunt"], ["description", "Expedita velit debitis eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.837082"], ["updated_at", "2020-05-05 18:52:08.837082"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Voluptatum inventore maiores minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.839849"], ["updated_at", "2020-05-05 18:52:08.839849"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsa"], ["description", "Reiciendis pariatur sunt dolore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.841762"], ["updated_at", "2020-05-05 18:52:08.841762"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Et delectus minima sed."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.843133"], ["updated_at", "2020-05-05 18:52:08.843133"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Suscipit molestiae numquam ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.844580"], ["updated_at", "2020-05-05 18:52:08.844580"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "at"], ["description", "In earum dolorum temporibus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.845905"], ["updated_at", "2020-05-05 18:52:08.845905"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptates"], ["description", "Ut non sequi quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.847176"], ["updated_at", "2020-05-05 18:52:08.847176"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Error aspernatur aut aliquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.848393"], ["updated_at", "2020-05-05 18:52:08.848393"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "At iusto et possimus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.849743"], ["updated_at", "2020-05-05 18:52:08.849743"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Darrell Corkery V"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$teKS9kXjNSR7IwtPC1lA0.Wl27y2I38Pq1AMYZMgwnRiCoggtV4wa"], ["created_at", "2020-05-05 18:52:08.852383"], ["updated_at", "2020-05-05 18:52:08.852383"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:52:08 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.36ms) +Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms | Allocations: 2843) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (2.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "porro"], ["description", "Et optio eaque commodi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.871484"], ["updated_at", "2020-05-05 18:52:08.871484"], ["created_by", "1"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Ab eos hic consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.876767"], ["updated_at", "2020-05-05 18:52:08.876767"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quod"], ["description", "Velit placeat iste ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.879099"], ["updated_at", "2020-05-05 18:52:08.879099"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vero"], ["description", "Neque velit dolorem est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.880857"], ["updated_at", "2020-05-05 18:52:08.880857"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vero"], ["description", "Atque velit inventore exercitationem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.882198"], ["updated_at", "2020-05-05 18:52:08.882198"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "molestias"], ["description", "Ut earum quibusdam voluptatem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.883527"], ["updated_at", "2020-05-05 18:52:08.883527"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Odit rerum ducimus voluptas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.884873"], ["updated_at", "2020-05-05 18:52:08.884873"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Excepturi voluptatem quae culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.886292"], ["updated_at", "2020-05-05 18:52:08.886292"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "libero"], ["description", "Excepturi dolores hic aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.887612"], ["updated_at", "2020-05-05 18:52:08.887612"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "veritatis"], ["description", "Iste at quia alias."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.888854"], ["updated_at", "2020-05-05 18:52:08.888854"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Roy Brekke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$I3130Mm0oOM1514b5VeU1ebayo372dOvUdE2Hr6YaZpQ3SkmeDpYW"], ["created_at", "2020-05-05 18:52:08.891493"], ["updated_at", "2020-05-05 18:52:08.891493"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:52:08 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.4ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:52:08 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.7ms) +Completed 200 OK in 4ms (Views: 2.0ms | ActiveRecord: 0.3ms | Allocations: 1241) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (9.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.5ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "provident"], ["description", "Perspiciatis amet et adipisci."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.920430"], ["updated_at", "2020-05-05 18:52:08.920430"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "doloremque"], ["description", "Aut quia velit illum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.924202"], ["updated_at", "2020-05-05 18:52:08.924202"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "pariatur"], ["description", "Deleniti qui ut assumenda."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.926420"], ["updated_at", "2020-05-05 18:52:08.926420"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Quam eligendi necessitatibus sint."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.927851"], ["updated_at", "2020-05-05 18:52:08.927851"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatum"], ["description", "Illum voluptate dicta ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.929214"], ["updated_at", "2020-05-05 18:52:08.929214"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "A et quos tempore."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.930547"], ["updated_at", "2020-05-05 18:52:08.930547"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "earum"], ["description", "Delectus cumque enim a."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.931850"], ["updated_at", "2020-05-05 18:52:08.931850"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Dolor fugiat ratione voluptates."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.950932"], ["updated_at", "2020-05-05 18:52:08.950932"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cumque"], ["description", "Aliquid suscipit autem libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.952675"], ["updated_at", "2020-05-05 18:52:08.952675"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + Meet Create (0.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "labore"], ["description", "Ab quibusdam unde quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.954188"], ["updated_at", "2020-05-05 18:52:08.954188"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Neville Waters"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$TWrkuEdYE6w65zNvmnKjfeWbkh.00A4rr.vD8beZIX0RcS6GAfghe"], ["created_at", "2020-05-05 18:52:08.959176"], ["updated_at", "2020-05-05 18:52:08.959176"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:52:08 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.2ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started GET "/meets/1" for 127.0.0.1 at 2020-05-05 15:52:08 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Meeting Load (0.1ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (1.71ms) +Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.3ms | Allocations: 1240) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "est"], ["description", "Deleniti molestiae placeat reprehenderit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.981554"], ["updated_at", "2020-05-05 18:52:08.981554"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odio"], ["description", "Ex rerum ullam hic."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.985151"], ["updated_at", "2020-05-05 18:52:08.985151"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aliquid"], ["description", "Modi cum exercitationem nulla."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.986838"], ["updated_at", "2020-05-05 18:52:08.986838"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "corporis"], ["description", "Expedita vel dicta consequatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.988152"], ["updated_at", "2020-05-05 18:52:08.988152"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ea"], ["description", "Eius sit id totam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.990124"], ["updated_at", "2020-05-05 18:52:08.990124"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "tempore"], ["description", "Sit consequatur sit recusandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.991878"], ["updated_at", "2020-05-05 18:52:08.991878"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repudiandae"], ["description", "Delectus id voluptas impedit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.993377"], ["updated_at", "2020-05-05 18:52:08.993377"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Vero perspiciatis non ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.995066"], ["updated_at", "2020-05-05 18:52:08.995066"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sed"], ["description", "Quisquam laborum velit iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.997293"], ["updated_at", "2020-05-05 18:52:08.997293"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nobis"], ["description", "Fuga praesentium magnam aliquam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:08.999489"], ["updated_at", "2020-05-05 18:52:08.999489"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Glinda Hoppe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$eXr9/7g6J9b4cn86VdT2vumJujCeBCIzPwQDARAegTo28QK0cPzL6"], ["created_at", "2020-05-05 18:52:09.002293"], ["updated_at", "2020-05-05 18:52:09.002293"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.27ms) +Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.0ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.4ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facilis"], ["description", "Ab mollitia quasi aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.022893"], ["updated_at", "2020-05-05 18:52:09.022893"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Et qui voluptatem quia."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.026591"], ["updated_at", "2020-05-05 18:52:09.026591"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolor"], ["description", "Magni rerum ad dolores."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.028225"], ["updated_at", "2020-05-05 18:52:09.028225"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "repellat"], ["description", "Asperiores cupiditate voluptatem quaerat."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.029581"], ["updated_at", "2020-05-05 18:52:09.029581"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsa"], ["description", "Voluptatibus sint consequatur architecto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.030922"], ["updated_at", "2020-05-05 18:52:09.030922"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsum"], ["description", "Sunt neque eius doloribus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.032251"], ["updated_at", "2020-05-05 18:52:09.032251"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ipsa"], ["description", "Et voluptas earum dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.033598"], ["updated_at", "2020-05-05 18:52:09.033598"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "natus"], ["description", "At dolorum accusamus ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.035213"], ["updated_at", "2020-05-05 18:52:09.035213"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nulla"], ["description", "Ea veniam dolor cum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.037598"], ["updated_at", "2020-05-05 18:52:09.037598"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laboriosam"], ["description", "Eos doloribus illo quas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.040848"], ["updated_at", "2020-05-05 18:52:09.040848"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jeffrey Hagenes"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.xQn6WUj5gOBV6e5PNfI.ezyicWKVHO6FUYx69/TXOcrgxsQyx7gS"], ["created_at", "2020-05-05 18:52:09.044013"], ["updated_at", "2020-05-05 18:52:09.044013"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (2.93ms) +Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms | Allocations: 2842) +Started GET "/meets/100" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by MeetsController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.07ms) +Completed 404 Not Found in 2ms (Views: 0.8ms | ActiveRecord: 0.2ms | Allocations: 512) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (24.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eveniet"], ["description", "Et eos quis nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.083411"], ["updated_at", "2020-05-05 18:52:09.083411"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "in"], ["description", "Tempora velit doloremque aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.086531"], ["updated_at", "2020-05-05 18:52:09.086531"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Exercitationem quos velit consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.088640"], ["updated_at", "2020-05-05 18:52:09.088640"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Impedit accusamus sapiente animi."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.090046"], ["updated_at", "2020-05-05 18:52:09.090046"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Est voluptatibus nesciunt velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.091501"], ["updated_at", "2020-05-05 18:52:09.091501"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Harum aut voluptas perferendis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.092809"], ["updated_at", "2020-05-05 18:52:09.092809"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "Autem sunt nobis ut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.094113"], ["updated_at", "2020-05-05 18:52:09.094113"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quo"], ["description", "Sed unde ratione consequuntur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.096340"], ["updated_at", "2020-05-05 18:52:09.096340"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fugit"], ["description", "Ut aut reiciendis non."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.098925"], ["updated_at", "2020-05-05 18:52:09.098925"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "hic"], ["description", "Aliquam qui voluptate corporis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.100609"], ["updated_at", "2020-05-05 18:52:09.100609"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Quinn O'Connell"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2jueFS/ByblGHXxDRg5IvOk5uyIt8jV1TiH2b8RXYYo0nRCl2tzve"], ["created_at", "2020-05-05 18:52:09.103469"], ["updated_at", "2020-05-05 18:52:09.103469"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:52:09 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:52:09.126805"], ["updated_at", "2020-05-05 18:52:09.126805"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.58ms) +Completed 201 Created in 20ms (Views: 1.0ms | ActiveRecord: 1.0ms | Allocations: 5049) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.7ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nesciunt"], ["description", "Quam vel delectus ad."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.144891"], ["updated_at", "2020-05-05 18:52:09.144891"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Consequuntur eligendi sit repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.147963"], ["updated_at", "2020-05-05 18:52:09.147963"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ducimus"], ["description", "Quia dolor illum minus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.150074"], ["updated_at", "2020-05-05 18:52:09.150074"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatem"], ["description", "In harum voluptatem id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.151519"], ["updated_at", "2020-05-05 18:52:09.151519"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nam"], ["description", "Enim nesciunt ut facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.152785"], ["updated_at", "2020-05-05 18:52:09.152785"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ex"], ["description", "Rem quo laborum omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.154682"], ["updated_at", "2020-05-05 18:52:09.154682"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Quis quidem tempore et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.157009"], ["updated_at", "2020-05-05 18:52:09.157009"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Maxime enim nostrum eum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.158940"], ["updated_at", "2020-05-05 18:52:09.158940"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Assumenda ullam quisquam est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.160956"], ["updated_at", "2020-05-05 18:52:09.160956"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptas"], ["description", "Neque temporibus quis dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.162303"], ["updated_at", "2020-05-05 18:52:09.162303"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Bertram Berge"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FoOMnKVa1JPoROPwrtxCLeb1B0a2T0Et.d7MpzZkeMYbHRCG.cAde"], ["created_at", "2020-05-05 18:52:09.165005"], ["updated_at", "2020-05-05 18:52:09.165005"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +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.1ms | Allocations: 2841) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:52:09 -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"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["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 18:52:09.176631"], ["updated_at", "2020-05-05 18:52:09.176631"], ["created_by", "1"]] +  (0.1ms) SELECT COUNT(*) FROM "user_meets" WHERE "user_meets"."user_id" = ? AND "user_meets"."meet_id" = ? [["user_id", 1], ["meet_id", 11]] + UserMeet Create (0.2ms) INSERT INTO "user_meets" ("user_id", "meet_id") VALUES (?, ?) [["user_id", 1], ["meet_id", 11]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Meet (0.56ms) +Completed 201 Created in 6ms (Views: 1.0ms | ActiveRecord: 0.7ms | Allocations: 2251) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (6.0ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "minus"], ["description", "Autem dolores veritatis nostrum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.191873"], ["updated_at", "2020-05-05 18:52:09.191873"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Ut est enim minus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.199794"], ["updated_at", "2020-05-05 18:52:09.199794"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "non"], ["description", "Asperiores occaecati reiciendis libero."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.201693"], ["updated_at", "2020-05-05 18:52:09.201693"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Esse nihil optio quis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.203464"], ["updated_at", "2020-05-05 18:52:09.203464"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "magnam"], ["description", "Omnis modi aut enim."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.205892"], ["updated_at", "2020-05-05 18:52:09.205892"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "porro"], ["description", "Veritatis eligendi qui minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.207546"], ["updated_at", "2020-05-05 18:52:09.207546"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequuntur"], ["description", "Quia quis dolores repellendus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.208782"], ["updated_at", "2020-05-05 18:52:09.208782"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eum"], ["description", "Et fugit omnis velit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.210067"], ["updated_at", "2020-05-05 18:52:09.210067"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Nesciunt quis velit explicabo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.211351"], ["updated_at", "2020-05-05 18:52:09.211351"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "temporibus"], ["description", "Quidem occaecati et iste."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.212696"], ["updated_at", "2020-05-05 18:52:09.212696"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leone Conroy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2fif/Qw8RzXY2wDBu8Ywi.NSqtDl5J/AoARdNsxndJQ6bRjN7fiiu"], ["created_at", "2020-05-05 18:52:09.217238"], ["updated_at", "2020-05-05 18:52:09.217238"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.14ms) +Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms | Allocations: 2842) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (7.0ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ut"], ["description", "Vel odio eligendi consectetur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.242308"], ["updated_at", "2020-05-05 18:52:09.242308"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Ex dolorem voluptas est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.245108"], ["updated_at", "2020-05-05 18:52:09.245108"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "autem"], ["description", "Rerum est excepturi omnis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.246498"], ["updated_at", "2020-05-05 18:52:09.246498"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "temporibus"], ["description", "Sed omnis blanditiis facilis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.247839"], ["updated_at", "2020-05-05 18:52:09.247839"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "odit"], ["description", "Nobis dolores nam minima."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.249118"], ["updated_at", "2020-05-05 18:52:09.249118"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "nesciunt"], ["description", "Et dolorum voluptatum dignissimos."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.250500"], ["updated_at", "2020-05-05 18:52:09.250500"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "alias"], ["description", "Eum velit sunt aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.251832"], ["updated_at", "2020-05-05 18:52:09.251832"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "deleniti"], ["description", "Et numquam ut quas."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.253096"], ["updated_at", "2020-05-05 18:52:09.253096"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "cum"], ["description", "Molestiae reiciendis architecto expedita."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.254443"], ["updated_at", "2020-05-05 18:52:09.254443"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quia"], ["description", "Accusantium voluptate vel sit."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.256638"], ["updated_at", "2020-05-05 18:52:09.256638"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Wilbur Kuhic"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$wxyh1dIkSMXJpRWur1uDbuwvHEXWzTIVSrP0cfxc7PPxlEK4Dz3K2"], ["created_at", "2020-05-05 18:52:09.260608"], ["updated_at", "2020-05-05 18:52:09.260608"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.6ms) +Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms | Allocations: 2844) +Started POST "/meets" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by MeetsController#create as HTML + Parameters: {"title"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 422 Unprocessable Entity in 8ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 3697) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Doloribus doloremque nobis harum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.287741"], ["updated_at", "2020-05-05 18:52:09.287741"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Delectus ut voluptate provident."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.290618"], ["updated_at", "2020-05-05 18:52:09.290618"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eligendi"], ["description", "Dolore iusto vitae quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.292087"], ["updated_at", "2020-05-05 18:52:09.292087"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "sit"], ["description", "Iusto ut fuga autem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.293399"], ["updated_at", "2020-05-05 18:52:09.293399"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facilis"], ["description", "Et quia ullam dolorem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.294704"], ["updated_at", "2020-05-05 18:52:09.294704"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.3ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "neque"], ["description", "Tempore ut dolores culpa."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.296194"], ["updated_at", "2020-05-05 18:52:09.296194"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "in"], ["description", "Fuga quae possimus vel."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.298456"], ["updated_at", "2020-05-05 18:52:09.298456"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "laboriosam"], ["description", "Amet porro iste illo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.300948"], ["updated_at", "2020-05-05 18:52:09.300948"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Omnis delectus reprehenderit in."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.302684"], ["updated_at", "2020-05-05 18:52:09.302684"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facilis"], ["description", "Adipisci nostrum voluptate nemo."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.304000"], ["updated_at", "2020-05-05 18:52:09.304000"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Edmund Gusikowski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$zUF1N9ZcKLnwYXJBoH.4Mu1BX/VZkw09mlqP99PpTbp7LntVXkJX6"], ["created_at", "2020-05-05 18:52:09.306829"], ["updated_at", "2020-05-05 18:52:09.306829"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.4ms) +Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms | Allocations: 2842) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:52:09.318667"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 1044) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (1.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "at"], ["description", "Aut amet ullam iusto."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.329556"], ["updated_at", "2020-05-05 18:52:09.329556"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "ducimus"], ["description", "Praesentium fugiat possimus id."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.332385"], ["updated_at", "2020-05-05 18:52:09.332385"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "fuga"], ["description", "Illum minus quidem aut."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.334142"], ["updated_at", "2020-05-05 18:52:09.334142"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "distinctio"], ["description", "Facilis animi quisquam iure."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.335466"], ["updated_at", "2020-05-05 18:52:09.335466"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "vel"], ["description", "Sapiente vel eos repudiandae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.337568"], ["updated_at", "2020-05-05 18:52:09.337568"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "aut"], ["description", "Cum alias dolor accusamus."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.340126"], ["updated_at", "2020-05-05 18:52:09.340126"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "consequatur"], ["description", "Quis et dolorem rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.342794"], ["updated_at", "2020-05-05 18:52:09.342794"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "eius"], ["description", "Corporis repellat vel amet."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.344201"], ["updated_at", "2020-05-05 18:52:09.344201"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "qui"], ["description", "Ut dolores rerum est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.345483"], ["updated_at", "2020-05-05 18:52:09.345483"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "voluptatibus"], ["description", "Et et voluptates aspernatur."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.346768"], ["updated_at", "2020-05-05 18:52:09.346768"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Harrison Stoltenberg"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3Ggtk/yrGmrwZIUoyNV.Zu3wPE.vpJpSNNhPdMs5B61dE8M.piM76"], ["created_at", "2020-05-05 18:52:09.349437"], ["updated_at", "2020-05-05 18:52:09.349437"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (4.52ms) +Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.1ms | Allocations: 2842) +Started PUT "/meets/1" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by MeetsController#update as HTML + Parameters: {"title"=>"Shopping", "id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Unpermitted parameter: :id +  (0.1ms) SAVEPOINT active_record_2 + Meet Update (0.1ms) UPDATE "meets" SET "title" = ?, "updated_at" = ? WHERE "meets"."id" = ? [["title", "Shopping"], ["updated_at", "2020-05-05 18:52:09.362377"], ["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.4ms | Allocations: 998) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (1.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rem"], ["description", "Voluptatem sed eos distinctio."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.373742"], ["updated_at", "2020-05-05 18:52:09.373742"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quis"], ["description", "Alias molestiae deserunt quibusdam."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.377481"], ["updated_at", "2020-05-05 18:52:09.377481"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "facilis"], ["description", "Hic accusantium necessitatibus et."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.379617"], ["updated_at", "2020-05-05 18:52:09.379617"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "dolorum"], ["description", "Consequuntur id iure perspiciatis."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.381745"], ["updated_at", "2020-05-05 18:52:09.381745"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "esse"], ["description", "Aliquid non ut rem."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.383530"], ["updated_at", "2020-05-05 18:52:09.383530"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "rerum"], ["description", "Nulla qui quo ex."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.384864"], ["updated_at", "2020-05-05 18:52:09.384864"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "et"], ["description", "Voluptatem sit ullam est."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.386367"], ["updated_at", "2020-05-05 18:52:09.386367"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Soluta dicta magnam earum."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.387761"], ["updated_at", "2020-05-05 18:52:09.387761"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.2ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "enim"], ["description", "Eos numquam nihil qui."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.389076"], ["updated_at", "2020-05-05 18:52:09.389076"], ["created_by", "1"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + Meet Create (0.1ms) INSERT INTO "meets" ("title", "description", "frequency", "duration", "day", "max_members", "created_at", "updated_at", "created_by") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "quisquam"], ["description", "Repellendus id exercitationem molestiae."], ["frequency", "Weekly"], ["duration", 2.0], ["day", "Monday"], ["max_members", 10], ["created_at", "2020-05-05 18:52:09.390894"], ["updated_at", "2020-05-05 18:52:09.390894"], ["created_by", "1"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Eufemia Breitenberg DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7z3hHDgoH46LNCeU3UNXJuoriBJQLAXrq8boVHrzj/QAJ/3hfiVCC"], ["created_at", "2020-05-05 18:52:09.393672"], ["updated_at", "2020-05-05 18:52:09.393672"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/meets" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by MeetsController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with Meet::ActiveRecord_Relation (3.93ms) +Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.2ms | Allocations: 2843) +Started DELETE "/meets/1" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by MeetsController#destroy as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Meet Load (0.1ms) SELECT "meets".* FROM "meets" WHERE "meets"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) SAVEPOINT active_record_2 + Meeting Load (0.0ms) SELECT "meetings".* FROM "meetings" WHERE "meetings"."meet_id" = ? [["meet_id", 1]] + UserMeet Load (0.1ms) SELECT "user_meets".* FROM "user_meets" WHERE "user_meets"."meet_id" = ? [["meet_id", 1]] + Meet Destroy (0.1ms) DELETE FROM "meets" WHERE "meets"."id" = ? [["id", 1]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Completed 204 No Content in 3ms (ActiveRecord: 0.5ms | Allocations: 1201) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Amal Metz"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$MgCF924iBxCeY3u9euqPZeuuT./uyuyZe3v32/I0580LROlMybFva"], ["created_at", "2020-05-05 18:52:09.418533"], ["updated_at", "2020-05-05 18:52:09.418533"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jacqualine Beer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$JlWU0y5NlUXBzX5QmQq9hOseIdSxW0MnSQWIAYuxSzbfREkYtAO2a"], ["created_at", "2020-05-05 18:52:09.423745"], ["updated_at", "2020-05-05 18:52:09.423745"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dee Hamill"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$MHmMKcPcqkVKR0xHd.k5NOpCc8MFtS4v7EUjCOAudF7hohYY8NqVK"], ["created_at", "2020-05-05 18:52:09.426645"], ["updated_at", "2020-05-05 18:52:09.426645"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Vernita Becker"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1QhD1mhKwT5q.U1sl0YdmObHoA5k6KOKW0oNBWzYF8hO4zG5g/qgm"], ["created_at", "2020-05-05 18:52:09.429061"], ["updated_at", "2020-05-05 18:52:09.429061"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Edmond Oberbrunner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$LxbJ1z8D/gSKtdqZCCq8zu5lFn1e8TnimXrJLZsKzQQ3dKOJLSE3u"], ["created_at", "2020-05-05 18:52:09.431480"], ["updated_at", "2020-05-05 18:52:09.431480"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Asa Hartmann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2DD6jw4VZ/GAJ.mDWDc4aeIkecZWOHSM7LDC60A/NpS7zzjf6PwO2"], ["created_at", "2020-05-05 18:52:09.433895"], ["updated_at", "2020-05-05 18:52:09.433895"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Freddie Yost"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$E3e2GEM3st7EjRNpVT.p0O2u.o8iMkuVwslLZ/dmO5FeqLHJ75FyW"], ["created_at", "2020-05-05 18:52:09.436348"], ["updated_at", "2020-05-05 18:52:09.436348"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kim Grant"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BAFBBuRWB2WpuHy/siXqb.j/CEFAqRF7mjOHtuDOjRgZpPT3xX8zi"], ["created_at", "2020-05-05 18:52:09.440056"], ["updated_at", "2020-05-05 18:52:09.440056"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Pura Wilderman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ubriQHoQ/rvI.RNXkUs99OBkFlYYcVOEYx8zf462EW4q3djGC7/FW"], ["created_at", "2020-05-05 18:52:09.443383"], ["updated_at", "2020-05-05 18:52:09.443383"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Grayce Rowe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WOgZbpYD0t5vjwAge/E5IemUjn2fTbkP2GvTZjYOh4QoRlMbEsgsK"], ["created_at", "2020-05-05 18:52:09.445912"], ["updated_at", "2020-05-05 18:52:09.445912"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.93ms) +Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms | Allocations: 2345) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.5ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.6ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ray Gislason MD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Dqt3kYSZfJ42uiYyytELVOakeBZ/zaAPQgmTRK3DkOKWhMk/DIPi."], ["created_at", "2020-05-05 18:52:09.464397"], ["updated_at", "2020-05-05 18:52:09.464397"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Clement Balistreri"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0s8RGXGnHkLU7DtFaAwGQuKok5EDtOJ9UZ1gJL70R3TWMSNN3cl1K"], ["created_at", "2020-05-05 18:52:09.469179"], ["updated_at", "2020-05-05 18:52:09.469179"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Major Oberbrunner DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Ghv2U46Um5slnhRlngTEvus5KT2c29XaipEQokSgHwcTiHVQSrhXO"], ["created_at", "2020-05-05 18:52:09.471974"], ["updated_at", "2020-05-05 18:52:09.471974"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Samatha Mills"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NUL.XN8QTdgJoQCELFJreeizUePa7HvmWMq2J1nedkalIjOj0EdXy"], ["created_at", "2020-05-05 18:52:09.475407"], ["updated_at", "2020-05-05 18:52:09.475407"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Stormy Satterfield"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hHoy.9Iid4QUQvCGW1WQMerFLzVDN84c4U.HrdnxNZdq8szrnf5Pq"], ["created_at", "2020-05-05 18:52:09.478715"], ["updated_at", "2020-05-05 18:52:09.478715"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Annamae Kuhlman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$y6LVus66KiAPg54TBWVK/.ho8u0vUIAoeS.f6Oc0.yD2Woyu6iYhi"], ["created_at", "2020-05-05 18:52:09.481896"], ["updated_at", "2020-05-05 18:52:09.481896"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Franklyn Christiansen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$1OzR5ZLowtw07O.mFV66.eQ3uk72Vq5IfoQ0guy2JnELovcomcx4S"], ["created_at", "2020-05-05 18:52:09.485471"], ["updated_at", "2020-05-05 18:52:09.485471"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Joan Carroll"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$15jSZkujPahs1z7hl.oi0.OtHCwkQcpizULraApeysgpX6mAiIMgK"], ["created_at", "2020-05-05 18:52:09.488716"], ["updated_at", "2020-05-05 18:52:09.488716"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Anne Dickens"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6XdDsS.LzPcVfqfYdBaJd.NoRIRS7F8HhODr9a1KU5gNLFknVJAqa"], ["created_at", "2020-05-05 18:52:09.491423"], ["updated_at", "2020-05-05 18:52:09.491423"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Josiah Wiza"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pyjalkeof2zMJlMe4aEBsOLLeQoZCuka36ucG9Ahp3obTTASWdW5G"], ["created_at", "2020-05-05 18:52:09.493889"], ["updated_at", "2020-05-05 18:52:09.493889"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.68ms) +Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.1ms | Allocations: 2203) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.4ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Rolando Kautzer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$gLR0swfoOUKMkLLiQS8Ky.ii6iu7RPptX3A8oaG/NQ/FSJPtaFmWK"], ["created_at", "2020-05-05 18:52:09.511726"], ["updated_at", "2020-05-05 18:52:09.511726"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kip Renner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$veX.hvyg6Z7gbP3ZHYZLsezsnH91KTcjBjP9EAD56u9lM3KhpPJPO"], ["created_at", "2020-05-05 18:52:09.515602"], ["updated_at", "2020-05-05 18:52:09.515602"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Violet Bernhard"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$eBz8izZ/7M7oX4XgSbL2oOpJNcUOXkPxDndt37bxO2dMYR.s51022"], ["created_at", "2020-05-05 18:52:09.518540"], ["updated_at", "2020-05-05 18:52:09.518540"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Joey Mosciski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$i/hSsiCxGgVFiXOjAy8/luDDKI3pho7Fne6WPJv2og3mR1FV.mrLm"], ["created_at", "2020-05-05 18:52:09.521877"], ["updated_at", "2020-05-05 18:52:09.521877"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dirk Hahn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ghGNMopZZcEBkcDLYxbHHOeUchJOgd1ny1j3La0B2YWjW/sI6kdm."], ["created_at", "2020-05-05 18:52:09.525975"], ["updated_at", "2020-05-05 18:52:09.525975"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Refugio Wehner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$PfG0yv8fkfKwGxDrv3ppQ.xNh4eC5uik605Kym/pDS9WDeEZCnL.."], ["created_at", "2020-05-05 18:52:09.528657"], ["updated_at", "2020-05-05 18:52:09.528657"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ismael Glover"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$o4se3yR/FYvix2upHhNfEu8t8nTr5lnkn0Ufn.8pwfPPCO7qpAKGa"], ["created_at", "2020-05-05 18:52:09.531145"], ["updated_at", "2020-05-05 18:52:09.531145"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ignacio Wehner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5taYE/7GHxtueC5oEl.ffOqJjSFi.IUS81fVgbARS8fy6dTd0zXmy"], ["created_at", "2020-05-05 18:52:09.533613"], ["updated_at", "2020-05-05 18:52:09.533613"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miguel Halvorson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5mpaWKJXyDkfSpwxf04Y1uJfq4Jrai/P9mlNq1k1fU425I8B3C1Jq"], ["created_at", "2020-05-05 18:52:09.536373"], ["updated_at", "2020-05-05 18:52:09.536373"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Renaldo Weissnat PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FGKWoapKSVfl7j6IQ1FU8O71iUMW.5j/PHq49tJ6ScplpTEi63NB2"], ["created_at", "2020-05-05 18:52:09.540430"], ["updated_at", "2020-05-05 18:52:09.540430"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.04ms) +Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.35ms) +Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (6.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Delta Bins"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7GiNYscA2rF41ztrteLvDOvcf8z063cVMZ2VV.8Flu0Zjz6Bi07qq"], ["created_at", "2020-05-05 18:52:09.562925"], ["updated_at", "2020-05-05 18:52:09.562925"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Kum Champlin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$pE8NJUGzEhfPTk7CD9fw2OF4Hn.1.MwOZohpMBYtXsrjzLUapbZ62"], ["created_at", "2020-05-05 18:52:09.567589"], ["updated_at", "2020-05-05 18:52:09.567589"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Simon Hessel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0l5DZi8mLLnV.F3Y.H97MejITwiBP7T2hjAf/v2PORjOBpASGMWdq"], ["created_at", "2020-05-05 18:52:09.570242"], ["updated_at", "2020-05-05 18:52:09.570242"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cruz Parker"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5WBfs0LFGAkl7A4JmPuYTuDyfNC94th3CqNCeVbjPeey6hsWEd/PS"], ["created_at", "2020-05-05 18:52:09.573057"], ["updated_at", "2020-05-05 18:52:09.573057"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Pamelia Prosacco"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$WXIfhM0mL.RvOaXZ7.pip.zUQvpNQqG28nQaHhU8Wbgin4JoPIxYW"], ["created_at", "2020-05-05 18:52:09.575832"], ["updated_at", "2020-05-05 18:52:09.575832"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dara Ferry"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$2sw2aJxd1WRaFYVZ.R90HeY43icKQFGo7Ag2zbLIJKgpdQc96CkMe"], ["created_at", "2020-05-05 18:52:09.578480"], ["updated_at", "2020-05-05 18:52:09.578480"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Giuseppe Kerluke"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RzScwnhDFv17hJUIaSI59uYV66vbMIjO4m/1t.qy9AtnBjqB2affC"], ["created_at", "2020-05-05 18:52:09.581980"], ["updated_at", "2020-05-05 18:52:09.581980"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marina Roob"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HrG4udHrDfGrdUp7ZPbHgurFrQoOt7UA90MDBmddJ8TzzjuJl8Tim"], ["created_at", "2020-05-05 18:52:09.585192"], ["updated_at", "2020-05-05 18:52:09.585192"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elissa Lehner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KXAy6ZlihWclsycIMORCLO/Amfv6lfLfNeFBXYSiAjixt3JXVwpNC"], ["created_at", "2020-05-05 18:52:09.587584"], ["updated_at", "2020-05-05 18:52:09.587584"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Sondra Shanahan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$jJAD4mgrmRGzyiyk87mt3.8MMJxEG2hjfNVmGbBafYLt8Uis.7eVC"], ["created_at", "2020-05-05 18:52:09.590301"], ["updated_at", "2020-05-05 18:52:09.590301"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.81ms) +Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/1" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"1"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with User (0.45ms) +Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.1ms | Allocations: 692) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (27.9ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Milan Smitham"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$BCGT56lJM83pNguXvYP4BO4L0A/gTo1CUfq1PSCBHXUGYrZeFOTcO"], ["created_at", "2020-05-05 18:52:09.633376"], ["updated_at", "2020-05-05 18:52:09.633376"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Diedra Adams"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$kWYOn8De5/esP56sVX/jkufNuD7CGuWRDruQwNoQOwGb.bvwQdzxq"], ["created_at", "2020-05-05 18:52:09.637274"], ["updated_at", "2020-05-05 18:52:09.637274"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jaime Zieme"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$3cNAbGHkMs2kpJBpgQpV3.dK8YyoRoFn5bHzIiXkjp.z66TZGEnry"], ["created_at", "2020-05-05 18:52:09.640714"], ["updated_at", "2020-05-05 18:52:09.640714"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Arnita Welch"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$opfC2TGdQkNhKsgSyEGFWuQXOgyNL.qwPPCeCUDTU1VQ834ZBl2Qa"], ["created_at", "2020-05-05 18:52:09.644258"], ["updated_at", "2020-05-05 18:52:09.644258"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sixta Hyatt"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/k7vBpUj0LkwJzK2sChu9.0metv2MILh6I9RXhAtnj425jEA3WPwO"], ["created_at", "2020-05-05 18:52:09.647078"], ["updated_at", "2020-05-05 18:52:09.647078"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Maria Wiegand"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$UYNqA0ar5mU.h/IEZjuci.4XDl1QD1.LUcQ7CDKDuv9hcQWMEpTAa"], ["created_at", "2020-05-05 18:52:09.649472"], ["updated_at", "2020-05-05 18:52:09.649472"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Darrin Hansen"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6P4PQoF8L282kE2pPeKsgudAkFfro5vPx5rRsv6h2mxsExilbFt0K"], ["created_at", "2020-05-05 18:52:09.651935"], ["updated_at", "2020-05-05 18:52:09.651935"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ms. Enid Ward"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$6OhvysR71IrhjysXIrft8.pZ1VziSjAmrV7JYDWRobpnxn7SGe2.i"], ["created_at", "2020-05-05 18:52:09.654347"], ["updated_at", "2020-05-05 18:52:09.654347"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bret Herman"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$5ubvSe7QZ/R2.NVyDF9KVejfcAVJpHhQKhwR0XFS73QyikUWqSHO."], ["created_at", "2020-05-05 18:52:09.657438"], ["updated_at", "2020-05-05 18:52:09.657438"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Cherie Rohan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$lUSQJgi.plJrNN9YaGleD.qF1UKARAkxSyGgHRLTZGZwMkUDXRv02"], ["created_at", "2020-05-05 18:52:09.660985"], ["updated_at", "2020-05-05 18:52:09.660985"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.89ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["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: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (10.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.0ms) SAVEPOINT active_record_2 + User Create (1.0ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Eli Torphy"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$eLFe5PPu3trM8LQiEgtYuO.HnAs/5gZdF55bYMg5jmAMnddyG3EAi"], ["created_at", "2020-05-05 18:52:09.685540"], ["updated_at", "2020-05-05 18:52:09.685540"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Fay Russel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$m9s6ZnLBMxWYl4b5U4U/a.Np0IPIdbTZN.r/fAYabLOe170UcNl3y"], ["created_at", "2020-05-05 18:52:09.689286"], ["updated_at", "2020-05-05 18:52:09.689286"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Alaina Zemlak"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mEAi2J4YJbMkCzF8LoiyEeHM3mCNQZtO8BwttpoL6lm2GVuvflvzK"], ["created_at", "2020-05-05 18:52:09.692034"], ["updated_at", "2020-05-05 18:52:09.692034"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Christopher Kling"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$lNpnSqrV4VWNFG3gu0Ol.OimCKgpqFkes6XrE6KVvCXO8GlJSLYT."], ["created_at", "2020-05-05 18:52:09.694563"], ["updated_at", "2020-05-05 18:52:09.694563"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.0ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Leon Anderson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$wbiFol3GXDibpdn1UN4lGOa3i/e1GT11Saen9Za3ASbe52jtKm282"], ["created_at", "2020-05-05 18:52:09.697065"], ["updated_at", "2020-05-05 18:52:09.697065"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Broderick Jakubowski"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$i/PDDZ9rnSVQLchqo/7pIu0orknjaf23j2gIgf7q1sCPStATE/T72"], ["created_at", "2020-05-05 18:52:09.699868"], ["updated_at", "2020-05-05 18:52:09.699868"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Helena Predovic PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$c1zTca8VvoW4VhKWUbjpSe50E7IxFgOKaiVIXFKMslK3WHj9G.r6e"], ["created_at", "2020-05-05 18:52:09.703206"], ["updated_at", "2020-05-05 18:52:09.703206"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jerica Schuster"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7u47t/j0N.achJwoAs7yo.481IH.THT6/Y0N45/dytHulNY0xKAee"], ["created_at", "2020-05-05 18:52:09.706368"], ["updated_at", "2020-05-05 18:52:09.706368"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Morton Howe"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$75wdRUit0gfmxjdrvUNkce43ZjqTFOHgX9CpQc4Zq/NfdU5h8nkjm"], ["created_at", "2020-05-05 18:52:09.709356"], ["updated_at", "2020-05-05 18:52:09.709356"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Amado Durgan"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$MZFm/lsL5WqasuTl8FEJ1O.LyCLWLWgHZerlwHcWcXs05kMwbD1Sm"], ["created_at", "2020-05-05 18:52:09.712314"], ["updated_at", "2020-05-05 18:52:09.712314"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (4.0ms) +Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started GET "/users/100" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by UsersController#show as HTML + Parameters: {"id"=>"100"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 100], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.06ms) +Completed 404 Not Found in 2ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 524) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.6ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leann Lindgren I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$85xSU0vcyf9FOXYsw6kRiehlpPbY2mX6tHNjpnMA81KpqSkNRO4ne"], ["created_at", "2020-05-05 18:52:09.735935"], ["updated_at", "2020-05-05 18:52:09.735935"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kory Ledner DDS"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$eyULY.bjOPgV3bXbZb0i7.TVHJ0FaP1L8ffiXDFtknulfLXoHAVlC"], ["created_at", "2020-05-05 18:52:09.742166"], ["updated_at", "2020-05-05 18:52:09.742166"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Fredric Cummings"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$tTf2c0FSEYQ4h5YMyzHQDeVcko8cFxnHkwlc7DN4pRbiuoVnGnc3a"], ["created_at", "2020-05-05 18:52:09.745293"], ["updated_at", "2020-05-05 18:52:09.745293"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lee Schamberger"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$RnuUBqCgl/0Z.S1y99bnnOOOVRyrnwZndUnq6iixb9d3os/rhkfmW"], ["created_at", "2020-05-05 18:52:09.749240"], ["updated_at", "2020-05-05 18:52:09.749240"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bertha Jacobs"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Gd1DTokJkh8P2zIAqh.H9u5YbIPpEJmT4RnN0L1hhx/5SDt4.O9i."], ["created_at", "2020-05-05 18:52:09.752562"], ["updated_at", "2020-05-05 18:52:09.752562"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Charmaine Bode"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$ECjscmdx/b3vyUE0niVUeuLSmHnDXUbxBmS7nvDbU56VnPgcseRXy"], ["created_at", "2020-05-05 18:52:09.755959"], ["updated_at", "2020-05-05 18:52:09.755959"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sandie Berge"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$N54DACIfHdQ1N6cEby/e2Oa/uzfUPhCWvNfr0w5yocnIIZV74EbdO"], ["created_at", "2020-05-05 18:52:09.759423"], ["updated_at", "2020-05-05 18:52:09.759423"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Trevor Cole PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$Ie9HSoKXM5PBL2tYGqs/JeUjIYXq8bTX3SKv4/3Xi3LuEN9T8oCQq"], ["created_at", "2020-05-05 18:52:09.762860"], ["updated_at", "2020-05-05 18:52:09.762860"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ulrike Miller DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$GEVg5bGQ3Y/GVVcM23hguOAO0VUWWhep0/6anIBSYIH0pY0NhxPka"], ["created_at", "2020-05-05 18:52:09.765745"], ["updated_at", "2020-05-05 18:52:09.765745"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leigh Herzog II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$05xg3Ooc7qDQOgkVCG.SC.xdLQsFIiABgnSNKz7W5wqAfauq40PWu"], ["created_at", "2020-05-05 18:52:09.768645"], ["updated_at", "2020-05-05 18:52:09.768645"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.04ms) +Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Sheyla", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "email"=>"shey@mail.com"} +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sheyla"], ["email", "shey@mail.com"], ["password_digest", "$2a$04$AOSEnub8OkVh5LWBfBk03.FNR5iuy1F5kvJB9NvuINbCN36UzgHxi"], ["created_at", "2020-05-05 18:52:09.781329"], ["updated_at", "2020-05-05 18:52:09.781329"], ["picture", "https://joeschmoe.io/api/v1/jack"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 + User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.71ms) +Completed 201 Created in 12ms (Views: 1.5ms | ActiveRecord: 0.5ms | Allocations: 1714) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.3ms) rollback transaction +  (0.1ms) begin transaction +  (0.2ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.9ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Victorina Oberbrunner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$sbDyewy6.mvVbkpstMmM7uhzxQ5cs6dKZ9ezc8ZIdznMCnmsVeUme"], ["created_at", "2020-05-05 18:52:09.802963"], ["updated_at", "2020-05-05 18:52:09.802963"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Dee Klein"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$e3ng9JMqRM9gt9ZgMn1ZKuUwrPhm2DRiYto5IpfmDNNgB7SQLmPgi"], ["created_at", "2020-05-05 18:52:09.808655"], ["updated_at", "2020-05-05 18:52:09.808655"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Dr. Arla Larson"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$sul6OgefWD5Gz6UMwC6SVuLfZPhMEhC9ehxBieAL3bakownPXoVde"], ["created_at", "2020-05-05 18:52:09.811700"], ["updated_at", "2020-05-05 18:52:09.811700"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mr. Ceola Breitenberg"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$0Pb9.gCYHgkhVDWalIr6iOfMN2QZie0q4G8g87CQvG3X7bgJAeFAC"], ["created_at", "2020-05-05 18:52:09.814969"], ["updated_at", "2020-05-05 18:52:09.814969"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jan Schmeler"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$.GSJ6kmhyInqrUiKkHQdn.nWgA74JQ3RDShafZX6b0qaRscFrHgCm"], ["created_at", "2020-05-05 18:52:09.819591"], ["updated_at", "2020-05-05 18:52:09.819591"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Taisha Collier"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$FKHOhMdPMdcR4/MmQgtd0OgKL9Dmx7hMma8hBzpTj77l7NVnrxcbi"], ["created_at", "2020-05-05 18:52:09.825992"], ["updated_at", "2020-05-05 18:52:09.825992"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Deidre Funk"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$bvP5b57F.7EUsfLEVH/PReF7Ua8YFlABRKP.rWx1aQqcTRFQOIggC"], ["created_at", "2020-05-05 18:52:09.829161"], ["updated_at", "2020-05-05 18:52:09.829161"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Joaquina Hahn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$rNbZprbKxsNz5kRfzb4VOuSWg/59DFGhhElzQKoTvHZADUNwsWEoO"], ["created_at", "2020-05-05 18:52:09.832228"], ["updated_at", "2020-05-05 18:52:09.832228"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Logan Crist"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$OgrB8MXDkBq7UUk8EAhGWOKXCxhwcEX0r2XIAthpVGqaMGFiPJb0e"], ["created_at", "2020-05-05 18:52:09.835126"], ["updated_at", "2020-05-05 18:52:09.835126"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Eugenie Stiedemann"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$D0/8R6hthLqFerxNM.opreigWjxT2xJ7mlxcUh.AFNDX3V8O2XHva"], ["created_at", "2020-05-05 18:52:09.837980"], ["updated_at", "2020-05-05 18:52:09.837980"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.2ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by UsersController#index as HTML + User Load (0.2ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (2.79ms) +Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Sheyla", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "email"=>"shey@mail.com"} +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Sheyla"], ["email", "shey@mail.com"], ["password_digest", "$2a$04$0W2v3Gm/UYVtXyI1tOyUn.yeUo2DFE97eBLf7hOEBJjVNBWKSZuHy"], ["created_at", "2020-05-05 18:52:09.851926"], ["updated_at", "2020-05-05 18:52:09.851926"], ["picture", "https://joeschmoe.io/api/v1/jabala"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] + CACHE User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "shey@mail.com"], ["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.44ms) +Completed 201 Created in 8ms (Views: 1.0ms | ActiveRecord: 0.4ms | Allocations: 1329) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.1ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (1.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Roxie McDermott"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$cxechkH8gYlNa5T0Xqh8M.LBVcyqiiiES4fpp2u8/DpTJT7Q5DGIy"], ["created_at", "2020-05-05 18:52:09.869402"], ["updated_at", "2020-05-05 18:52:09.869402"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Leonardo Bahringer"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$VQxWvMTjnp9DFvWPSOFCPOtAx4oHsS1WkfTJINjFJAmK3ISizO5UG"], ["created_at", "2020-05-05 18:52:09.875093"], ["updated_at", "2020-05-05 18:52:09.875093"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Marisela Bahringer II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$SQ0dvDKKXc6Mc4Y7oST1EeIxIHAT9O6nNMo5y0fK28xF.7.oWdee6"], ["created_at", "2020-05-05 18:52:09.878856"], ["updated_at", "2020-05-05 18:52:09.878856"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Jospeh Cremin"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$w1t/5QPwsolqmFQma3vpROI8q5RiSwjBMe.7lo6eA6ToZgN1uB7JS"], ["created_at", "2020-05-05 18:52:09.883791"], ["updated_at", "2020-05-05 18:52:09.883791"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Gertude Stiedemann PhD"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$mU9iXj8CEfJCQOQ52GIvi.N.KNL72FpNxiLhtXqwqXQo/g1UNyoiS"], ["created_at", "2020-05-05 18:52:09.887601"], ["updated_at", "2020-05-05 18:52:09.887601"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Natashia Heathcote I"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/s3wfYLGJ8EjrAgWhYrsMe.nZiBh8Tzi02uIF4fsDqbKV8aQ0t..G"], ["created_at", "2020-05-05 18:52:09.890895"], ["updated_at", "2020-05-05 18:52:09.890895"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Lindsey Hahn"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$hLmYPSHiIHhUxeX2qRLPU.pZVU/MWcKXaNmOKKgsrjWE1URCeF5k6"], ["created_at", "2020-05-05 18:52:09.894155"], ["updated_at", "2020-05-05 18:52:09.894155"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Miss Granville Waelchi"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$7q14FQUrVOcJp4FWcwJSy.YE3FX0hHTH7vaXnKb./VqlTZMTESP0O"], ["created_at", "2020-05-05 18:52:09.897227"], ["updated_at", "2020-05-05 18:52:09.897227"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Yajaira Johnston"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$sfhqUYbSWsvOEmVi7nAORuweRpQ8firOyaqsTyt2SFY0r4nMQ44vG"], ["created_at", "2020-05-05 18:52:09.901289"], ["updated_at", "2020-05-05 18:52:09.901289"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Emmaline Thiel"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CNPmzHsXaRqSLdwsfRYy5uuzGQ1cud9rsS9nTOzbSHNfRdU1aDj/W"], ["created_at", "2020-05-05 18:52:09.906451"], ["updated_at", "2020-05-05 18:52:09.906451"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.7ms) +Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:52:09 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Foobar"} + User Load (23.3ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.08ms) +Completed 401 Unauthorized in 29ms (Views: 0.7ms | ActiveRecord: 23.3ms | Allocations: 1622) +  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 +  (5.8ms) rollback transaction +  (0.1ms) begin transaction +  (0.1ms) SAVEPOINT active_record_1 +  (0.1ms) SAVEPOINT active_record_2 + User Create (2.5ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Ray Lehner"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$52wezTxddqE8JsN.aaTbFeY3BlzIuWhao8PwgbyitHdkWF5a/nh9y"], ["created_at", "2020-05-05 18:52:09.958967"], ["updated_at", "2020-05-05 18:52:09.958967"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.4ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Kris Roob"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$zDvXzffwh7YCl5YXwJ/aGOzalDxuDo80bcuRvs8vIMN8MQxD8.LOa"], ["created_at", "2020-05-05 18:52:09.966413"], ["updated_at", "2020-05-05 18:52:09.966413"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Wyatt Fahey"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$HZJDs58.Lbq7tHrPrFukF.9PxYlwp8ERJgB4cg4k/O6JnJZfXHyTC"], ["created_at", "2020-05-05 18:52:09.969901"], ["updated_at", "2020-05-05 18:52:09.969901"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Stacy Rath"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$/lR1RUwmL2o0na9/vaisxuQasvmxLpAa5DYZV/NFq5P2uuEJmHs/m"], ["created_at", "2020-05-05 18:52:09.973352"], ["updated_at", "2020-05-05 18:52:09.973352"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Bernard Cartwright"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$KuuO9bBImh4tzmbeIsuNYuAjN2uIkuDJlOoG9tNiYLtjRDw6xMzBe"], ["created_at", "2020-05-05 18:52:09.976875"], ["updated_at", "2020-05-05 18:52:09.976875"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.2ms) SAVEPOINT active_record_2 + User Create (0.2ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Micheal Blick"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$aQ04eXXBK6vvFS1yw8E4aOo5nG2r/JV4T4GceZWJ/vZArtRjY9HAS"], ["created_at", "2020-05-05 18:52:09.980687"], ["updated_at", "2020-05-05 18:52:09.980687"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Hoyt Nienow DVM"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$o.dztsNvvXcN8Zh1Krto5.75mAz8LFyLg6cF/QEWqNzv0WjRa5A32"], ["created_at", "2020-05-05 18:52:09.985513"], ["updated_at", "2020-05-05 18:52:09.985513"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.3ms) SAVEPOINT active_record_2 + User Create (0.3ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Elmer Sawayn II"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$CkAZMtnvXYJBULy8hgIS7OtkLdSTfad6qneB5GmkLIUuExaokANPG"], ["created_at", "2020-05-05 18:52:09.990485"], ["updated_at", "2020-05-05 18:52:09.990485"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Tod Harris"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$fWKRqneyfaHXYEPliAFlYuwIwG9ZzIZpD.KhiVeG0xgWssswXltOm"], ["created_at", "2020-05-05 18:52:09.995451"], ["updated_at", "2020-05-05 18:52:09.995451"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.0ms) RELEASE SAVEPOINT active_record_2 +  (0.1ms) SAVEPOINT active_record_2 + User Create (0.1ms) INSERT INTO "users" ("name", "email", "password_digest", "created_at", "updated_at", "picture") VALUES (?, ?, ?, ?, ?, ?) [["name", "Mrs. Merry Spinka"], ["email", "joanne@silva.com"], ["password_digest", "$2a$04$NVFdNzm67p/2SJ8/T3baqeCUs/52xHsuM2z1bJVcNtu.PD11i/TWq"], ["created_at", "2020-05-05 18:52:09.998578"], ["updated_at", "2020-05-05 18:52:09.998578"], ["picture", "https://joeschmoe.io/api/v1/jane"]] +  (0.1ms) RELEASE SAVEPOINT active_record_2 +Started GET "/users" for 127.0.0.1 at 2020-05-05 15:52:10 -0300 +Processing by UsersController#index as HTML + User Load (0.1ms) SELECT "users".* FROM "users" +No serializer found for resource: # +[active_model_serializers] Rendered ActiveModel::Serializer::CollectionSerializer with User::ActiveRecord_Relation (3.86ms) +Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.1ms | Allocations: 2203) +Started POST "/auth/signup" for 127.0.0.1 at 2020-05-05 15:52:10 -0300 +Processing by UsersController#create as HTML + Parameters: {"name"=>"Foobar"} + User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL LIMIT ? [["LIMIT", 1]] +[active_model_serializers] Rendered ActiveModel::Serializer::Null with Hash (0.09ms) +Completed 401 Unauthorized in 5ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 1597) +  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1 +  (11.3ms) rollback transaction diff --git a/api/spec/controllers/authentication_controller_spec.rb b/api/spec/controllers/authentication_controller_spec.rb new file mode 100644 index 000000000..8d5ad26b9 --- /dev/null +++ b/api/spec/controllers/authentication_controller_spec.rb @@ -0,0 +1,4 @@ +require 'rails_helper' + +RSpec.describe AuthenticationController, type: :controller do +end diff --git a/api/spec/controllers/meetings_controller_spec.rb b/api/spec/controllers/meetings_controller_spec.rb new file mode 100644 index 000000000..f5562d970 --- /dev/null +++ b/api/spec/controllers/meetings_controller_spec.rb @@ -0,0 +1,4 @@ +require 'rails_helper' + +RSpec.describe MeetingsController, type: :controller do +end diff --git a/api/spec/controllers/meets_controller_spec.rb b/api/spec/controllers/meets_controller_spec.rb new file mode 100644 index 000000000..4217a5433 --- /dev/null +++ b/api/spec/controllers/meets_controller_spec.rb @@ -0,0 +1,4 @@ +require 'rails_helper' + +RSpec.describe MeetsController, type: :controller do +end diff --git a/api/spec/controllers/users_controller_spec.rb b/api/spec/controllers/users_controller_spec.rb new file mode 100644 index 000000000..dd673d4c0 --- /dev/null +++ b/api/spec/controllers/users_controller_spec.rb @@ -0,0 +1,4 @@ +require 'rails_helper' + +RSpec.describe UsersController, type: :controller do +end diff --git a/api/spec/factories/meetings.rb b/api/spec/factories/meetings.rb new file mode 100644 index 000000000..98565d36c --- /dev/null +++ b/api/spec/factories/meetings.rb @@ -0,0 +1,8 @@ +FactoryBot.define do + factory :meeting do + title { Faker::Lorem.question } + description { Faker::Lorem.sentence } + date { Time.now + 1.day } + link { 'https://zoom.com/fakelink' } + end +end diff --git a/api/spec/factories/meets.rb b/api/spec/factories/meets.rb new file mode 100644 index 000000000..993f7583a --- /dev/null +++ b/api/spec/factories/meets.rb @@ -0,0 +1,11 @@ +FactoryBot.define do + factory :meet do + title { Faker::Lorem.word } + description { Faker::Lorem.sentence } + frequency { 'Weekly' } + day { 'Monday' } + duration { '2' } + created_by { 1 } + max_members { 10 } + end +end diff --git a/api/spec/factories/users.rb b/api/spec/factories/users.rb new file mode 100644 index 000000000..abe3eff0b --- /dev/null +++ b/api/spec/factories/users.rb @@ -0,0 +1,8 @@ +FactoryBot.define do + factory :user do + name { Faker::Name.name } + email { 'joanne@silva.com' } + password { '123abc' } + picture { 'https://joeschmoe.io/api/v1/jane' } + end +end diff --git a/api/spec/models/conversation_spec.rb b/api/spec/models/conversation_spec.rb new file mode 100644 index 000000000..7b5678af5 --- /dev/null +++ b/api/spec/models/conversation_spec.rb @@ -0,0 +1,6 @@ +require 'rails_helper' + +RSpec.describe Conversation, type: :model do + it { should have_many(:messagems) } + it { should validate_presence_of(:title) } +end diff --git a/api/spec/models/meet_spec.rb b/api/spec/models/meet_spec.rb new file mode 100644 index 000000000..0bcf612dc --- /dev/null +++ b/api/spec/models/meet_spec.rb @@ -0,0 +1,14 @@ +require 'rails_helper' + +RSpec.describe Meet, type: :model do + it { should have_many(:meetings).dependent(:destroy) } + it { should have_many(:user_meets).dependent(:destroy) } + it { should have_many(:users) } + it { should validate_presence_of(:title) } + it { should validate_presence_of(:description) } + it { should validate_presence_of(:frequency) } + it { should validate_presence_of(:duration) } + it { should validate_presence_of(:day) } + it { should validate_presence_of(:max_members) } + it { should validate_presence_of(:created_by) } +end diff --git a/api/spec/models/meeting_spec.rb b/api/spec/models/meeting_spec.rb new file mode 100644 index 000000000..df78707a2 --- /dev/null +++ b/api/spec/models/meeting_spec.rb @@ -0,0 +1,12 @@ +require 'rails_helper' + +RSpec.describe Meeting, type: :model do + it { should belong_to(:meet) } + it { should have_many(:user_meetings) } + it { should have_many(:users) } + it { should validate_presence_of(:title) } + it { should validate_presence_of(:description) } + it { should validate_presence_of(:date) } + it { should validate_presence_of(:meet_id) } + it { should validate_presence_of(:link) } +end diff --git a/api/spec/models/messagem_spec.rb b/api/spec/models/messagem_spec.rb new file mode 100644 index 000000000..6da52aec5 --- /dev/null +++ b/api/spec/models/messagem_spec.rb @@ -0,0 +1,7 @@ +require 'rails_helper' + +RSpec.describe Messagem, type: :model do + it { should belong_to(:conversation) } + it { should validate_presence_of(:text) } + it { should validate_presence_of(:conversation_id) } +end diff --git a/api/spec/models/user_spec.rb b/api/spec/models/user_spec.rb new file mode 100644 index 000000000..35d78994d --- /dev/null +++ b/api/spec/models/user_spec.rb @@ -0,0 +1,14 @@ +require 'rails_helper' + +RSpec.describe User, type: :model do + it { should have_many(:meets) } + it { should have_many(:user_meets) } + it { should have_many(:user_meetings) } + it { should have_many(:meetings) } + it { should have_many(:meets) } + it { should have_many(:created_meets) } + it { should validate_presence_of(:name) } + it { should validate_presence_of(:email) } + it { should validate_presence_of(:password_digest) } + it { should validate_presence_of(:picture) } +end diff --git a/api/spec/rails_helper.rb b/api/spec/rails_helper.rb new file mode 100644 index 000000000..5487f14f0 --- /dev/null +++ b/api/spec/rails_helper.rb @@ -0,0 +1,89 @@ +require 'database_cleaner' + +# This file is copied to spec/ when you run 'rails generate rspec:install' +require 'spec_helper' +ENV['RAILS_ENV'] ||= 'test' + +require File.expand_path('../config/environment', __dir__) + +# Prevent database truncation if the environment is production +abort('The Rails environment is running in production mode!') if Rails.env.production? +require 'rspec/rails' +# Add additional requires below this line. Rails is not loaded until this point! + +# Requires supporting ruby files with custom matchers and macros, etc, in +# spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are +# run as spec files by default. This means that files in spec/support that end +# in _spec.rb will both be required and run as specs, causing the specs to be +# run twice. It is recommended that you do not name files matching this glob to +# end with _spec.rb. You can configure this pattern with the --pattern +# option on the command line or in ~/.rspec, .rspec or `.rspec-local`. +# +# The following line is provided for convenience purposes. It has the downside +# of increasing the boot-up time by auto-requiring all files in the support +# directory. Alternatively, in the individual `*_spec.rb` files, manually +# require only the support files necessary. +Dir[Rails.root.join('spec', 'support', '**', '*.rb')].each { |f| require f } # rubocop:disable Lint/NonDeterministicRequireOrder + +# Checks for pending migrations and applies them before tests are run. +# If you are not using ActiveRecord, you can remove these lines. +begin + ActiveRecord::Migration.maintain_test_schema! +rescue ActiveRecord::PendingMigrationError => e + puts e.to_s.strip + exit 1 +end + +Shoulda::Matchers.configure do |config| + config.integrate do |with| + with.test_framework :rspec + with.library :rails + end +end + +RSpec.configure do |config| + # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures + config.fixture_path = "#{::Rails.root}/spec/fixtures" + + # If you're not using ActiveRecord, or you'd prefer not to run each of your + # examples within a transaction, remove the following line or assign false + # instead of true. + config.use_transactional_fixtures = true + + config.include FactoryBot::Syntax::Methods + + config.include RequestSpecHelper, type: :request + + config.include RequestSpecHelper + config.include ControllerSpecHelper + + config.before(:suite) do + DatabaseCleaner.clean_with(:truncation) + DatabaseCleaner.strategy = :transaction + end + + config.around(:each) do |example| + DatabaseCleaner.cleaning do + example.run + end + end + # RSpec Rails can automatically mix in different behaviours to your tests + # based on their file location, for example enabling you to call `get` and + # `post` in specs under `spec/controllers`. + # + # You can disable this behaviour by removing the line below, and instead + # explicitly tag your specs with their type, e.g.: + # + # RSpec.describe UsersController, :type => :controller do + # # ... + # end + # + # The different available types are documented in the features, such as in + # https://relishapp.com/rspec/rspec-rails/docs + config.infer_spec_type_from_file_location! + + # Filter lines from Rails gems in backtraces. + config.filter_rails_from_backtrace! + # arbitrary gems may also be filtered via: + # config.filter_gems_from_backtrace("gem name") +end diff --git a/api/spec/requests/meetings_spec.rb b/api/spec/requests/meetings_spec.rb new file mode 100644 index 000000000..debb0ce7d --- /dev/null +++ b/api/spec/requests/meetings_spec.rb @@ -0,0 +1,127 @@ +require 'rails_helper' + +RSpec.describe 'Meetings API' do + let!(:users) { create_list(:user, 1) } + let!(:meet) { create(:meet) } + let!(:meetings) { create_list(:meeting, 20, meet_id: meet.id) } + let(:meet_id) { meet.id } + let(:id) { meetings.first.id } + + # Test suite for GET /meets/:meet_id/meetings + describe 'GET /meets/:meet_id/meetings' do + before { get "/meets/#{meet_id}/meetings", headers: authenticated_header(users.first) } + + context 'when meet exists' do + it 'returns status code 200' do + expect(response).to have_http_status(200) + end + + it 'returns all meet meetings' do + expect(json.size).to eq(20) + end + end + + context 'when meet does not exist' do + let(:meet_id) { 0 } + + it 'returns status code 404' do + expect(response).to have_http_status(404) + end + + it 'returns a not found message' do + expect(response.body).to match(/Couldn't find Meet/) + end + end + end + + describe 'GET /meets/:meet_id/meetings/:id' do + before { get "/meets/#{meet_id}/meetings/#{id}", headers: authenticated_header(users.first) } + + context 'when meet meeting exists' do + it 'returns status code 200' do + expect(response).to have_http_status(200) + end + + it 'returns the meeting' do + expect(json['id']).to eq(id) + end + end + + context 'when meet meeting does not exist' do + let(:id) { 0 } + + it 'returns status code 404' do + expect(response).to have_http_status(404) + end + + it 'returns a not found message' do + expect(response.body).to match(/Couldn't find Meeting/) + end + end + end + + describe 'POST /meets/:meet_id/meetings' do + let(:valid_attributes) do + { title: 'Visit Narnia', description: false, date: Time.now + 1.day, link: 'https://zoom.com/fakelink' } + end + + context 'when request attributes are valid' do + before { post "/meets/#{meet_id}/meetings", params: valid_attributes, headers: authenticated_header(users.first) } + + it 'returns status code 201' do + expect(response).to have_http_status(201) + end + end + + context 'when an invalid request' do + before { post "/meets/#{meet_id}/meetings", params: {}, headers: authenticated_header(users.first) } + + it 'returns status code 422' do + expect(response).to have_http_status(422) + end + + it 'returns a failure message' do + expect(response.body).to match(/Validation failed: Title can't be blank/) + end + end + end + + describe 'PUT /meets/:meet_id/meetings/:id' do + let(:valid_attributes) { { title: 'Mozart' } } + + before do + put "/meets/#{meet_id}/meetings/#{id}", params: valid_attributes, headers: authenticated_header(users.first) + end + + context 'when meeting exists' do + it 'returns status code 204' do + expect(response).to have_http_status(204) + end + + it 'updates the meeting' do + updated_meeting = Meeting.find(id) + expect(updated_meeting.title).to match(/Mozart/) + end + end + + context 'when the meeting does not exist' do + let(:id) { 0 } + + it 'returns status code 404' do + expect(response).to have_http_status(404) + end + + it 'returns a not found message' do + expect(response.body).to match(/Couldn't find Meeting/) + end + end + end + + describe 'DELETE /meets/:id' do + before { delete "/meets/#{meet_id}/meetings/#{id}", headers: authenticated_header(users.first) } + + it 'returns status code 204' do + expect(response).to have_http_status(204) + end + end +end diff --git a/api/spec/requests/meets_spec.rb b/api/spec/requests/meets_spec.rb new file mode 100644 index 000000000..f75174148 --- /dev/null +++ b/api/spec/requests/meets_spec.rb @@ -0,0 +1,103 @@ +require 'rails_helper' + +RSpec.describe 'Meets API', type: :request do + let!(:meets) { create_list(:meet, 10) } + let(:meet_id) { meets.first.id } + let!(:users) { create_list(:user, 1) } + + before { get '/meets', headers: authenticated_header(users.first) } + + describe 'GET /meets' do + it 'returns meets' do + expect(json).not_to be_empty + expect(json.size).to eq(10) + end + + it 'returns status code 200' do + expect(response).to have_http_status(200) + end + end + + describe 'GET /meets/:id' do + before { get "/meets/#{meet_id}", headers: authenticated_header(users.first) } + + context 'when the record exists' do + it 'returns the meet' do + expect(json).not_to be_empty + expect(json['meet']['id']).to eq(meet_id) + end + + it 'returns status code 200' do + expect(response).to have_http_status(200) + end + end + + context 'when the record does not exist' do + let(:meet_id) { 100 } + + it 'returns status code 404' do + expect(response).to have_http_status(404) + end + + it 'returns a not found message' do + expect(response.body).to match(/Couldn't find Meet/) + end + end + end + + describe 'POST /meets' do + let(:valid_attributes) do + { max_members: 10, created_by: users.first.id, duration: 2, day: 'Monday', + frequency: 'Weekly', title: 'Learn Elm', description: 'This is a meeting for people learning Elm' } + end + + context 'when the request is valid' do + before { post '/meets', params: valid_attributes, headers: authenticated_header(users.first) } + + it 'creates a meet' do + expect(json['title']).to eq('Learn Elm') + end + + it 'returns status code 201' do + expect(response).to have_http_status(201) + end + end + + context 'when the request is invalid' do + before { post '/meets', params: { title: 'Foobar' }, headers: authenticated_header(users.first) } + + it 'returns status code 422' do + expect(response).to have_http_status(422) + end + + it 'returns a validation failure message' do + expect(response.body) + .to match(/Validation failed: Description can't be blank/) + end + end + end + + describe 'PUT /meets/:id' do + let(:valid_attributes) { { title: 'Shopping' } } + + context 'when the record exists' do + before { put "/meets/#{meet_id}", params: valid_attributes, headers: authenticated_header(users.first) } + + it 'updates the record' do + expect(response.body).to be_empty + end + + it 'returns status code 204' do + expect(response).to have_http_status(204) + end + end + end + + describe 'DELETE /meets/:id' do + before { delete "/meets/#{meet_id}", headers: authenticated_header(users.first) } + + it 'returns status code 204' do + expect(response).to have_http_status(204) + end + end +end diff --git a/api/spec/requests/users_spec.rb b/api/spec/requests/users_spec.rb new file mode 100644 index 000000000..66d77afa5 --- /dev/null +++ b/api/spec/requests/users_spec.rb @@ -0,0 +1,77 @@ +require 'rails_helper' + +RSpec.describe 'Meets API', type: :request do + let!(:users) { create_list(:user, 10) } + let(:user_id) { users.first.id } + + before { get '/users', headers: authenticated_header(users.first) } + + describe 'GET /users' do + it 'returns users' do + expect(json).not_to be_empty + expect(json.size).to eq(10) + end + + it 'returns status code 200' do + expect(response).to have_http_status(200) + end + end + + describe 'GET /users/:id' do + before { get "/users/#{user_id}", headers: authenticated_header(users.first) } + + context 'when the record exists' do + it 'returns the user' do + expect(json).not_to be_empty + expect(json['id']).to eq(user_id) + end + + it 'returns status code 200' do + expect(response).to have_http_status(200) + end + end + + context 'when the record does not exist' do + let(:user_id) { 100 } + + it 'returns status code 404' do + expect(response).to have_http_status(404) + end + + it 'returns a not found message' do + expect(response.body).to match(/Couldn't find User/) + end + end + end + + describe 'POST /auth/signup' do + let(:valid_attributes) do + { name: 'Sheyla', password: '123abc', password_confirmation: '123abc', email: 'shey@mail.com' } + end + + context 'when the request is valid' do + before { post '/auth/signup', params: valid_attributes, headers: authenticated_header(users.first) } + + it 'creates a user' do + expect(json['message']).to eq('Account created successfully') + end + + it 'returns status code 201' do + expect(response).to have_http_status(201) + end + end + + context 'when the request is invalid' do + before { post '/auth/signup', params: { name: 'Foobar' }, headers: authenticated_header(users.first) } + + it 'returns status code 401' do + expect(response).to have_http_status(401) + end + + it 'returns a validation failure message' do + expect(response.body) + .to match(/Invalid credentials/) + end + end + end +end diff --git a/api/spec/spec_helper.rb b/api/spec/spec_helper.rb new file mode 100644 index 000000000..79d2efc73 --- /dev/null +++ b/api/spec/spec_helper.rb @@ -0,0 +1,98 @@ +# This file was generated by the `rails generate rspec:install` command. Conventionally, all +# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`. +# The generated `.rspec` file contains `--require spec_helper` which will cause +# this file to always be loaded, without a need to explicitly require it in any +# files. +# +# Given that it is always loaded, you are encouraged to keep this file as +# light-weight as possible. Requiring heavyweight dependencies from this file +# will add to the boot time of your test suite on EVERY test run, even for an +# individual file that may not need all of that loaded. Instead, consider making +# a separate helper file that requires the additional dependencies and performs +# the additional setup, and require it from the spec files that actually need +# it. +# +# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration +RSpec.configure do |config| + # rspec-expectations config goes here. You can use an alternate + # assertion/expectation library such as wrong or the stdlib/minitest + # assertions if you prefer. + config.expect_with :rspec do |expectations| + # This option will default to `true` in RSpec 4. It makes the `description` + # and `failure_message` of custom matchers include text for helper methods + # defined using `chain`, e.g.: + # be_bigger_than(2).and_smaller_than(4).description + # # => "be bigger than 2 and smaller than 4" + # ...rather than: + # # => "be bigger than 2" + expectations.include_chain_clauses_in_custom_matcher_descriptions = true + end + + # rspec-mocks config goes here. You can use an alternate test double + # library (such as bogus or mocha) by changing the `mock_with` option here. + config.mock_with :rspec do |mocks| + # Prevents you from mocking or stubbing a method that does not exist on + # a real object. This is generally recommended, and will default to + # `true` in RSpec 4. + mocks.verify_partial_doubles = true + end + + # This option will default to `:apply_to_host_groups` in RSpec 4 (and will + # have no way to turn it off -- the option exists only for backwards + # compatibility in RSpec 3). It causes shared context metadata to be + # inherited by the metadata hash of host groups and examples, rather than + # triggering implicit auto-inclusion in groups with matching metadata. + config.shared_context_metadata_behavior = :apply_to_host_groups + + # The settings below are suggested to provide a good initial experience + # with RSpec, but feel free to customize to your heart's content. + # This allows you to limit a spec run to individual examples or groups + # you care about by tagging them with `:focus` metadata. When nothing + # is tagged with `:focus`, all examples get run. RSpec also provides + # aliases for `it`, `describe`, and `context` that include `:focus` + # metadata: `fit`, `fdescribe` and `fcontext`, respectively. + # config.filter_run_when_matching :focus + + # Allows RSpec to persist some state between runs in order to support + # the `--only-failures` and `--next-failure` CLI options. We recommend + # you configure your source control system to ignore this file. + # config.example_status_persistence_file_path = "spec/examples.txt" + + # Limits the available syntax to the non-monkey patched syntax that is + # recommended. For more details, see: + # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/ + # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/ + # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode + # config.disable_monkey_patching! + + # This setting enables warnings. It's recommended, but in some cases may + # be too noisy due to issues in dependencies. + # config.warnings = true + + # Many RSpec users commonly either run the entire suite or an individual + # file, and it's useful to allow more verbose output when running an + # individual spec file. + # if config.files_to_run.one? + # Use the documentation formatter for detailed output, + # unless a formatter has already been configured + # (e.g. via a command-line flag). + # config.default_formatter = "doc" + # end + + # Print the 10 slowest examples and example groups at the + # end of the spec run, to help surface which specs are running + # particularly slow. + # config.profile_examples = 10 + + # Run specs in random order to surface order dependencies. If you find an + # order dependency and want to debug it, you can fix the order by providing + # the seed, which is printed after each run. + # --seed 1234 + # config.order = :random + + # Seed global randomization in this process using the `--seed` CLI option. + # Setting this allows you to use `--seed` to deterministically reproduce + # test failures related to randomization by passing the same `--seed` value + # as the one that triggered the failure. + # Kernel.srand config.seed +end diff --git a/api/spec/support/controller_spec_helper.rb b/api/spec/support/controller_spec_helper.rb new file mode 100644 index 000000000..b4de8ef1b --- /dev/null +++ b/api/spec/support/controller_spec_helper.rb @@ -0,0 +1,6 @@ +module ControllerSpecHelper + def authenticated_header(user) + token = JsonWebToken.encode(user_id: user.id) + { 'Authorization': "Bearer #{token}" } + end +end diff --git a/api/spec/support/request_spec_helper.rb b/api/spec/support/request_spec_helper.rb new file mode 100644 index 000000000..4c2b8ad04 --- /dev/null +++ b/api/spec/support/request_spec_helper.rb @@ -0,0 +1,6 @@ +module RequestSpecHelper + # Parse JSON response to ruby hash + def json + JSON.parse(response.body) + end +end diff --git a/api/tmp/development_secret.txt b/api/tmp/development_secret.txt new file mode 100644 index 000000000..667129070 --- /dev/null +++ b/api/tmp/development_secret.txt @@ -0,0 +1 @@ +7e1d3d87924e7a749210eb24b1a9e247115b5b3095e7db2c9c68d49eac4e927e0220f722c8bc7749de5bc2c98d0d2028608990b2a4ad4a5d8cfd6e90b48c6ac0 \ No newline at end of file diff --git a/api/tmp/pids/.keep b/api/tmp/pids/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/api/tmp/restart.txt b/api/tmp/restart.txt new file mode 100644 index 000000000..e69de29bb diff --git a/api/tmp/storage/.keep b/api/tmp/storage/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app b/app deleted file mode 160000 index d7654745f..000000000 --- a/app +++ /dev/null @@ -1 +0,0 @@ -Subproject commit d7654745f4e598200e5519b7e81e36111d0b2569 diff --git a/public/circle.gif b/public/circle.gif new file mode 100644 index 000000000..b3dc1cb19 Binary files /dev/null and b/public/circle.gif differ diff --git a/api/public/robots.txt b/public/robots.txt similarity index 100% rename from api/public/robots.txt rename to public/robots.txt